.page-sports {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A4B2C; /* Deep Green fallback */
}

.page-sports__hero-image-wrapper {
  width: 100%;
  height: auto;
  max-height: 600px;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-sports__hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.page-sports__main-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-sports__subtitle {
  color: #F2FFF6; /* Text Main */
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
}

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

.page-sports__btn-primary,
.page-sports__btn-secondary,
.page-sports__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-sports__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-sports__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
}

.page-sports__btn-secondary:hover {
  background: #F2C14E;
  color: #08160F;
}

.page-sports__btn-link {
  background: #11A84E; /* Main Color */
  color: #F2FFF6; /* Text Main */
  border: none;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-sports__btn-link:hover {
  opacity: 0.8;
}

.page-sports__section-title {
  color: #F2C14E; /* Gold */
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-sports__section-description {
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.page-sports__features-section,
.page-sports__popular-sports-section,
.page-sports__promo-section,
.page-sports__guide-section,
.page-sports__faq-section,
.page-sports__cta-banner {
  padding: 60px 0;
}

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

.page-sports__feature-card,
.page-sports__sport-card,
.page-sports__promo-card,
.page-sports__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-sports__card-title {
  color: #F2C14E; /* Gold */
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports__card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-sports__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-sports__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1rem;
  user-select: none;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-sports__faq-item[open] .page-sports__faq-question {
  border-bottom: 1px solid #2E7A4E; /* Border */
}

.page-sports__faq-qtext {
  flex-grow: 1;
}

.page-sports__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
  content: '−';
}

.page-sports__faq-answer {
  padding: 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.6;
  background-color: #11271B; /* Card BG */
}

.page-sports__faq-answer p:last-child {
  margin-bottom: 0;
}

details > summary::marker, /* Standard marker */
details > summary::-webkit-details-marker { /* Webkit marker */
  display: none;
}

/* CTA Banner */
.page-sports__cta-banner {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 20px;
  text-align: center;
  border-top: 5px solid #F2C14E; /* Gold */
}

.page-sports__cta-banner .page-sports__section-title {
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-sports__cta-banner .page-sports__section-description {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-section {
    padding: 40px 20px;
  }

  .page-sports__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-sports__subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
  }

  .page-sports__features-grid,
  .page-sports__sports-list,
  .page-sports__promo-grid,
  .page-sports__guide-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-sports {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-sports__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* Ensure small top padding */
  }

  .page-sports__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-sports__subtitle {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

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

  .page-sports__btn-primary,
  .page-sports__btn-secondary,
  .page-sports__btn-link {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-sports__container,
  .page-sports__hero-image-wrapper,
  .page-sports__cta-buttons,
  .page-sports__features-section,
  .page-sports__popular-sports-section,
  .page-sports__promo-section,
  .page-sports__guide-section,
  .page-sports__faq-section,
  .page-sports__cta-banner {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports video,
  .page-sports__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-sports__video-section,
  .page-sports__video-container,
  .page-sports__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-sports__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-sports__section-description {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }

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

  .page-sports__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-sports__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .page-sports__features-grid,
  .page-sports__sports-list,
  .page-sports__promo-grid,
  .page-sports__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-sports__hero-section,
  .page-sports__features-section,
  .page-sports__popular-sports-section,
  .page-sports__promo-section,
  .page-sports__guide-section,
  .page-sports__faq-section,
  .page-sports__cta-banner {
    padding: 40px 0;
  }
}