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

.page-sports__section {
  padding: 60px 0;
  text-align: center;
}

.page-sports__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-sports__light-bg {
  background-color: #11271B; /* Card BG, slightly lighter for contrast */
  color: #F2FFF6;
}

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

.page-sports__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 30px;
  color: #F2C14E; /* Gold */
  line-height: 1.2;
}

.page-sports__section-text {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 0 60px 0; /* body padding-top handled by shared.css, 10px for visual spacing */
}

.page-sports__hero-image-wrapper {
  width: 100%;
  height: auto;
  position: relative;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-sports__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.page-sports__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-sports__hero-description {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  line-height: 1.5;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

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

.page-sports__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-sports__sport-category {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-sports__category-title {
  font-size: 1.8em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-sports__category-description {
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

.page-sports__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 800px;
}

.page-sports__benefit-item {
  background-color: #0A4B2C; /* Deep Green */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  font-size: 1.1em;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  border-left: 5px solid #F2C14E; /* Gold */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-sports__promo-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 800px;
}

.page-sports__promo-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  font-size: 1.1em;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-sports__guide-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 800px;
  counter-reset: guide-step;
}

.page-sports__guide-item {
  background-color: #0A4B2C; /* Deep Green */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  font-size: 1.1em;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  position: relative;
  padding-left: 60px;
  border-left: 5px solid #22C768; /* Auxiliary color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__guide-item::before {
  counter-increment: guide-step;
  content: "Bước " counter(guide-step) ":";
  position: absolute;
  left: 20px;
  top: 20px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  font-size: 1.2em;
}

.page-sports__faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.page-sports__faq-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E;
  list-style: none; /* For details/summary */
}

.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: #F2C14E; /* Gold */
}

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

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

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 3rem;
  }
  .page-sports__hero-description {
    font-size: 1.2rem;
  }
  .page-sports__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-sports__section {
    padding: 40px 0;
  }
  .page-sports__container {
    padding: 0 15px;
  }
  .page-sports__hero-content {
    padding: 15px;
  }
  .page-sports__hero-title {
    font-size: 2.2rem !important;
  }
  .page-sports__hero-description {
    font-size: 1rem !important;
  }
  .page-sports__section-title {
    font-size: 1.8em;
  }
  .page-sports__section-text,
  .page-sports__category-description,
  .page-sports__benefit-item,
  .page-sports__promo-item,
  .page-sports__guide-item,
  .page-sports__faq-answer {
    font-size: 0.95em;
  }
  .page-sports__btn-primary {
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-sports__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-sports__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-sports__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8rem !important;
  }
  .page-sports__hero-description {
    font-size: 0.9rem !important;
  }
  .page-sports__section-title {
    font-size: 1.5em;
  }
  .page-sports__category-title {
    font-size: 1.4em;
  }
  .page-sports__guide-item {
    padding-left: 50px;
  }
  .page-sports__guide-item::before {
    left: 15px;
    font-size: 1.1em;
  }
}