.page-sports {
  color: #ffffff; /* Light text on dark body background */
  background-color: #1a1a1a; /* Inherited from shared.css, ensuring consistency */
}

.page-sports__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
  overflow: hidden;
  color: #ffffff;
}

.page-sports__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-sports__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-sports__hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-sports__hero-title {
  font-size: 3.5rem;
  color: #FFD700; /* Gold accent */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports__hero-description {
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

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

.page-sports__section-title {
  font-size: 2.8rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 15px;
}

.page-sports__text-content {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-sports__about-section, .page-sports__features-section, .page-sports__sports-covered-section, .page-sports__live-betting-section, .page-sports__promotions-section, .page-sports__get-started-section, .page-sports__safety-section, .page-sports__cta-section {
  padding: 60px 0;
}

.page-sports__features-grid, .page-sports__sports-grid, .page-sports__promotions-grid, .page-sports__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__feature-card, .page-sports__sport-card, .page-sports__promo-card, .page-sports__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-sports__feature-card:hover, .page-sports__sport-card:hover, .page-sports__promo-card:hover, .page-sports__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-sports__feature-image, .page-sports__sport-image, .page-sports__promo-image, .page-sports__step-image {
  width: 100%;
  height: 250px; /* Ensure minimum size for content images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports__card-title {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-sports__card-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-sports__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1rem;
  text-align: center;
}

.page-sports__btn--primary {
  background-color: #FFD700;
  color: #0A0A0A;
}

.page-sports__btn--primary:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-sports__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-sports__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A0A0A;
}

.page-sports__btn--small {
  padding: 8px 18px;
  font-size: 0.95rem;
  margin-top: auto; /* Push button to bottom of card */
}

.page-sports__btn--large {
  padding: 18px 40px;
  font-size: 1.3rem;
}

.page-sports__content-with-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-sports__content-image {
  flex: 1 1 45%;
  height: 450px; /* Ensure minimum size for content images */
  object-fit: cover;
  border-radius: 10px;
}

.page-sports__text-block {
  flex: 1 1 45%;
}

.page-sports__view-all-promos {
  text-align: center;
  margin-top: 40px;
}

.page-sports__safety-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-sports__cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A0A0A, #2c2c2c);
  border-radius: 10px;
  margin: 60px auto;
}

.page-sports__cta-section .page-sports__section-title {
  color: #FFD700;
  border-bottom: none;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 2.8rem;
  }
  .page-sports__hero-description {
    font-size: 1.1rem;
  }
  .page-sports__section-title {
    font-size: 2.2rem;
  }
  .page-sports__content-with-image {
    flex-direction: column;
  }
  .page-sports__content-image {
    flex: 1 1 100%;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    min-height: 60vh;
  }
  .page-sports__hero-title {
    font-size: 2.2rem;
  }
  .page-sports__hero-description {
    font-size: 1rem;
  }
  .page-sports__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__btn {
    width: 100%;
  }
  .page-sports__section-title {
    font-size: 1.8rem;
  }
  .page-sports__text-content {
    font-size: 0.95rem;
  }
  .page-sports__features-grid, .page-sports__sports-grid, .page-sports__promotions-grid, .page-sports__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-sports__content-image {
    height: 300px;
  }
  .page-sports__safety-links {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__hero-image, .page-sports__feature-image, .page-sports__sport-image, .page-sports__promo-image, .page-sports__step-image, .page-sports__content-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and do not overflow */
  }
  .page-sports__hero-section, .page-sports__about-section, .page-sports__features-section, .page-sports__sports-covered-section, .page-sports__live-betting-section, .page-sports__promotions-section, .page-sports__get-started-section, .page-sports__safety-section, .page-sports__cta-section {
    padding: 40px 0;
  }
  .page-sports__container {
    padding: 20px;
  }
  .page-sports__cta-section {
    margin: 40px 20px;
    padding: 50px 20px;
  }
  /* Ensure all content images within .page-sports do not cause horizontal scroll */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }
}