.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Assuming dark body background from shared.css */
  background-color: var(--bg-color, #08160F); /* Fallback to specified background */
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom for content */
  overflow: hidden;
  box-sizing: border-box;
  background-color: #08160F; /* Ensure background for hero if image doesn't cover all */
}

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

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 200px; /* Push content down to avoid overlapping the top of the image visually */
  padding-bottom: 50px;
  color: #F2FFF6;
}

.page-sports__hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-sports__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #A7D9B8;
}

.page-sports__hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* General Section Styling */
.page-sports__section {
  padding: 60px 0;
  background-color: var(--bg-color, #08160F);
  color: var(--text-main, #F2FFF6);
}

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

.page-sports__container--center {
  text-align: center;
}

.page-sports__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #F2FFF6;
}

.page-sports__title--white {
  color: #F2FFF6;
}

.page-sports__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-sports__paragraph--white {
  color: #F2FFF6;
}

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

/* Lists */
.page-sports__list,
.page-sports__ordered-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-sports__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #A7D9B8;
}

.page-sports__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2AD16F;
  font-weight: bold;
}

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

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

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D;
}

.page-sports__btn-secondary {
  background: transparent;
  color: #11A84E;
  border: 2px solid #11A84E;
}

.page-sports__btn-secondary:hover {
  background-color: #11A84E;
  color: #ffffff;
}

/* Dark Background Section */
.page-sports__dark-bg {
  background-color: #11271B;
  color: #F2FFF6;
}

/* FAQ Section */
.page-sports__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  color: #F2FFF6;
  background-color: #0A4B2C;
}

.page-sports__faq-question:hover {
  background-color: #11A84E;
}

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

.page-sports__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
  transform: rotate(45deg);
}

.page-sports__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #A7D9B8;
}

/* Details element specific styling */
.page-sports__faq-item summary {
  list-style: none;
}
.page-sports__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-sports__hero-content {
    padding-top: 150px;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding: 10px 15px 40px;
  }
  .page-sports__hero-content {
    padding-top: 100px;
  }
  .page-sports__hero-title {
    font-size: 2.2rem;
  }
  .page-sports__hero-description {
    font-size: 1rem;
  }
  .page-sports__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-sports__btn-primary,
  .page-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-sports__section {
    padding: 40px 0;
  }
  .page-sports__container {
    padding: 0 15px;
  }
  .page-sports__title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .page-sports__paragraph {
    font-size: 1rem;
  }
  .page-sports__list-item {
    font-size: 1rem;
  }

  /* Image responsiveness */
  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-sports__image {
    padding: 0 15px; /* Add padding to images to prevent touching edges */
  }

  /* Video responsiveness (if any) */
  .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__video-section {
    padding-top: 10px !important;
  }

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

/* Ensure no filter on images */
.page-sports img {
  filter: none !important;
}

/* Content area images CSS dimensions lower bound check */
.page-sports img:not(.page-sports__hero-image) { 
  min-width: 200px;
  min-height: 200px;
}

/* Desktop video container width check (if there was a video) */
.page-sports__video-container { width: 100%; max-width: 1200px; }