/* style/index-sports-betting-highlights.css */
.page-index-sports-betting-highlights {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for general text on light backgrounds */
}

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

/* Hero Section */
.page-index-sports-betting-highlights__hero-section {
  background: linear-gradient(135deg, #1E90FF, #0028ff);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-sports-betting-highlights__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-index-sports-betting-highlights__hero-section > .page-index-sports-betting-highlights__container {
  position: relative;
  z-index: 1;
}

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

.page-index-sports-betting-highlights__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #ffffff;
}

/* General Section Styles */
.page-index-sports-betting-highlights__content-section,
.page-index-sports-betting-highlights__cta-section,
.page-index-sports-betting-highlights__final-cta-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-index-sports-betting-highlights__advantages-section {
  padding: 60px 0;
  background-color: #1E90FF; /* Dodger Blue background */
  color: #ffffff;
}

.page-index-sports-betting-highlights__responsible-gambling-section {
  padding: 60px 0;
  background-color: #FFD700; /* Gold background */
  color: #1A1A1A; /* Dark text for gold background */
}

.page-index-sports-betting-highlights__section-title {
  font-size: 2.5em;
  color: #1E90FF; /* Dodger Blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-sports-betting-highlights__section-title--light {
  color: #FFD700; /* Gold for titles on dark backgrounds */
}

.page-index-sports-betting-highlights__section-title--dark {
  color: #1A1A1A; /* Dark text for titles on gold background */
}

.page-index-sports-betting-highlights__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-sports-betting-highlights__text--light {
  color: #ffffff;
}

.page-index-sports-betting-highlights__text--dark {
  color: #1A1A1A;
}

.page-index-sports-betting-highlights__list {
  list-style: disc inside;
  text-align: left;
  max-width: 800px;
  margin: 20px auto 40px auto;
  padding-left: 20px;
}

.page-index-sports-betting-highlights__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* Feature Grid */
.page-index-sports-betting-highlights__feature-grid,
.page-index-sports-betting-highlights__step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-sports-betting-highlights__feature-item,
.page-index-sports-betting-highlights__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-sports-betting-highlights__feature-item--light-bg {
  background-color: #f0f8ff; /* A very light blue tint */
  color: #333333;
}

.page-index-sports-betting-highlights__feature-title,
.page-index-sports-betting-highlights__step-title {
  font-size: 1.8em;
  color: #1E90FF; /* Dodger Blue for feature titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-sports-betting-highlights__feature-item--light-bg .page-index-sports-betting-highlights__feature-title {
  color: #0028ff;
}

.page-index-sports-betting-highlights__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Buttons */
.page-index-sports-betting-highlights__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
  border: none;
}

.page-index-sports-betting-highlights__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text */
}

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

.page-index-sports-betting-highlights__button--secondary {
  background-color: #1E90FF; /* Dodger Blue button */
  color: #ffffff; /* White text */
}

.page-index-sports-betting-highlights__button--secondary:hover {
  background-color: #1565b3;
  transform: translateY(-2px);
}

.page-index-sports-betting-highlights__button--dark {
  background-color: #1A1A1A; /* Dark button for gold background */
  color: #FFD700; /* Gold text */
}

.page-index-sports-betting-highlights__button--dark:hover {
  background-color: #000000;
  transform: translateY(-2px);
}

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

  .page-index-sports-betting-highlights__hero-description {
    font-size: 1em;
  }

  .page-index-sports-betting-highlights__section-title {
    font-size: 2em;
  }

  .page-index-sports-betting-highlights__feature-title,
  .page-index-sports-betting-highlights__step-title {
    font-size: 1.5em;
  }

  .page-index-sports-betting-highlights__feature-grid,
  .page-index-sports-betting-highlights__step-grid {
    grid-template-columns: 1fr;
  }
}

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

  .page-index-sports-betting-highlights__hero-description {
    font-size: 0.9em;
  }

  .page-index-sports-betting-highlights__section-title {
    font-size: 1.8em;
  }

  .page-index-sports-betting-highlights__button {
    padding: 10px 20px;
    font-size: 1em;
  }
}