/* style/resources-sports-betting-guide.css */
.page-resources-sports-betting-guide {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Body background is dark (#1a1a2e), so text should be light */
  line-height: 1.6;
}

.page-resources-sports-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-sports-betting-guide__hero-section {
  position: relative;
  padding: 120px 0 60px; /* Use var(--header-offset) for top padding if not handled by shared */
  text-align: center;
  background-color: #1a1a2e; /* Match body background for dark theme */
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure header offset is applied */
}

.page-resources-sports-betting-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3; /* Overlay for text readability */
}

.page-resources-sports-betting-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-resources-sports-betting-guide__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-resources-sports-betting-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-sports-betting-guide__btn-primary,
.page-resources-sports-betting-guide__btn-secondary,
.page-resources-sports-betting-guide__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-sports-betting-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-sports-betting-guide__btn-primary:hover {
  background-color: #1f8ec4;
  border-color: #1f8ec4;
}

.page-resources-sports-betting-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-sports-betting-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-sports-betting-guide__btn-tertiary {
  background-color: #EA7C07;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-resources-sports-betting-guide__btn-tertiary:hover {
  background-color: #c76706;
}

/* General Sections */
.page-resources-sports-betting-guide__introduction-section,
.page-resources-sports-betting-guide__getting-started-section,
.page-resources-sports-betting-guide__strategy-section,
.page-resources-sports-betting-guide__conclusion-section {
  padding: 80px 0;
  background-color: #ffffff; /* Light background for contrast */
  color: #333333; /* Dark text on light background */
}

.page-resources-sports-betting-guide__why-choose-us,
.page-resources-sports-betting-guide__bet-types-section,
.page-resources-sports-betting-guide__common-mistakes-section,
.page-resources-sports-betting-guide__faq-section {
  padding: 80px 0;
  background-color: #1a1a2e; /* Dark background */
  color: #ffffff; /* Light text on dark background */
}

.page-resources-sports-betting-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 60px;
  font-weight: bold;
}

.page-resources-sports-betting-guide__introduction-section .page-resources-sports-betting-guide__section-title,
.page-resources-sports-betting-guide__getting-started-section .page-resources-sports-betting-guide__section-title,
.page-resources-sports-betting-guide__strategy-section .page-resources-sports-betting-guide__section-title,
.page-resources-sports-betting-guide__conclusion-section .page-resources-sports-betting-guide__section-title {
  color: #26A9E0;
}

.page-resources-sports-betting-guide__why-choose-us .page-resources-sports-betting-guide__section-title,
.page-resources-sports-betting-guide__bet-types-section .page-resources-sports-betting-guide__section-title,
.page-resources-sports-betting-guide__common-mistakes-section .page-resources-sports-betting-guide__section-title,
.page-resources-sports-betting-guide__faq-section .page-resources-sports-betting-guide__section-title {
  color: #ffffff;
}

.page-resources-sports-betting-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-resources-sports-betting-guide__highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* Features Grid */
.page-resources-sports-betting-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-sports-betting-guide__feature-card {
  background-color: #ffffff; /* Light background for card on dark section */
  color: #333333; /* Dark text for contrast */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-sports-betting-guide__feature-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
  max-width: 100%;
  height: auto;
}

.page-resources-sports-betting-guide__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-sports-betting-guide__feature-description {
  font-size: 1em;
  line-height: 1.7;
}

.page-resources-sports-betting-guide__cta-center {
  text-align: center;
  margin-top: 60px;
}

/* Steps Grid */
.page-resources-sports-betting-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-sports-betting-guide__step-card {
  background-color: #f8f8f8;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-sports-betting-guide__step-number {
  width: 50px;
  height: 50px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-resources-sports-betting-guide__step-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-sports-betting-guide__step-description {
  font-size: 0.95em;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Bet Types Grid */
.page-resources-sports-betting-guide__bet-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-sports-betting-guide__bet-type-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-sports-betting-guide__bet-type-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-sports-betting-guide__bet-type-description {
  font-size: 1em;
  line-height: 1.7;
}

/* Strategy Grid */
.page-resources-sports-betting-guide__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-sports-betting-guide__strategy-card {
  background-color: #f8f8f8;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-sports-betting-guide__strategy-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-sports-betting-guide__strategy-description {
  font-size: 0.95em;
  line-height: 1.7;
}

/* Common Mistakes List */
.page-resources-sports-betting-guide__mistakes-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-sports-betting-guide__mistake-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter on dark background */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.7;
  border-left: 5px solid #26A9E0;
}

.page-resources-sports-betting-guide__mistake-item strong {
  color: #26A9E0;
}

/* Responsible Gaming */
.page-resources-sports-betting-guide__responsible-gaming-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-resources-sports-betting-guide__responsible-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-resources-sports-betting-guide__text-block {
  flex: 1;
}

.page-resources-sports-betting-guide__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-sports-betting-guide__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-resources-sports-betting-guide__list-item {
  margin-bottom: 10px;
  line-height: 1.7;
}

.page-resources-sports-betting-guide__responsible-image {
  flex: 0 0 500px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-resources-sports-betting-guide__responsible-gaming-section a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-resources-sports-betting-guide__responsible-gaming-section a:hover {
  color: #1f8ec4;
}

/* FAQ Section */
.page-resources-sports-betting-guide__faq-list {
  margin-top: 40px;
}

.page-resources-sports-betting-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-sports-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-resources-sports-betting-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-sports-betting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-sports-betting-guide__faq-item.active .page-resources-sports-betting-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-sports-betting-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: rgba(255, 255, 255, 0.03);
  color: #f0f0f0;
}

.page-resources-sports-betting-guide__faq-item.active .page-resources-sports-betting-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-resources-sports-betting-guide__faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
}

