.page-sportsbook {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

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

.page-sportsbook__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first section after body padding */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-sportsbook__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

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

.page-sportsbook__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-top: -80px; /* Adjust as needed to overlap slightly without covering image */
  background-color: #111111; /* Card BG */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12; /* Border */
}

.page-sportsbook__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 4vw, 2rem); /* Constrained font size for h1 */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sportsbook__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-sportsbook__hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-sportsbook__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.page-sportsbook__cta-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for light button */
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-sportsbook__cta-button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-sportsbook__cta-button--secondary {
  background-color: #111111; /* Card BG */
  color: #FFD36B; /* Auxiliary color */
  border: 2px solid #FFD36B;
}

.page-sportsbook__cta-button--secondary:hover {
  background-color: #FFD36B;
  color: #111111;
  border-color: #FFD36B;
  transform: translateY(-3px);
}

.page-sportsbook__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD36B; /* Auxiliary color */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-sportsbook__section-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #FFF6D6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-sportsbook__section-description--bottom {
  margin-bottom: 0;
  margin-top: 40px;
}

.page-sportsbook__section-description a {
  color: #F2C14E; /* Main color for links */
  text-decoration: none;
}

.page-sportsbook__section-description a:hover {
  text-decoration: underline;
}

.page-sportsbook__about-section,
.page-sportsbook__markets-section,
.page-sportsbook__live-betting-section,
.page-sportsbook__promotions-section,
.page-sportsbook__how-to-bet-section,
.page-sportsbook__app-section,
.page-sportsbook__testimonials-section,
.page-sportsbook__responsible-gaming-section,
.page-sportsbook__cta-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-sportsbook__features-grid,
.page-sportsbook__market-cards-grid,
.page-sportsbook__promo-cards-grid,
.page-sportsbook__steps-grid,
.page-sportsbook__testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sportsbook__feature-card,
.page-sportsbook__market-card,
.page-sportsbook__promo-card,
.page-sportsbook__step-card,
.page-sportsbook__testimonial-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-sportsbook__feature-card:hover,
.page-sportsbook__market-card:hover,
.page-sportsbook__promo-card:hover,
.page-sportsbook__step-card:hover,
.page-sportsbook__testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-sportsbook__feature-icon,
.page-sportsbook__market-image,
.page-sportsbook__promo-image,
.page-sportsbook__app-image,
.page-sportsbook__live-betting-image,
.page-sportsbook__responsible-gaming-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-sportsbook__feature-title,
.page-sportsbook__market-title,
.page-sportsbook__promo-title,
.page-sportsbook__step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
}

.page-sportsbook__feature-text,
.page-sportsbook__market-text,
.page-sportsbook__promo-text,
.page-sportsbook__step-text,
.page-sportsbook__testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6;
  flex-grow: 1;
}

.page-sportsbook__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9rem;
  margin-top: 20px;
}

.page-sportsbook__live-betting-content,
.page-sportsbook__responsible-gaming-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-sportsbook__live-betting-image,
.page-sportsbook__responsible-gaming-image {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-sportsbook__live-betting-list,
.page-sportsbook__responsible-gaming-list {
  flex: 1 1 45%;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  min-width: 300px;
}

.page-sportsbook__live-betting-item,
.page-sportsbook__responsible-gaming-item {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #FFF6D6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-sportsbook__live-betting-item::before,
.page-sportsbook__responsible-gaming-item::before {
  content: '✔';
  color: #F2C14E; /* Main color */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-sportsbook__step-card {
  position: relative;
  padding-top: 60px;
}

.page-sportsbook__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F2C14E; /* Main color */
  color: #111111;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  border: 3px solid #FFD36B;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-sportsbook__app-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.page-sportsbook__app-content {
  flex: 1 1 50%;
  min-width: 300px;
  text-align: left;
}

.page-sportsbook__app-image {
  flex: 1 1 35%;
  max-width: 400px;
  border: 1px solid #3A2A12;
}

.page-sportsbook__app-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.page-sportsbook__testimonial-author {
  font-style: italic;
  color: #F2C14E; /* Main color */
  margin-top: 15px;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-sportsbook__hero-content {
    margin-top: -50px;
    padding: 30px;
  }

  .page-sportsbook__main-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .page-sportsbook__section-title {
    font-size: 2rem;
  }

  .page-sportsbook__live-betting-content,
  .page-sportsbook__responsible-gaming-content,
  .page-sportsbook__app-container {
    flex-direction: column;
    text-align: center;
  }

  .page-sportsbook__live-betting-image,
  .page-sportsbook__responsible-gaming-image,
  .page-sportsbook__app-image {
    order: -1; /* Image first on smaller screens */
    margin-bottom: 30px;
  }

  .page-sportsbook__app-content {
    text-align: center;
  }

  .page-sportsbook__live-betting-list,
  .page-sportsbook__responsible-gaming-list {
    text-align: center;
  }

  .page-sportsbook__live-betting-item,
  .page-sportsbook__responsible-gaming-item {
    padding-left: 0;
  }

  .page-sportsbook__live-betting-item::before,
  .page-sportsbook__responsible-gaming-item::before {
    position: static;
    margin-right: 10px;
  }
}

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

  .page-sportsbook__main-title {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
  }

  .page-sportsbook__section-title {
    font-size: 1.8rem;
  }

  .page-sportsbook__hero-description,
  .page-sportsbook__section-description {
    font-size: 1rem;
  }

  .page-sportsbook__cta-button {
    width: 100%;
  }

  .page-sportsbook__about-section,
  .page-sportsbook__markets-section,
  .page-sportsbook__live-betting-section,
  .page-sportsbook__promotions-section,
  .page-sportsbook__how-to-bet-section,
  .page-sportsbook__app-section,
  .page-sportsbook__testimonials-section,
  .page-sportsbook__responsible-gaming-section,
  .page-sportsbook__cta-section {
    padding: 60px 0;
  }

  .page-sportsbook__features-grid,
  .page-sportsbook__market-cards-grid,
  .page-sportsbook__promo-cards-grid,
  .page-sportsbook__steps-grid,
  .page-sportsbook__testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sportsbook__feature-icon,
  .page-sportsbook__market-image,
  .page-sportsbook__promo-image,
  .page-sportsbook__app-image,
  .page-sportsbook__live-betting-image,
  .page-sportsbook__responsible-gaming-image {
    min-width: 200px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

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

@media (max-width: 480px) {
  .page-sportsbook__hero-content {
    padding: 20px;
  }

  .page-sportsbook__main-title {
    font-size: clamp(1.1rem, 7vw, 1.5rem);
  }

  .page-sportsbook__section-title {
    font-size: 1.5rem;
  }

  .page-sportsbook__hero-cta-group,
  .page-sportsbook__app-cta-group {
    flex-direction: column;
    gap: 10px;
  }

  .page-sportsbook__cta-button {
    padding: 12px 20px;
  }
}