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

.page-sports__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text on dark background */
  text-align: center;
  padding: 80px 20px 0; /* Padding top for content below image */
  position: relative;
  overflow: hidden;
}

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

.page-sports__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

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

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  margin-top: -40px; /* Overlap with content slightly for better visual flow */
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-sports__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

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

.page-sports__button--secondary {
  background-color: transparent;
  color: #FFFFFF; /* Register button color */
  border: 2px solid #FFFFFF;
}

.page-sports__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-sports__button--link {
  color: #FCBC45;
  text-decoration: underline;
  padding: 0;
  background: none;
  border: none;
  font-size: 1em;
}

.page-sports__button--link:hover {
  color: #e0a53c;
  text-decoration: none;
}

.page-sports__button--text {
  color: #FCBC45;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-sports__button--text:hover {
  color: #e0a53c;
}

.page-sports__features-section,
.page-sports__sports-covered-section,
.page-sports__live-betting-section,
.page-sports__promotions-section,
.page-sports__guide-section,
.page-sports__responsible-gaming-section,
.page-sports__faq-section,
.page-sports__cta-final-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.page-sports__features-section,
.page-sports__guide-section,
.page-sports__faq-section {
  background-color: #F8F8F8;
}

.page-sports__sports-covered-section,
.page-sports__promotions-section,
.page-sports__cta-final-section {
  background-color: #FFFFFF;
}

.page-sports__live-betting-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-sports__responsible-gaming-section {
  background-color: #EFEFEF;
}

.page-sports__features-container,
.page-sports__sports-covered-container,
.page-sports__live-betting-container,
.page-sports__promotions-container,
.page-sports__guide-container,
.page-sports__responsible-gaming-container,
.page-sports__faq-container,
.page-sports__cta-final-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-sports__features-title,
.page-sports__sports-covered-title,
.page-sports__live-betting-title,
.page-sports__promotions-title,
.page-sports__guide-title,
.page-sports__responsible-gaming-title,
.page-sports__faq-title,
.page-sports__cta-final-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #000000;
}

.page-sports__live-betting-title {
  color: #FFFFFF;
}

.page-sports__features-intro,
.page-sports__sports-covered-intro,
.page-sports__live-betting-intro,
.page-sports__promotions-intro,
.page-sports__guide-intro,
.page-sports__responsible-gaming-intro,
.page-sports__cta-final-description {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-sports__live-betting-intro {
  color: #E0E0E0;
}

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

.page-sports__feature-card,
.page-sports__sport-card,
.page-sports__promo-card,
.page-sports__guide-step-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-sports__feature-card:hover,
.page-sports__sport-card:hover,
.page-sports__promo-card:hover,
.page-sports__guide-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.page-sports__feature-icon,
.page-sports__sport-image,
.page-sports__promo-image {
  width: 100%; /* Ensure images fill their card width */
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

.page-sports__feature-icon {
  max-width: 200px; /* Smaller for icons */
  margin-bottom: 30px;
}

.page-sports__feature-card-title,
.page-sports__sport-card-title,
.page-sports__promo-card-title,
.page-sports__guide-step-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000;
}

.page-sports__feature-card-description,
.page-sports__sport-card-description,
.page-sports__promo-card-description,
.page-sports__guide-step-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-sports__features-cta,
.page-sports__promotions-cta,
.page-sports__guide-cta,
.page-sports__cta-final-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-sports__live-betting-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-sports__live-betting-image {
  flex: 1;
  max-width: 55%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-sports__live-betting-text {
  flex: 1;
  max-width: 45%;
}

.page-sports__live-betting-subtitle {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-sports__live-betting-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-sports__live-betting-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-sports__live-betting-list-item {
  font-size: 1.05em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #F0F0F0;
}

.page-sports__live-betting-list-item::before {
  content: '✓';
  color: #FCBC45;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-sports__responsible-gaming-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-sports__responsible-gaming-list-item {
  font-size: 1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #444444;
}

.page-sports__responsible-gaming-list-item::before {
  content: '•';
  color: #000000;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-sports__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-sports__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-sports__faq-answer {
  font-size: 1em;
  color: #666666;
}

.page-sports__cta-final-title {
  color: #000000;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .page-sports__hero-title {
    font-size: 2.5em;
  }
  .page-sports__features-grid,
  .page-sports__sports-grid,
  .page-sports__promotions-grid,
  .page-sports__guide-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-sports__live-betting-content {
    flex-direction: column;
    text-align: center;
  }
  .page-sports__live-betting-image {
    max-width: 80%;
    margin-bottom: 30px;
  }
  .page-sports__live-betting-text {
    max-width: 100%;
  }
  .page-sports__live-betting-list-item {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-sports {
    padding-top: var(--header-offset, 120px); /* Ensure mobile content is not hidden */
  }
  .page-sports__hero-title {
    font-size: 2em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-sports__hero-buttons,
  .page-sports__features-cta,
  .page-sports__promotions-cta,
  .page-sports__guide-cta,
  .page-sports__cta-final-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__features-title,
  .page-sports__sports-covered-title,
  .page-sports__live-betting-title,
  .page-sports__promotions-title,
  .page-sports__guide-title,
  .page-sports__responsible-gaming-title,
  .page-sports__faq-title,
  .page-sports__cta-final-title {
    font-size: 2em;
  }
  .page-sports__features-intro,
  .page-sports__sports-covered-intro,
  .page-sports__live-betting-intro,
  .page-sports__promotions-intro,
  .page-sports__guide-intro,
  .page-sports__responsible-gaming-intro,
  .page-sports__cta-final-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-sports__feature-card,
  .page-sports__sport-card,
  .page-sports__promo-card,
  .page-sports__guide-step-card {
    padding: 20px;
  }
  .page-sports__feature-card-title,
  .page-sports__sport-card-title,
  .page-sports__promo-card-title,
  .page-sports__guide-step-title {
    font-size: 1.5em;
  }
  .page-sports__live-betting-subtitle {
    font-size: 1.8em;
  }
  .page-sports__live-betting-image {
    max-width: 100%;
  }
  .page-sports__responsible-gaming-list {
    grid-template-columns: 1fr;
  }

  /* Critical: Prevent content overflow on mobile */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }
  .page-sports {
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8em;
  }
  .page-sports__features-title,
  .page-sports__sports-covered-title,
  .page-sports__live-betting-title,
  .page-sports__promotions-title,
  .page-sports__guide-title,
  .page-sports__responsible-gaming-title,
  .page-sports__faq-title,
  .page-sports__cta-final-title {
    font-size: 1.8em;
  }
  .page-sports__features-grid,
  .page-sports__sports-grid,
  .page-sports__promotions-grid,
  .page-sports__guide-steps {
    grid-template-columns: 1fr;
  }
  .page-sports__live-betting-subtitle {
    font-size: 1.5em;
  }
}