/* style/blog-how-to-identify-reliable-betting-companies.css */
:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --background-color: #0D0E12;
  --card-background-color: #17191F;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
}

.page-blog-how-to-identify-reliable-betting-companies {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color);
  background-color: var(--background-color);
}

.page-blog-how-to-identify-reliable-betting-companies__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background-color);
}

.page-blog-how-to-identify-reliable-betting-companies__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-blog-how-to-identify-reliable-betting-companies__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-identify-reliable-betting-companies__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-identify-reliable-betting-companies__main-title {
  color: var(--text-main-color);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-identify-reliable-betting-companies__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-main-color);
}

.page-blog-how-to-identify-reliable-betting-companies__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-blog-how-to-identify-reliable-betting-companies__section-title {
  color: var(--secondary-color);
  font-size: 2.2em;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-identify-reliable-betting-companies h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-how-to-identify-reliable-betting-companies p {
  margin-bottom: 15px;
}

.page-blog-how-to-identify-reliable-betting-companies__list,
.page-blog-how-to-identify-reliable-betting-companies__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-blog-how-to-identify-reliable-betting-companies__ordered-list {
  list-style-type: decimal;
}

.page-blog-how-to-identify-reliable-betting-companies__list-item {
  margin-bottom: 10px;
}

.page-blog-how-to-identify-reliable-betting-companies__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-identify-reliable-betting-companies__top-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-how-to-identify-reliable-betting-companies__card {
  background-color: var(--card-background-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-main-color);
}

.page-blog-how-to-identify-reliable-betting-companies__card-title {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-blog-how-to-identify-reliable-betting-companies__card-description {
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-blog-how-to-identify-reliable-betting-companies__card-features {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-how-to-identify-reliable-betting-companies__card-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  color: var(--text-main-color);
}

.page-blog-how-to-identify-reliable-betting-companies__card-features li::before {
  content: '✓';
  color: var(--primary-color);
  margin-right: 10px;
  font-weight: bold;
}

.page-blog-how-to-identify-reliable-betting-companies__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: auto; /* Push button to bottom of card */
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-identify-reliable-betting-companies__btn-primary {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
  color: #ffffff; /* White text for dark button */
  border: none;
  box-shadow: 0 4px 10px rgba(255, 165, 58, 0.4);
}

.page-blog-how-to-identify-reliable-betting-companies__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 165, 58, 0.6);
}

.page-blog-how-to-identify-reliable-betting-companies__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-blog-how-to-identify-reliable-betting-companies__step-card {
  background-color: var(--card-background-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: var(--text-main-color);
}

.page-blog-how-to-identify-reliable-betting-companies__step-title {
  color: var(--primary-color);
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-blog-how-to-identify-reliable-betting-companies__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-identify-reliable-betting-companies__faq-item {
  background-color: var(--card-background-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-identify-reliable-betting-companies__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--text-main-color);
  background-color: var(--card-background-color);
  transition: background-color 0.3s ease;
}

.page-blog-how-to-identify-reliable-betting-companies__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-identify-reliable-betting-companies__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-how-to-identify-reliable-betting-companies__faq-qtext {
  flex-grow: 1;
  color: var(--text-main-color);
}

.page-blog-how-to-identify-reliable-betting-companies__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-blog-how-to-identify-reliable-betting-companies__faq-item[open] .page-blog-how-to-identify-reliable-betting-companies__faq-toggle {
  content: '−';
}

.page-blog-how-to-identify-reliable-betting-companies__faq-answer {
  padding: 15px 25px 25px;
  background-color: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-main-color);
}

.page-blog-how-to-identify-reliable-betting-companies__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-how-to-identify-reliable-betting-companies__main-title {
    font-size: 2.5em;
  }

  .page-blog-how-to-identify-reliable-betting-companies__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-identify-reliable-betting-companies {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-identify-reliable-betting-companies__main-title {
    font-size: 2em;
  }

  .page-blog-how-to-identify-reliable-betting-companies__section-title {
    font-size: 1.8em;
  }

  .page-blog-how-to-identify-reliable-betting-companies__hero-section,
  .page-blog-how-to-identify-reliable-betting-companies__content-area {
    padding: 30px 15px;
  }

  .page-blog-how-to-identify-reliable-betting-companies__top-list,
  .page-blog-how-to-identify-reliable-betting-companies__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-identify-reliable-betting-companies__card,
  .page-blog-how-to-identify-reliable-betting-companies__step-card,
  .page-blog-how-to-identify-reliable-betting-companies__faq-item {
    padding: 20px;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Mobile image responsiveness */
  .page-blog-how-to-identify-reliable-betting-companies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-identify-reliable-betting-companies__section,
  .page-blog-how-to-identify-reliable-betting-companies__card,
  .page-blog-how-to-identify-reliable-betting-companies__container,
  .page-blog-how-to-identify-reliable-betting-companies__hero-section,
  .page-blog-how-to-identify-reliable-betting-companies__content-area,
  .page-blog-how-to-identify-reliable-betting-companies__top-list,
  .page-blog-how-to-identify-reliable-betting-companies__guide-steps,
  .page-blog-how-to-identify-reliable-betting-companies__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-blog-how-to-identify-reliable-betting-companies__cta-button,
  .page-blog-how-to-identify-reliable-betting-companies__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-identify-reliable-betting-companies__cta-buttons,
  .page-blog-how-to-identify-reliable-betting-companies__button-group,
  .page-blog-how-to-identify-reliable-betting-companies__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-how-to-identify-reliable-betting-companies__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  .page-blog-how-to-identify-reliable-betting-companies__hero-section {
    padding-top: 10px !important;
  }

  /* Ensure no image filters */
  .page-blog-how-to-identify-reliable-betting-companies img {
    filter: none !important;
  }
}