.page-sports {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-sports__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #1a1a1a;
  overflow: hidden;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.7;
  filter: brightness(0.8); /* Slight darkening for text contrast */
}

.page-sports__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  z-index: 10;
}

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

.page-sports__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

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

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

.page-sports__btn--primary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

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

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

.page-sports__btn--secondary:hover {
  background-color: #6e0000;
  transform: translateY(-2px);
}

.page-sports__section-title {
  font-size: 2.8em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-sports__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-sports__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.page-sports__features-section,
.page-sports__sports-covered-section,
.page-sports__promotions-section,
.page-sports__how-to-start-section,
.page-sports__responsible-gaming-section,
.page-sports__faq-section,
.page-sports__cta-download-section {
  padding: 80px 0;
}

.page-sports__features-grid,
.page-sports__sports-grid,
.page-sports__promo-cards,
.page-sports__steps-grid {
  display: grid;
  gap: 30px;
}

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

.page-sports__feature-card,
.page-sports__sport-card,
.page-sports__promo-card,
.page-sports__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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 12px 30px rgba(0, 0, 0, 0.15);
}

.page-sports__feature-icon,
.page-sports__sport-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-sports__feature-title,
.page-sports__sport-title,
.page-sports__promo-title,
.page-sports__step-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-sports__feature-title a,
.page-sports__sport-title a {
  color: #8B0000;
  text-decoration: none;
}

.page-sports__feature-title a:hover,
.page-sports__sport-title a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-sports__feature-description,
.page-sports__sport-description,
.page-sports__promo-description,
.page-sports__step-description {
  font-size: 1em;
  color: #666666;
}

.page-sports__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-sports__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

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

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

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

.page-sports__btn--promo {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #8B0000;
  margin-top: 20px;
}

.page-sports__btn--promo:hover {
  background-color: #6e0000;
}

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

.page-sports__step-card {
  position: relative;
  padding-top: 70px;
}

.page-sports__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #8B0000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 3px solid #8B0000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__btn--step {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
  margin-top: 20px;
}

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

.page-sports__responsible-gaming-section {
  background-color: #8B0000;
  color: #ffffff;
  text-align: center;
}

.page-sports__responsible-gaming-section .page-sports__section-title {
  color: #FFD700;
}

.page-sports__responsible-gaming-section .page-sports__section-title::after {
  background-color: #ffffff;
}

.page-sports__responsible-gaming-section .page-sports__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-sports__responsible-gaming-section .page-sports__btn--secondary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-sports__responsible-gaming-section .page-sports__btn--secondary:hover {
  background-color: #e6c200;
}

.page-sports__faq-section {
  background-color: #f0f0f0;
}

.page-sports__faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.page-sports__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-sports__faq-question {
  font-size: 1.3em;
  color: #8B0000;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.page-sports__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-sports__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-sports__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-sports__faq-answer p {
  padding-bottom: 20px;
  color: #555555;
}

.page-sports__btn--download {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
  margin-top: 40px;
  padding: 18px 40px;
  font-size: 1.2em;
}

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

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

  .page-sports__hero-description {
    font-size: 1em;
  }

  .page-sports__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding-top: var(--header-offset, 120px);
  }

  .page-sports__hero-content {
    width: 90%;
  }

  .page-sports__hero-title {
    font-size: 2em;
  }

  .page-sports__hero-description {
    font-size: 0.9em;
  }

  .page-sports__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-sports__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-sports__features-section,
  .page-sports__sports-covered-section,
  .page-sports__promotions-section,
  .page-sports__how-to-start-section,
  .page-sports__responsible-gaming-section,
  .page-sports__faq-section,
  .page-sports__cta-download-section {
    padding: 60px 0;
  }

  .page-sports__section-title {
    font-size: 1.8em;
  }

  .page-sports__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-sports__feature-card,
  .page-sports__sport-card,
  .page-sports__promo-card,
  .page-sports__step-card {
    padding: 25px;
  }

  .page-sports__feature-title,
  .page-sports__sport-title,
  .page-sports__promo-title,
  .page-sports__step-title {
    font-size: 1.5em;
  }

  /* Ensure images do not overflow on mobile */
  .page-sports__hero-image,
  .page-sports__feature-icon,
  .page-sports__sport-image {
    max-width: 100%;
    height: auto;
  }

  .page-sports__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-sports__faq-answer p {
    padding-bottom: 15px;
  }

  .page-sports__btn--large,
  .page-sports__btn--download {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 576px) {
  .page-sports__hero-title {
    font-size: 1.8em;
  }

  .page-sports__hero-description {
    font-size: 0.85em;
  }

  .page-sports__section-title {
    font-size: 1.6em;
  }

  .page-sports__section-intro {
    font-size: 0.9em;
  }

  .page-sports__feature-title,
  .page-sports__sport-title,
  .page-sports__promo-title,
  .page-sports__step-title {
    font-size: 1.3em;
  }

  .page-sports__faq-question {
    font-size: 1em;
  }
}