.page-sports {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-sports__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-sports__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.page-sports__button--primary {
  background-color: #007BFF;
  color: #ffffff;
  border: 2px solid #007BFF;
}

.page-sports__button--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-sports__button--secondary {
  background-color: transparent;
  color: #007BFF;
  border: 2px solid #007BFF;
}

.page-sports__button--secondary:hover {
  background-color: #e0f0ff;
  transform: translateY(-2px);
}

.page-sports__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-sports__button--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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 */
}

.page-sports__hero-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  padding: 0 20px;
}

.page-sports__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-sports__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FFC107; /* Highlight with secondary color */
}

.page-sports__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-sports__hero-actions .page-sports__button {
  margin: 0 10px;
}

/* Highlights Section */
.page-sports__highlights-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.page-sports__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.page-sports__grid-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__grid-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-sports__grid-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Features Section */
.page-sports__features-section {
  padding: 80px 0;
}

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

.page-sports__feature-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-sports__feature-icon {
  width: 100%;
  height: 200px; /* Fixed height for feature images */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__feature-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-sports__feature-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-sports__promotions-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.page-sports__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

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

.page-sports__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-sports__promo-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Responsible Gambling Section */
.page-sports__responsible-gambling-section {
  padding: 60px 0;
  background-color: #e9ecef;
  text-align: center;
}

/* CTA Section */
.page-sports__cta-section {
  background-color: #007BFF;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-sports__cta-section .page-sports__section-title {
  color: #FFC107;
}

.page-sports__cta-section .page-sports__section-intro {
  color: #f0f0f0;
}

.page-sports__cta-actions .page-sports__button {
  margin: 0 15px;
  border-color: #FFC107;
}

.page-sports__cta-actions .page-sports__button--primary {
  background-color: #FFC107;
  color: #007BFF;
}

.page-sports__cta-actions .page-sports__button--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-sports__cta-actions .page-sports__button--secondary {
  color: #FFC107;
}

.page-sports__cta-actions .page-sports__button--secondary:hover {
  background-color: rgba(255, 193, 7, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .page-sports__hero-title {
    font-size: 2.8em;
  }
  .page-sports__hero-description {
    font-size: 1.1em;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-sports {
    padding-top: var(--header-offset, 120px);
  }
  .page-sports__hero-section {
    padding: 60px 0;
    min-height: 450px;
  }
  .page-sports__hero-title {
    font-size: 2.2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__hero-actions .page-sports__button {
    display: block;
    margin: 15px auto;
  }
  .page-sports__grid,
  .page-sports__features-grid,
  .page-sports__promo-cards {
    grid-template-columns: 1fr;
  }
  .page-sports__grid-image,
  .page-sports__feature-icon,
  .page-sports__promo-image {
    max-width: 100%;
    height: auto;
  }
  .page-sports__button--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  /* Ensure all content area images are responsive and not too small */
  .page-sports__container img, .page-sports__grid-item img, .page-sports__feature-card img, .page-sports__promo-card img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size even on mobile if not explicitly smaller */
    min-height: 200px;
  }
  .page-sports__hero-image {
    min-width: unset;
    min-height: unset;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8em;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__button {
    padding: 10px 20px;
  }
  .page-sports__cta-actions .page-sports__button {
    margin: 10px auto;
  }
}