.page-sportsbook__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #FFF6D6;
  padding-top: 10px; /* Small top padding for visual separation */
}

.page-sportsbook__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-sportsbook__hero-content {
  padding: 40px 20px;
  background-color: #0A0A0A; /* Dark background for text area */
  text-align: center;
}

.page-sportsbook__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFD36B;
  letter-spacing: 0.05em;
}

.page-sportsbook__hero-description {
  font-size: clamp(1em, 2vw, 1.2em);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

.page-sportsbook__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-sportsbook__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  color: #111111; /* Text color for buttons */
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  border: none;
  cursor: pointer;
  min-width: 150px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-sportsbook__button:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.6);
}

.page-sportsbook__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-sportsbook__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  color: #FFD36B;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}

.page-sportsbook__text-main {
  color: #FFF6D6;
  line-height: 1.6;
  margin-bottom: 15px;
}

.page-sportsbook__about-section {
  background-color: #0A0A0A;
}

.page-sportsbook__about-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-sportsbook__about-content {
  flex: 1;
  min-width: 300px;
}

.page-sportsbook__about-image {
  flex: 1;
  min-width: 400px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-sportsbook__features-section {
  background-color: #111111;
  padding: 60px 0;
}

.page-sportsbook__features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-sportsbook__feature-item {
  background-color: #0A0A0A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12;
}

.page-sportsbook__feature-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-sportsbook__features-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-top: 20px;
}

.page-sportsbook__how-to-play-section {
  background-color: #0A0A0A;
  padding: 60px 0;
}

.page-sportsbook__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-sportsbook__step-card {
  background-color: #111111;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12;
}

.page-sportsbook__step-title {
  font-size: 1.5em;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-sportsbook__how-to-play-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-top: 20px;
  margin-bottom: 40px;
}

.page-sportsbook__download-app {
  background-color: #111111;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 40px;
  border: 1px solid #3A2A12;
}

.page-sportsbook__download-title {
  font-size: 1.8em;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-sportsbook__button--download {
  margin-top: 20px;
}

.page-sportsbook__promotions-section {
  background-color: #111111;
  padding: 60px 0;
  text-align: center;
}

.page-sportsbook__promotions-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin: 30px 0;
}

.page-sportsbook__button--promotions {
  margin-top: 20px;
}

.page-sportsbook__faq-section {
  background-color: #0A0A0A;
  padding: 60px 0;
}

.page-sportsbook__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-sportsbook__faq-question {
  font-size: 1.3em;
  color: #F2C14E;
  margin-bottom: 10px;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-sportsbook__about-grid {
    flex-direction: column;
  }

  .page-sportsbook__about-image {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-sportsbook__hero-content {
    padding: 30px 15px;
  }

  .page-sportsbook__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-sportsbook__hero-description {
    font-size: clamp(0.9em, 2.5vw, 1.1em);
  }

  .page-sportsbook__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-sportsbook__button {
    width: 100%;
    max-width: 300px;
  }

  .page-sportsbook__container {
    padding: 30px 15px;
  }

  .page-sportsbook__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
  }

  .page-sportsbook__features-list {
    grid-template-columns: 1fr;
  }

  .page-sportsbook__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-sportsbook__about-image,
  .page-sportsbook__features-image,
  .page-sportsbook__how-to-play-image,
  .page-sportsbook__promotions-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all content images in .page-sportsbook are responsive */
  .page-sportsbook img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}