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

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

.page-sports__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 500px; /* Limit height on desktop */
  overflow: hidden;
  margin-bottom: 20px;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

.page-sports__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-sports__intro-text {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-sports__cta-button--inline {
  margin-top: 20px;
}

.page-sports__video-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F; /* Background */
  text-align: center;
}

.page-sports__section-header {
  margin-bottom: 40px;
}

.page-sports__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: center;
}

.page-sports__video-container {
  position: relative;
  width: 100%; /* Desktop width */
  max-width: 1280px;
  margin: 0 auto;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: flex; /* Ensure flex for centering video */
  justify-content: center;
  align-items: center;
}

.page-sports__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-sports__video-description {
  color: #A7D9B8; /* Text Secondary */
  margin-top: 20px;
  font-size: 1em;
  max-width: 800px;
}

.page-sports__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #08160F; /* Background */
}

.page-sports__article p {
  margin-bottom: 1em;
  color: #F2FFF6; /* Text Main */
  font-size: 1.05em;
}

.page-sports__article strong {
  color: #57E38D; /* Glow */
}

.page-sports__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  font-weight: 600;
  color: #22C768; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-sports__image-container {
  margin: 30px 0;
  text-align: center;
  background-color: #11271B; /* Card BG */
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

.page-sports__guide-list,
.page-sports__advantage-list,
.page-sports__promotion-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-sports__list-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: #F2FFF6; /* Text Main */
  position: relative;
  padding-left: 40px;
}

.page-sports__list-item::before {
  content: '✔';
  position: absolute;
  left: 15px;
  color: #57E38D; /* Glow */
  font-weight: bold;
}

.page-sports__guide-list .page-sports__list-item::before {
  content: counter(list-item);
  counter-increment: list-item;
  color: #F2C14E; /* Gold */
  font-weight: bold;
  left: 15px;
}

.page-sports__guide-list .page-sports__list-item {
  counter-increment: list-item;
}

.page-sports__text-link {
  color: #22C768; /* Auxiliary color */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-sports__text-link:hover {
  color: #57E38D; /* Glow */
}

.page-sports__faq-list {
  margin-top: 30px;
}

.page-sports__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: #F2FFF6; /* Text Main */
  overflow: hidden;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  list-style: none;
}

.page-sports__faq-question::-webkit-details-marker {
  display: none;
}

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

.page-sports__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #22C768; /* Auxiliary color */
}

.page-sports__faq-answer {
  padding: 0 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.5;
}

/* Details element specific styling */
.page-sports__faq-item[open] .page-sports__faq-question .page-sports__faq-toggle {
  content: '−';
}


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

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

  .page-sports__section-title {
    font-size: clamp(1.6em, 4vw, 2.2em);
  }

  .page-sports__hero-image-wrapper {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

  .page-sports__hero-image-wrapper {
    max-height: 300px;
  }

  .page-sports__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }

  .page-sports__intro-text {
    font-size: 1em;
  }

  .page-sports__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

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

  .page-sports__video-container,
  .page-sports__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 0px; /* No extra padding for video container, content area handles it */
    overflow: hidden !important;
  }

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

  .page-sports__content-area {
    padding: 20px 15px;
  }

  .page-sports__section-title {
    font-size: clamp(1.4em, 5vw, 2em);
  }

  .page-sports__sub-title {
    font-size: clamp(1.2em, 4vw, 1.8em);
  }

  .page-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-sports__section,
  .page-sports__card,
  .page-sports__container,
  .page-sports__image-container,
  .page-sports__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-sports__list-item::before {
    left: 10px;
  }

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

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