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

.page-sports__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 80px 20px;
}

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

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

.page-sports__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.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;
  min-width: 200px;
  text-align: center;
}

.page-sports__button--primary {
  background-color: #FFD700; /* Gold */
  color: #333333;
  border: 2px solid #FFD700;
}

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

.page-sports__button--secondary {
  background-color: #008000; /* Dark Green */
  color: #ffffff;
  border: 2px solid #008000;
}

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

.page-sports__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: unset;
}

.page-sports__introduction-section,
.page-sports__features-section,
.page-sports__sports-categories-section,
.page-sports__how-to-bet-section,
.page-sports__promotions-section,
.page-sports__app-download-section,
.page-sports__faq-section,
.page-sports__cta-final-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-sports__introduction-section,
.page-sports__how-to-bet-section,
.page-sports__faq-section {
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-sports__introduction-title,
.page-sports__features-title,
.page-sports__sports-categories-title,
.page-sports__how-to-bet-title,
.page-sports__promotions-title,
.page-sports__app-download-title,
.page-sports__faq-title,
.page-sports__cta-final-title {
  font-size: 2.5em;
  color: #008000; /* Dark Green for section titles */
  text-align: center;
  margin-bottom: 40px;
}

.page-sports__introduction-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-sports__feature-card,
.page-sports__sport-card,
.page-sports__promotion-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;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__feature-card:hover,
.page-sports__sport-card:hover,
.page-sports__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-sports__feature-icon,
.page-sports__sport-image,
.page-sports__promotion-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Constrain max width for visual consistency */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-sports__feature-card-title,
.page-sports__sport-card-title,
.page-sports__promotion-card-title {
  font-size: 1.8em;
  color: #008000;
  margin-bottom: 15px;
}

.page-sports__feature-card-description,
.page-sports__sport-card-description,
.page-sports__promotion-card-description {
  font-size: 1em;
  color: #555555;
  text-align: justify;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-sports__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #e6ffe6; /* Light green background */
  border-radius: 10px;
  border: 1px dashed #008000;
}

.page-sports__cta-text {
  font-size: 1.4em;
  color: #006600;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-sports__how-to-bet-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-sports__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__step-number {
  font-size: 2em;
  color: #FFD700; /* Gold for step numbers */
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-sports__promotions-intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-sports__promotions-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 1em;
  color: #555555;
}

.page-sports__promotions-link {
  color: #008000;
  text-decoration: none;
  font-weight: bold;
}

.page-sports__promotions-link:hover {
  text-decoration: underline;
}

.page-sports__app-download-container {
  text-align: center;
  background-color: #008000; /* Dark Green background */
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 10px;
}

.page-sports__app-download-title {
  color: #FFD700; /* Gold for title */
  margin-bottom: 20px;
}

.page-sports__app-download-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-sports__app-download-buttons .page-sports__button--primary {
  background-color: #FFD700;
  color: #333333;
  border-color: #FFD700;
}

.page-sports__app-download-buttons .page-sports__button--primary:hover {
  background-color: #e6c200;
}

.page-sports__app-download-buttons .page-sports__button--secondary {
  background-color: #DC143C; /* Emphasis Red */
  color: #ffffff;
  border-color: #DC143C;
}

.page-sports__app-download-buttons .page-sports__button--secondary:hover {
  background-color: #b0102f;
}

.page-sports__app-screenshot {
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 5px solid #FFD700;
}

.page-sports__faq-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-sports__faq-question {
  font-size: 1.4em;
  color: #008000;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-sports__faq-answer {
  font-size: 1em;
  color: #555555;
  text-align: justify;
}

.page-sports__faq-link {
  color: #008000;
  text-decoration: none;
  font-weight: bold;
}

.page-sports__faq-link:hover {
  text-decoration: underline;
}

.page-sports__cta-final-section {
  text-align: center;
  background-color: #FFD700; /* Gold background */
  color: #333333;
  padding: 60px 20px;
  border-radius: 10px;
}

.page-sports__cta-final-title {
  color: #008000;
  margin-bottom: 20px;
}

.page-sports__cta-final-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-final-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-sports__cta-final-actions .page-sports__button--primary {
  background-color: #008000;
  color: #ffffff;
  border-color: #008000;
}

.page-sports__cta-final-actions .page-sports__button--primary:hover {
  background-color: #006600;
}

.page-sports__cta-final-actions .page-sports__button--secondary {
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
}

.page-sports__cta-final-actions .page-sports__button--secondary:hover {
  background-color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 2.5em;
  }
  .page-sports__introduction-title,
  .page-sports__features-title,
  .page-sports__sports-categories-title,
  .page-sports__how-to-bet-title,
  .page-sports__promotions-title,
  .page-sports__app-download-title,
  .page-sports__faq-title,
  .page-sports__cta-final-title {
    font-size: 2em;
  }
  .page-sports__features-grid,
  .page-sports__sports-categories-grid,
  .page-sports__promotions-grid,
  .page-sports__how-to-bet-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-sports {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-sports__hero-section {
    min-height: 400px;
    padding: 60px 15px;
  }
  .page-sports__hero-title {
    font-size: 2em;
  }
  .page-sports__hero-description {
    font-size: 1.1em;
  }
  .page-sports__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__button {
    width: 100%;
    max-width: 300px;
  }
  .page-sports__introduction-section,
  .page-sports__features-section,
  .page-sports__sports-categories-section,
  .page-sports__how-to-bet-section,
  .page-sports__promotions-section,
  .page-sports__app-download-section,
  .page-sports__faq-section,
  .page-sports__cta-final-section {
    padding: 40px 15px;
  }
  .page-sports__introduction-title,
  .page-sports__features-title,
  .page-sports__sports-categories-title,
  .page-sports__how-to-bet-title,
  .page-sports__promotions-title,
  .page-sports__app-download-title,
  .page-sports__faq-title,
  .page-sports__cta-final-title {
    font-size: 1.8em;
  }
  .page-sports__feature-card-title,
  .page-sports__sport-card-title,
  .page-sports__promotion-card-title {
    font-size: 1.5em;
  }
  .page-sports__feature-icon,
  .page-sports__sport-image,
  .page-sports__promotion-image,
  .page-sports__app-screenshot {
    max-width: 100%;
    height: auto;
  }
  /* Mobile content area image rules */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }
  .page-sports__app-download-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8em;
  }
  .page-sports__hero-description {
    font-size: 1em;
  }
  .page-sports__introduction-title,
  .page-sports__features-title,
  .page-sports__sports-categories-title,
  .page-sports__how-to-bet-title,
  .page-sports__promotions-title,
  .page-sports__app-download-title,
  .page-sports__faq-title,
  .page-sports__cta-final-title {
    font-size: 1.5em;
  }
  .page-sports__button {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-sports__features-grid,
  .page-sports__sports-categories-grid,
  .page-sports__promotions-grid,
  .page-sports__how-to-bet-steps {
    grid-template-columns: 1fr;
  }
  .page-sports__step-number {
    font-size: 1.8em;
  }
  .page-sports__faq-question {
    font-size: 1.1em;
  }
}