.page-sports {
  color: var(--text-main); /* Assuming dark body background */
  background-color: var(--background);
  font-family: Arial, sans-serif;
}

.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: 10px; /* Small top padding as per rules, body handles header offset */
  background-color: var(--deep-green);
  overflow: hidden;
}

.page-sports__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-main);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 15px;
  font-size: clamp(28px, 4vw, 48px); /* Responsive H1 */
}

.page-sports__hero-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-sports__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* For mobile responsiveness */
}

.page-sports__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  background: var(--button); /* Custom button gradient */
  color: var(--text-main); /* Text on button */
  border: none;
  max-width: 100%; /* For mobile */
  box-sizing: border-box; /* For mobile */
  white-space: normal; /* For mobile */
  word-wrap: break-word; /* For mobile */
}

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

.page-sports__section {
  padding: 60px 20px;
  background-color: var(--background);
}

.page-sports__section--alt {
  background-color: var(--card-bg);
}

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

.page-sports__heading-2 {
  font-size: clamp(24px, 3vw, 40px);
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-sports__heading-3 {
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: 600;
}

.page-sports__heading-4 {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 500;
}

.page-sports__paragraph {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.page-sports__paragraph--center {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.page-sports__list--numbered {
  counter-reset: list-counter;
}

.page-sports__list--numbered .page-sports__list-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}

.page-sports__list--numbered .page-sports__list-item::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: var(--glow);
  color: #000000; /* Ensure contrast on glow color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-sports__list--bullet {
  list-style: disc;
  margin-left: 25px;
}

.page-sports__list-item {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.page-sports__list-strong {
  color: var(--text-main);
}

.page-sports__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-sports__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.page-sports__grid-item {
  background-color: var(--card-bg);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-sports__video-section {
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as per rules, body handles header offset */
  background-color: var(--card-bg);
  text-align: center;
}

.page-sports__video-wrapper {
  position: relative;
  width: 100%; /* Desktop requirement */
  max-width: 100%; /* Desktop requirement */
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  box-sizing: border-box;
}

.page-sports__hero-video { /* This is the actual video element inside the wrapper */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-sports__faq-section {
  padding: 60px 20px;
  background-color: var(--background);
}

.page-sports__faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--card-bg);
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: var(--card-bg);
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-sports__faq-question:hover {
  background-color: var(--deep-green);
}

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: var(--glow);
}

.page-sports__faq-answer {
  padding: 0 20px 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95em;
  max-height: 0; /* For JS-controlled collapse */
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

/* For details tag native behavior */
.page-sports__faq-item[open] .page-sports__faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding-top: 15px;
}

.page-sports__faq-item details > summary {
    list-style: none;
}
.page-sports__faq-item details > summary::-webkit-details-marker {
    display: none;
}

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

  .page-sports__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-sports__hero-content {
    padding: 0 10px;
  }

  .page-sports__main-title {
    font-size: clamp(24px, 7vw, 36px);
  }

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

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

  .page-sports__btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-sports__section,
  .page-sports__faq-section,
  .page-sports__video-section {
    padding: 40px 15px;
  }

  .page-sports__video-section {
    padding-top: 10px !important;
  }

  .page-sports__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-sports__heading-2 {
    font-size: clamp(20px, 6vw, 32px);
    margin-bottom: 30px;
  }

  .page-sports__heading-3 {
    font-size: clamp(18px, 5vw, 24px);
  }

  .page-sports__image,
  .page-sports__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports__image-wrapper,
  .page-sports__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-sports__faq-item {
    margin-left: 0;
    margin-right: 0;
  }

  .page-sports__grid-content {
    grid-template-columns: 1fr;
  }

  .page-sports__list--numbered .page-sports__list-item {
    padding-left: 35px;
  }
}