.page-the-thao {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

.page-the-thao__section-padding {
  padding: 60px 0;
}

.page-the-thao__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-the-thao__text-center {
  text-align: center;
}

.page-the-thao__section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.2;
}

.page-the-thao__section-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Hero Section */
.page-the-thao__hero-section {
  padding-top: 10px; /* Small top padding, relying on body padding-top from shared */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #6FA3FF 0%, #F4F7FB 100%); /* Auxiliary to Background */
  color: #1F2D3D;
}

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

.page-the-thao__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-the-thao__main-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-the-thao__description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-the-thao__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

.page-the-thao__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.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-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-the-thao__btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-the-thao__btn-secondary {
  background: #ffffff; /* Card BG */
  color: #2F6BFF; /* Main Color */
  border: 2px solid #2F6BFF; /* Main Color */
}

.page-the-thao__btn-secondary:hover {
  background: #e0eaff; /* Lighter shade of main color */
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.2);
}

.page-the-thao__btn-small {
  padding: 10px 20px;
  font-size: 16px;
}

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

/* Intro Section - Module 1 */
.page-the-thao__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-the-thao__feature-item {
  background: #ffffff; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-the-thao__feature-item:hover {
  transform: translateY(-5px);
}

.page-the-thao__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 5px #A5C4FF; /* Glow */
}

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

.page-the-thao__feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-the-thao__feature-description {
  font-size: 16px;
  color: #1F2D3D;
  line-height: 1.6;
}

/* Sports Types Section */
.page-the-thao__dark-section {
  background: #2F6BFF; /* Main Color */
  color: #ffffff;
}

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

.page-the-thao__sport-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-the-thao__sport-card:hover {
  transform: translateY(-5px);
}

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

.page-the-thao__sport-title {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  padding: 15px 20px 5px;
}

.page-the-thao__sport-description {
  font-size: 15px;
  color: #1F2D3D;
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* Features Detail Section */
.page-the-thao__feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-the-thao__feature-detail-item {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding-bottom: 20px;
}

.page-the-thao__feature-detail-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-the-thao__feature-detail-title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-the-thao__feature-detail-description {
  font-size: 16px;
  color: #1F2D3D;
  line-height: 1.6;
  padding: 0 20px;
}

/* Promo Section */
.page-the-thao__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.page-the-thao__promo-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-the-thao__promo-title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.page-the-thao__promo-description {
  font-size: 16px;
  color: #1F2D3D;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Guide Section */
.page-the-thao__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  counter-reset: guide-step;
}

.page-the-thao__guide-step-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}

.page-the-thao__guide-step-number {
  counter-increment: guide-step;
  font-size: 36px;
  font-weight: 800;
  color: #2F6BFF; /* Main Color */
  position: absolute;
  top: 15px;
  left: 15px;
  opacity: 0.2;
}

.page-the-thao__guide-step-title {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  margin-top: 40px;
}

.page-the-thao__guide-step-description {
  font-size: 16px;
  color: #1F2D3D;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-the-thao__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-the-thao__faq-item {
  background: #ffffff;
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  background: #ffffff;
  position: relative;
  list-style: none;
}

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

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

.page-the-thao__faq-toggle {
  font-size: 24px;
  font-weight: 700;
  color: #2F6BFF;
  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: 0 25px 20px;
  font-size: 16px;
  color: #1F2D3D;
  line-height: 1.6;
}

.page-the-thao__faq-answer p {
  margin-bottom: 10px;
}

.page-the-thao__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Final CTA Section */
.page-the-thao__cta-final-section {
  padding: 80px 0;
  text-align: center;
}

/* General Image styles for content area */
.page-the-thao img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-the-thao__hero-container {
    gap: 30px;
  }

  .page-the-thao__main-title {
    font-size: clamp(32px, 4.5vw, 42px);
  }

  .page-the-thao__description {
    font-size: 17px;
  }

  .page-the-thao__btn-primary,
  .page-the-thao__btn-secondary {
    font-size: 17px;
    padding: 12px 25px;
  }

  .page-the-thao__icon-box-media {
    width: 200px;
    height: 200px;
  }

  .page-the-thao__feature-title {
    font-size: 22px;
  }

  .page-the-thao__sport-image,
  .page-the-thao__feature-detail-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-the-thao__section-padding {
    padding: 40px 0;
  }

  .page-the-thao__container {
    padding: 0 15px;
  }

  .page-the-thao__section-title {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 10px;
  }

  .page-the-thao__section-subtitle {
    font-size: clamp(15px, 3vw, 17px);
    margin-bottom: 30px;
  }

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

  .page-the-thao__hero-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .page-the-thao__hero-content,
  .page-the-thao__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-the-thao__main-title {
    font-size: clamp(28px, 7vw, 38px);
    margin-bottom: 15px;
  }

  .page-the-thao__description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .page-the-thao__cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 15px;
    gap: 10px;
  }

  .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 !important;
    padding-right: 15px !important;
    font-size: 16px !important;
  }

  /* Module 1 - Intro Section */
  .page-the-thao__features-grid {
    grid-template-columns: 1fr;
  }

  .page-the-thao__icon-box-media {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    box-shadow: 0 0 0 4px #A5C4FF;
  }

  .page-the-thao__feature-title {
    font-size: 20px;
  }

  /* Sports Types Section */
  .page-the-thao__sports-grid {
    grid-template-columns: 1fr;
  }

  .page-the-thao__sport-image {
    height: 180px;
  }

  .page-the-thao__sport-title {
    font-size: 20px;
  }

  .page-the-thao__sport-description {
    font-size: 14px;
  }

  /* Features Detail Section */
  .page-the-thao__feature-detail-grid {
    grid-template-columns: 1fr;
  }

  .page-the-thao__feature-detail-image {
    height: 180px;
  }

  .page-the-thao__feature-detail-title {
    font-size: 20px;
  }

  .page-the-thao__feature-detail-description {
    font-size: 15px;
  }

  /* Promo Section */
  .page-the-thao__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-the-thao__promo-title {
    font-size: 20px;
  }

  .page-the-thao__promo-description {
    font-size: 15px;
  }

  /* Guide Section */
  .page-the-thao__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-the-thao__guide-step-item {
    padding: 25px;
  }

  .page-the-thao__guide-step-number {
    font-size: 30px;
    top: 10px;
    left: 10px;
  }

  .page-the-thao__guide-step-title {
    font-size: 20px;
    margin-top: 35px;
  }

  .page-the-thao__guide-step-description {
    font-size: 15px;
  }

  /* FAQ Section */
  .page-the-thao__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .page-the-thao__faq-toggle {
    font-size: 20px;
  }

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

  /* General Image & Container Responsive */
  .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-item,
  .page-the-thao__sport-card,
  .page-the-thao__feature-detail-item,
  .page-the-thao__promo-card,
  .page-the-thao__guide-step-item,
  .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__cta-final-section {
    padding: 60px 0;
  }
}