.page-sports {
  /* body đã padding-top: var(--header-offset) từ shared.css, không thêm lại tại đây */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Vì body background là dark, text chính phải là light */
  background-color: var(--neon-dark-bg-1); /* Kế thừa từ shared.css */
}

.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #0d0d0d; /* Fallback for dark background */
}

.page-sports__hero-image-wrapper {
  width: 100%;
  height: auto;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-sports__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  margin-top: 20px; /* Space between image and text */
  color: #ffffff;
}

.page-sports__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff; /* White text on dark background */
  margin-bottom: 15px;
  max-width: 100%; /* Ensure H1 doesn't overflow */
}

.page-sports__hero-description {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-sports__hero-cta {
  padding: 15px 30px;
  font-size: 1.1em;
}

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

.page-sports__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-sports__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

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

.page-sports__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: inherit; /* Inherit color from section background */
}

.page-sports__section-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
  color: inherit;
}

.page-sports__feature-grid, .page-sports__sports-grid, .page-sports__experience-grid, .page-sports__promotion-cards, .page-sports__guide-steps {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-sports__feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-sports__feature-item {
  text-align: left;
}

.page-sports__feature-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-sports__feature-text {
  font-size: 1em;
  color: inherit;
}

.page-sports__sports-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-sports__sport-card, .page-sports__promotion-card, .page-sports__guide-step, .page-sports__experience-item {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark bg */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff; /* Light text on dark card background */
}

.page-sports__light-bg .page-sports__sport-card,
.page-sports__light-bg .page-sports__promotion-card,
.page-sports__light-bg .page-sports__guide-step,
.page-sports__light-bg .page-sports__experience-item {
  background: #ffffff; /* White background for light bg */
  color: #333333; /* Dark text on light card background */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-sports__sport-card:hover, .page-sports__promotion-card:hover, .page-sports__guide-step:hover, .page-sports__experience-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__sport-image, .page-sports__promotion-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-sports__sport-title, .page-sports__promotion-title, .page-sports__experience-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: bold;
  color: #26A9E0;
}

.page-sports__sport-description, .page-sports__promotion-description, .page-sports__experience-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: inherit;
}

.page-sports__download-cta {
  margin-top: 20px;
  display: inline-block;
}

.page-sports__cta-wrapper {
  margin-top: 50px;
}

.page-sports__btn-primary, .page-sports__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-sports__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-sports__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-sports__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 15px; /* For spacing when multiple buttons */
}

.page-sports__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-sports__guide-steps {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-sports__guide-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-sports__step-icon {
  background-color: #26A9E0;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 15px;
}

.page-sports__step-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-sports__step-description {
  font-size: 0.95em;
  color: inherit;
}

.page-sports__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-sports__faq-item {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark bg */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff; /* Light text on dark card background */
}

.page-sports__light-bg .page-sports__faq-item {
  background: #ffffff; /* White background for light bg */
  color: #333333; /* Dark text on light card background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  color: #26A9E0;
  list-style: none;
}

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

.page-sports__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #26A9E0;
}

.page-sports__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  line-height: 1.7;
  color: inherit;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-sports__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-sports__hero-title {
    font-size: 2em;
  }

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

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

  .page-sports__section-title {
    font-size: 2em;
  }

  .page-sports__section-text {
    font-size: 0.95em;
  }

  .page-sports__container {
    padding: 0 15px !important; /* Required for mobile content containers */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  /* Video responsiveness - if video section was present */
  .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;
  }

  /* Button responsiveness */
  .page-sports__btn-primary,
  .page-sports__btn-secondary,
  .page-sports a[class*="button"],
  .page-sports a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important; /* Remove left margin for stacked buttons */
    margin-bottom: 10px; /* Add bottom margin for stacked buttons */
  }

  .page-sports__cta-buttons,
  .page-sports__button-group,
  .page-sports__btn-container,
  .page-sports__cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
    overflow: hidden !important;
  }

  .page-sports__sport-card, .page-sports__promotion-card, .page-sports__guide-step, .page-sports__experience-item, .page-sports__faq-item {
    padding: 20px;
  }

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

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

@media (min-width: 769px) {
  .page-sports__hero-title {
    font-size: 3.5em; /* Larger H1 for desktop */
  }
  .page-sports__section-title {
    font-size: 3em;
  }
  .page-sports__video-container {
    width: 100%; /* Ensure width: 100% for desktop flex containers */
  }
}