/* Conclusion Section */
.page-resources-sports-betting-guide__conclusion-section .page-resources-sports-betting-guide__paragraph {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-sports-betting-guide__hero-title {
    font-size: 3em;
  }

  .page-resources-sports-betting-guide__section-title {
    font-size: 2em;
  }

  .page-resources-sports-betting-guide__responsible-content {
    flex-direction: column;
  }

  .page-resources-sports-betting-guide__responsible-image {
    max-width: 100%;
    flex: none;
  }
}

@media (max-width: 768px) {
  .page-resources-sports-betting-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-sports-betting-guide__hero-section {
    padding: 80px 0 40px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset is applied on mobile */
  }

  .page-resources-sports-betting-guide__hero-title {
    font-size: 2.2em;
  }

  .page-resources-sports-betting-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-sports-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-sports-betting-guide__btn-primary,
  .page-resources-sports-betting-guide__btn-secondary,
  .page-resources-sports-betting-guide__btn-tertiary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-sports-betting-guide__introduction-section,
  .page-resources-sports-betting-guide__why-choose-us,
  .page-resources-sports-betting-guide__getting-started-section,
  .page-resources-sports-betting-guide__bet-types-section,
  .page-resources-sports-betting-guide__strategy-section,
  .page-resources-sports-betting-guide__common-mistakes-section,
  .page-resources-sports-betting-guide__responsible-gaming-section,
  .page-resources-sports-betting-guide__faq-section,
  .page-resources-sports-betting-guide__conclusion-section {
    padding: 50px 0;
  }

  .page-resources-sports-betting-guide__container {
    padding: 0 15px;
  }

  .page-resources-sports-betting-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-resources-sports-betting-guide__features-grid,
  .page-resources-sports-betting-guide__steps-grid,
  .page-resources-sports-betting-guide__bet-type-grid,
  .page-resources-sports-betting-guide__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-sports-betting-guide__feature-card,
  .page-resources-sports-betting-guide__step-card,
  .page-resources-sports-betting-guide__bet-type-card,
  .page-resources-sports-betting-guide__strategy-card,
  .page-resources-sports-betting-guide__mistake-item,
  .page-resources-sports-betting-guide__faq-item,
  .page-resources-sports-betting-guide__responsible-content,
  .page-resources-sports-betting-guide__text-block,
  .page-resources-sports-betting-guide__faq-question,
  .page-resources-sports-betting-guide__faq-answer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Images responsiveness for mobile */
  .page-resources-sports-betting-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-sports-betting-guide__hero-image,
  .page-resources-sports-betting-guide__feature-icon,
  .page-resources-sports-betting-guide__responsible-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px !important; /* Ensure minimum size */
    min-height: 200px !important; /* Ensure minimum size */
    object-fit: cover;
  }

  .page-resources-sports-betting-guide__faq-question,
  .page-resources-sports-betting-guide__faq-answer {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-resources-sports-betting-guide__hero-title {
    font-size: 1.8em;
  }

  .page-resources-sports-betting-guide__section-title {
    font-size: 1.5em;
  }
}

/* Color Contrast Fixes (if needed, applied automatically) */
.page-resources-sports-betting-guide__light-bg {
  background: #ffffff;
  color: #333333;
}

.page-resources-sports-betting-guide__dark-bg {
  background: #1a1a2e;
  color: #ffffff;
}

.page-resources-sports-betting-guide__card {
  background: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-resources-sports-betting-guide__dark-section {
  background: #26A9E0;
  color: #ffffff;
}