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

.page-sports__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-sports__light-bg {
  background-color: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
}

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

.page-sports__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  filter: brightness(0.6); /* Slightly darken image for text readability */
  min-height: 400px; /* Ensure hero image has minimum height */
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

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

.page-sports__hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

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

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

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

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

.page-sports__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-sports__btn-secondary:hover {
  background-color: #2E7A4E; /* Border color on hover */
  color: #F2FFF6;
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-sports__section {
  padding: 60px 20px;
}

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

.page-sports__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6; /* Text Main */
}

.page-sports__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #A7D9B8; /* Text Secondary */
}

.page-sports__text-block a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-sports__text-block a:hover {
  color: #2AD16F;
}

.page-sports__sport-grid,
.page-sports__advantage-grid,
.page-sports__steps-grid,
.page-sports__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__card {
  background-color: #11271B; /* Card B G */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
}

.page-sports__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 20px #57E38D; /* Glow */
}

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

.page-sports__card-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  align-self: center;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
  flex-grow: 1;
}

.page-sports__card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

.page-sports__card-description a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-sports__card-description a:hover {
  color: #2AD16F;
}

.page-sports__step-number {
  font-size: 3rem;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  text-align: center;
}

.page-sports__cta-buttons--center {
  text-align: center;
  margin-top: 40px;
}

.page-sports__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-sports__faq-item {
  background-color: #11271B; /* Card B G */
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  list-style: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

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

.page-sports__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-sports__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2AD16F;
  margin-left: 15px;
}

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

.page-sports__faq-answer {
  padding: 0 30px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-sports__faq-answer a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-sports__faq-answer a:hover {
  color: #2AD16F;
}

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

  .page-sports__hero-section {
    padding: 10px 15px 40px;
    min-height: 500px;
  }

  .page-sports__hero-image {
    filter: brightness(0.5); /* More darken for mobile */
  }

  .page-sports__main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-sports__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .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: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-sports__section {
    padding: 40px 15px;
  }

  .page-sports__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-sports__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-sports__text-block {
    font-size: 0.95rem;
  }

  .page-sports__sport-grid,
  .page-sports__advantage-grid,
  .page-sports__steps-grid,
  .page-sports__promotion-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__card {
    padding: 20px;
  }

  .page-sports__card-image,
  .page-sports__card-icon {
    min-width: 200px !important;
    min-height: 200px !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  .page-sports__card-title {
    font-size: 1.3rem;
  }

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

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

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