.page-the-thao {
  font-family: Arial, sans-serif;
  color: #333333;
  line-height: 1.6;
}

.page-the-thao__hero-section {
  padding-top: 10px; /* Rely on shared for body padding-top */
  padding-bottom: 60px;
  background-color: #F5F7FA;
  overflow: hidden;
}

.page-the-thao__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 16px;
  gap: 24px;
}

.page-the-thao__hero-image {
  flex: 1 1 45%;
  text-align: center;
}

.page-the-thao__hero-main-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.page-the-thao__hero-content {
  flex: 1 1 50%;
  color: #333333; /* Default text color for light background */
  padding-left: 20px;
}

.page-the-thao__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #E53935;
  margin-bottom: 20px;
}

.page-the-thao__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-the-thao__hero-cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.page-the-thao__btn-primary:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  box-shadow: 0 6px 16px rgba(229, 57, 53, 0.4);
}

.page-the-thao__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-the-thao__btn-secondary:hover {
  background: #f0f0f0;
  color: #FF5A4F;
  border-color: #FF5A4F;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-the-thao__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
}

.page-the-thao__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #E53935;
  text-align: center;
  margin-bottom: 20px;
}

.page-the-thao__section-description {
  font-size: 1.05rem;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao__features-section,
.page-the-thao__popular-sports-section,
.page-the-thao__guide-section,
.page-the-thao__promo-section,
.page-the-thao__faq-section {
  padding: 60px 0;
}

.page-the-thao__features-section {
  background-color: #ffffff;
}

.page-the-thao__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-the-thao__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-the-thao__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FF5A4F;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-the-thao__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.page-the-thao__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 15px;
}

.page-the-thao__feature-text {
  font-size: 1rem;
  color: #555555;
}

.page-the-thao__popular-sports-section {
  background-color: #F5F7FA;
}

.page-the-thao__sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-the-thao__sport-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao__sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-the-thao__sport-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-the-thao__sport-card-content {
  padding: 20px;
}

.page-the-thao__sport-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 10px;
}

.page-the-thao__sport-text {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 15px;
}

.page-the-thao__card-link {
  display: inline-block;
  color: #FF5A4F;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-the-thao__card-link:hover {
  color: #E53935;
  text-decoration: underline;
}

.page-the-thao__guide-section {
  background-color: #ffffff;
}

.page-the-thao__guide-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-the-thao__guide-step {
  background-color: #F5F7FA;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-the-thao__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-the-thao__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 10px;
}

.page-the-thao__step-text {
  font-size: 0.95rem;
  color: #555555;
}

.page-the-thao__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-the-thao__promo-section {
  background-color: #F5F7FA;
}

.page-the-thao__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-the-thao__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-the-thao__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-the-thao__promo-content {
  padding: 20px;
}

.page-the-thao__promo-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 10px;
}

.page-the-thao__promo-text {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 15px;
}

.page-the-thao__faq-section {
  background-color: #ffffff;
}

.page-the-thao__faq-list {
  max-width: 900px;
  margin: 30px auto 0;
}

.page-the-thao__faq-item {
  background-color: #F5F7FA;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #E0E0E0;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-the-thao__faq-item[open] .page-the-thao__faq-question {
  background-color: #FF5A4F;
  color: #ffffff;
  border-bottom-color: #FF5A4F;
}

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

.page-the-thao__faq-qtext {
  flex-grow: 1;
}

.page-the-thao__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-the-thao__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #555555;
  background-color: #F5F7FA;
}

.page-the-thao__cta-final-section {
  background: linear-gradient(90deg, #E53935 0%, #FF5A4F 100%);
  padding: 80px 0;
  text-align: center;
}

.page-the-thao__section-title--light,
.page-the-thao__section-description--light {
  color: #ffffff;
}

.page-the-thao__btn-primary--large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* General image responsiveness */
.page-the-thao img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

  /* HERO Section */
  .page-the-thao__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-the-thao__hero-container {
    flex-direction: column-reverse; /* Image above text */
    padding: 20px 15px;
    gap: 20px;
  }

  .page-the-thao__hero-content {
    padding-left: 0;
    text-align: center;
  }

  .page-the-thao__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

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

  .page-the-thao__hero-cta-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  /* Buttons general mobile */
  .page-the-thao__btn-primary,
  .page-the-thao__btn-secondary,
  .page-the-thao a[class*="button"],
  .page-the-thao a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-the-thao__cta-buttons,
  .page-the-thao__button-group,
  .page-the-thao__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-the-thao__cta-buttons {
    display: flex;
    flex-direction: column; /* Ensure vertical stacking for multiple buttons */
  }

  /* Content Area */
  .page-the-thao__content-area {
    padding: 30px 15px;
  }

  .page-the-thao__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 15px;
  }

  .page-the-thao__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  /* Module 1: Features Section */
  .page-the-thao__features-section {
    padding: 40px 0;
  }

  .page-the-thao__features-grid {
    grid-template-columns: 1fr;
  }

  .page-the-thao__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
  }

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

  /* Popular Sports Section */
  .page-the-thao__popular-sports-section {
    padding: 40px 0;
  }

  .page-the-thao__sports-grid {
    grid-template-columns: 1fr;
  }

  .page-the-thao__sport-card img {
    
  }

  .page-the-thao__sport-title {
    font-size: 1.2rem;
  }

  /* Guide Section */
  .page-the-thao__guide-section {
    padding: 40px 0;
  }

  .page-the-thao__guide-steps-grid {
    grid-template-columns: 1fr;
  }

  .page-the-thao__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .page-the-thao__step-title {
    font-size: 1.2rem;
  }

  /* Promo Section */
  .page-the-thao__promo-section {
    padding: 40px 0;
  }

  .page-the-thao__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-the-thao__promo-card img {
    
  }

  .page-the-thao__promo-title {
    font-size: 1.2rem;
  }

  /* FAQ Section */
  .page-the-thao__faq-section {
    padding: 40px 0;
  }

  .page-the-thao__faq-list {
    margin-top: 20px;
  }

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

  .page-the-thao__faq-toggle {
    font-size: 1.5rem;
  }

  .page-the-thao__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95rem;
  }

  /* Final CTA Section */
  .page-the-thao__cta-final-section {
    padding: 50px 0;
  }

  .page-the-thao__btn-primary--large {
    font-size: 1rem;
    padding: 12px 24px;
  }

  /* Global image overrides for mobile */
  .page-the-thao img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-the-thao__section,
  .page-the-thao__card,
  .page-the-thao__container,
  .page-the-thao__feature-card,
  .page-the-thao__sport-card,
  .page-the-thao__guide-step,
  .page-the-thao__promo-card,
  .page-the-thao__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-the-thao__icon-box-media {
    width: 180px; /* Maintain square aspect ratio */
    height: 180px;
    margin: 0 auto 15px;
  }
}