/* style/resources-sports-betting-guide.css */
.page-resources-sports-betting-guide {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text */
  background-color: #1A202C; /* Main dark background */
}

.page-resources-sports-betting-guide a {
  color: #FFD700; /* Accent color for links */
  text-decoration: none;
}

.page-resources-sports-betting-guide a:hover {
  text-decoration: underline;
  color: #FFEA00; /* Slightly brighter accent on hover */
}

.page-resources-sports-betting-guide__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3A404C 100%);
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-resources-sports-betting-guide__hero-content {
  max-width: 900px;
  z-index: 1;
}

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

.page-resources-sports-betting-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-resources-sports-betting-guide__hero-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Accent color for button */
  color: #1A202C; /* Dark text on accent button */
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-sports-betting-guide__hero-button:hover {
  background-color: #FFEA00;
  transform: translateY(-3px);
  text-decoration: none;
}

.page-resources-sports-betting-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-resources-sports-betting-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) brightness(50%);
}

.page-resources-sports-betting-guide__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.page-resources-sports-betting-guide__section--alt-bg {
  background-color: #2A303C;
}

.page-resources-sports-betting-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-resources-sports-betting-guide__section-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #C0C0C0;
}

.page-resources-sports-betting-guide__feature-grid, .page-resources-sports-betting-guide__steps-grid, .page-resources-sports-betting-guide__sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-resources-sports-betting-guide__feature-item, .page-resources-sports-betting-guide__step-item, .page-resources-sports-betting-guide__sport-item {
  background-color: #2C3542;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-resources-sports-betting-guide__feature-item:hover, .page-resources-sports-betting-guide__step-item:hover, .page-resources-sports-betting-guide__sport-item:hover {
  transform: translateY(-5px);
}

.page-resources-sports-betting-guide__feature-title, .page-resources-sports-betting-guide__step-title, .page-resources-sports-betting-guide__sport-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-sports-betting-guide__step-number {
  font-size: 2.5em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}

.page-resources-sports-betting-guide__content-block {
  text-align: left;
  margin-bottom: 40px;
}

.page-resources-sports-betting-guide__content-subtitle {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-resources-sports-betting-guide__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #C0C0C0;
}

.page-resources-sports-betting-guide__list li::before {
  content: '▶';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 0.8em;
  top: 3px;
}

.page-resources-sports-betting-guide__section-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-sports-betting-guide__faq-item {
  background-color: #2C3542;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-sports-betting-guide__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-sports-betting-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  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 {
  font-size: 1.05em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

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

.page-resources-sports-betting-guide__cta-section {
  background: linear-gradient(45deg, #1A202C, #4A505C);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-resources-sports-betting-guide__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  z-index: 1;
  position: relative;
}

.page-resources-sports-betting-guide__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
  z-index: 1;
  position: relative;
}

.page-resources-sports-betting-guide__cta-button {
  display: inline-block;
  padding: 18px 40px;
  background-color: #FFD700;
  color: #1A202C;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  z-index: 1;
  position: relative;
}

.page-resources-sports-betting-guide__cta-button:hover {
  background-color: #FFEA00;
  transform: translateY(-5px) scale(1.02);
  text-decoration: none;
}

.page-resources-sports-betting-guide__cta-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  filter: blur(5px) grayscale(50%);
  z-index: 0;
}

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

@media (max-width: 768px) {
  .page-resources-sports-betting-guide__hero {
    padding: 60px 15px;
  }
  .page-resources-sports-betting-guide__hero-title {
    font-size: 2em;
  }
  .page-resources-sports-betting-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-sports-betting-guide__section {
    padding: 40px 15px;
  }
  .page-resources-sports-betting-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-sports-betting-guide__feature-grid, .page-resources-sports-betting-guide__steps-grid, .page-resources-sports-betting-guide__sports-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-sports-betting-guide__feature-title, .page-resources-sports-betting-guide__step-title, .page-resources-sports-betting-guide__sport-title {
    font-size: 1.3em;
  }
  .page-resources-sports-betting-guide__cta-title {
    font-size: 1.8em;
  }
  .page-resources-sports-betting-guide__cta-description {
    font-size: 1em;
  }
  .page-resources-sports-betting-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@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;
  }
  .page-resources-sports-betting-guide__cta-title {
    font-size: 1.5em;
  }
}