.page-blog-online-betting-strategy-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  margin: 0;
  padding: 0;
}

.page-blog-online-betting-strategy-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-online-betting-strategy-guide__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding for the first section */
  background-color: #0A0A0A; /* Ensure background consistency */
}

.page-blog-online-betting-strategy-guide__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Max height for hero image */
  overflow: hidden;
}

.page-blog-online-betting-strategy-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-online-betting-strategy-guide__hero-content {
  position: relative;
  z-index: 10;
  padding: 60px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up over image for visual flow, but not *on* the image */
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, #0A0A0A 100%); /* Gradient over background to fade into content */
  border-radius: 10px;
}

.page-blog-online-betting-strategy-guide__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.page-blog-online-betting-strategy-guide__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-blog-online-betting-strategy-guide__btn-primary,
.page-blog-online-betting-strategy-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin: 10px;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-online-betting-strategy-guide__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111; /* Dark text for contrast */
  border: none;
}

.page-blog-online-betting-strategy-guide__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-2px);
}

.page-blog-online-betting-strategy-guide__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B;
}

.page-blog-online-betting-strategy-guide__btn-secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  transform: translateY(-2px);
}

.page-blog-online-betting-strategy-guide__content-area {
  padding: 60px 0;
}

.page-blog-online-betting-strategy-guide__section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #F2C14E; /* Primary Color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-blog-online-betting-strategy-guide p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-blog-online-betting-strategy-guide .text--highlight {
  color: #FFD36B;
  font-weight: bold;
}

.page-blog-online-betting-strategy-guide .text--link {
  color: #F2C14E;
  text-decoration: underline;
}

.page-blog-online-betting-strategy-guide .text--link:hover {
  color: #FFD36B;
}

.page-blog-online-betting-strategy-guide__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-online-betting-strategy-guide__faq-section {
  padding: 60px 0;
}

.page-blog-online-betting-strategy-guide__faq-list {
  margin-top: 40px;
}

.page-blog-online-betting-strategy-guide__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-online-betting-strategy-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #111111;
  color: #FFF6D6;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-online-betting-strategy-guide__faq-question h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #FFF6D6;
}

.page-blog-online-betting-strategy-guide__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-blog-online-betting-strategy-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E;
}

.page-blog-online-betting-strategy-guide__faq-item.active .page-blog-online-betting-strategy-guide__faq-toggle {
  transform: rotate(45deg);
  color: #FFD36B;
}

.page-blog-online-betting-strategy-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

.page-blog-online-betting-strategy-guide__faq-item.active .page-blog-online-betting-strategy-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px;
}

.page-blog-online-betting-strategy-guide__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-blog-online-betting-strategy-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-online-betting-strategy-guide__hero-content {
    padding: 40px 20px;
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-blog-online-betting-strategy-guide__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile: controlled by shared's media */
  }

  .page-blog-online-betting-strategy-guide__hero-content {
    padding: 30px 15px;
    margin-top: -60px;
  }

  .page-blog-online-betting-strategy-guide__main-title {
    font-size: 2.2rem;
  }

  .page-blog-online-betting-strategy-guide__subtitle {
    font-size: 1rem;
  }

  .page-blog-online-betting-strategy-guide__section-title {
    font-size: 1.8rem;
  }

  .page-blog-online-betting-strategy-guide p {
    font-size: 0.95rem;
  }

  .page-blog-online-betting-strategy-guide__btn-primary,
  .page-blog-online-betting-strategy-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    margin: 5px 0 !important;
  }

  .page-blog-online-betting-strategy-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-blog-online-betting-strategy-guide__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: unset;
    min-height: unset;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-blog-online-betting-strategy-guide__content-area,
  .page-blog-online-betting-strategy-guide__faq-section,
  .page-blog-online-betting-strategy-guide__cta-section {
    padding: 40px 0;
  }

  .page-blog-online-betting-strategy-guide__container {
    padding: 0 15px;
  }

  .page-blog-online-betting-strategy-guide__faq-question,
  .page-blog-online-betting-strategy-guide__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-online-betting-strategy-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-online-betting-strategy-guide__section,
  .page-blog-online-betting-strategy-guide__card,
  .page-blog-online-betting-strategy-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left: 15px;
    padding-right: 15px; */
  }

  .page-blog-online-betting-strategy-guide__faq-item.active .page-blog-online-betting-strategy-guide__faq-answer {
    max-height: 1000px !important;
    padding: 20px 15px;
  }
}

/* Contrast Fixes (Intelligent Color Contrast Assurance) */
.page-blog-online-betting-strategy-guide__dark-bg {
  color: #FFF6D6; /* Deep background with light text */
  background: #0A0A0A; /* Specific dark background */
}

.page-blog-online-betting-strategy-guide__card {
  background: #111111; /* Card BG */
  color: #FFF6D6;
  border: 1px solid #3A2A12; /* Border */
}