/* style/resources-sports-betting-guide.css */
.page-resources-sports-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFFFFF; /* Default text color for dark sections */
  background-color: #0A244A; /* Main background color */
}

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

.page-resources-sports-betting-guide__hero {
  background: linear-gradient(135deg, #0A244A 0%, #3a5c88 100%); /* Dark blue gradient */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-sports-betting-guide__hero-image {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-sports-betting-guide__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-resources-sports-betting-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-resources-sports-betting-guide__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A244A; /* Dark blue text */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-sports-betting-guide__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-sports-betting-guide__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-resources-sports-betting-guide__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A244A;
  transform: translateY(-2px);
}

.page-resources-sports-betting-guide__section {
  padding: 60px 0;
  text-align: left;
}

.page-resources-sports-betting-guide__section:nth-of-type(even) {
  background-color: #1A3C63; /* Slightly lighter dark blue for contrast */
}

.page-resources-sports-betting-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-sports-betting-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources-sports-betting-guide__subsection-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-section titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-sports-betting-guide__list,
.page-resources-sports-betting-guide__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-resources-sports-betting-guide__ordered-list {
  list-style-type: decimal;
}

.page-resources-sports-betting-guide__list li,
.page-resources-sports-betting-guide__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-sports-betting-guide__sub-list {
  list-style-type: circle;
  margin-left: 20px;
  color: #E0E0E0;
}

.page-resources-sports-betting-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-sports-betting-guide__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-sports-betting-guide__faq-item {
  background-color: #0A244A;
  border: 1px solid #FFD700;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-resources-sports-betting-guide__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-resources-sports-betting-guide__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-resources-sports-betting-guide__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-sports-betting-guide__faq-answer {
  color: #E0E0E0;
  font-size: 1.05em;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 10px;
}

.page-resources-sports-betting-guide__faq-answer.open {
  max-height: 200px; /* Adjust as needed for content */
  padding: 10px;
}

.page-resources-sports-betting-guide__final-cta {
  text-align: center;
  background-color: #1A3C63;
  padding: 80px 0;
}

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

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

  .page-resources-sports-betting-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

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

  .page-resources-sports-betting-guide__list li,
  .page-resources-sports-betting-guide__ordered-list li {
    font-size: 0.95em;
  }
}

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

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

  .page-resources-sports-betting-guide__subsection-title {
    font-size: 1.3em;
  }

  .page-resources-sports-betting-guide__btn {
    width: 100%;
    max-width: 280px;
  }

  .page-resources-sports-betting-guide__faq-question {
    font-size: 1.1em;
  }

  .page-resources-sports-betting-guide__faq-answer {
    font-size: 0.9em;
  }
}