.page-the-thao {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg-color: #17191F;
  --background-color: #0D0E12;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for the page */
  background-color: var(--background-color);
}

.page-the-thao__hero-section {
  padding-top: 10px; /* Small top padding, assuming body padding-top is handled by shared.css */
  padding-bottom: 60px;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
}

.page-the-thao__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  gap: 30px;
}

.page-the-thao__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: var(--text-main-color);
}

.page-the-thao__main-title {
  font-size: 3.2em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 600px;
}

.page-the-thao__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-main-color);
  max-width: 550px;
}

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

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary,
.page-the-thao__btn-tertiary,
.page-the-thao__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-the-thao__btn-primary:hover {
  background: linear-gradient(180deg, var(--deep-orange-color) 0%, var(--secondary-color) 100%);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
  transform: translateY(-2px);
}

.page-the-thao__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.2);
}

.page-the-thao__btn-secondary:hover {
  background-color: rgba(255, 140, 26, 0.1);
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 0 6px 15px rgba(255, 140, 26, 0.4);
  transform: translateY(-2px);
}

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

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

.page-the-thao__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-the-thao__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-the-thao__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--text-main-color);
}

/* Intro Section */
.page-the-thao__intro-section {
  background-color: var(--background-color);
  padding: 40px 0;
}

.page-the-thao__features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.page-the-thao__feature-item {
  flex: 1 1 calc(33% - 30px);
  min-width: 280px;
  background-color: var(--card-bg-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.page-the-thao__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-the-thao__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  box-shadow: 0 0 15px rgba(255, 140, 26, 0.6);
  background-color: var(--card-bg-color);
}

.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: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-the-thao__feature-text {
  font-size: 1em;
  color: var(--text-main-color);
}

/* Sports Types Section */
.page-the-thao__sports-types-section {
  background-color: var(--card-bg-color);
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.page-the-thao__sport-card {
  background-color: var(--background-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-the-thao__sport-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-the-thao__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-the-thao__card-title {
  font-size: 1.8em;
  font-weight: bold;
  padding: 15px 20px 10px;
  color: var(--primary-color);
}

.page-the-thao__card-text {
  font-size: 1em;
  padding: 0 20px 20px;
  color: var(--text-main-color);
  flex-grow: 1;
}

.page-the-thao__btn-tertiary {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 0 0 12px 12px;
  text-align: center;
  display: block;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border-top: 1px solid var(--border-color);
}

.page-the-thao__btn-tertiary:hover {
  background-color: var(--secondary-color);
}

/* Guide Section */
.page-the-thao__guide-section {
  background-color: var(--background-color);
  padding: 40px 0;
}

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

.page-the-thao__step-item {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-the-thao__step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-the-thao__step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(255, 140, 26, 0.5);
}

.page-the-thao__step-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-the-thao__step-text {
  font-size: 1em;
  color: var(--text-main-color);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-the-thao__btn-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  position: relative;
  padding-bottom: 3px;
}

.page-the-thao__btn-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.page-the-thao__btn-link:hover::after {
  transform: scaleX(1);
}

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

/* Promotions Section */
.page-the-thao__promotions-section {
  background-color: var(--card-bg-color);
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.page-the-thao__promo-card {
  background-color: var(--background-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-the-thao__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

/* Reusing card-image, card-title, card-text from sports-card */

/* FAQ Section */
.page-the-thao__faq-section {
  background-color: var(--background-color);
  padding: 40px 0;
}

.page-the-thao__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao__faq-item {
  background-color: var(--card-bg-color);
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.page-the-thao__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  background-color: var(--card-bg-color);
  transition: background-color 0.3s ease;
}

.page-the-thao__faq-item summary:hover {
  background-color: rgba(255, 140, 26, 0.1);
}

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

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

.page-the-thao__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--secondary-color);
  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: 1em;
  color: var(--text-main-color);
  border-top: 1px solid var(--border-color);
  background-color: var(--background-color);
}

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

/* Final CTA Section */
.page-the-thao__cta-final-section {
  background-color: var(--primary-color);
  padding: 60px 0;
  text-align: center;
}

.page-the-thao__cta-final-content {
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.page-the-thao__cta-final-content .page-the-thao__section-title {
  color: #ffffff;
}

.page-the-thao__cta-final-content .page-the-thao__section-description {
  color: #ffffff;
  margin-bottom: 40px;
}

.page-the-thao__cta-final-section .page-the-thao__btn-primary {
  background: #ffffff;
  color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-the-thao__cta-final-section .page-the-thao__btn-primary:hover {
  background: #f0f0f0;
  color: var(--deep-orange-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Global image and container responsive styles */
.page-the-thao img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-the-thao__section,
.page-the-thao__card,
.page-the-thao__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
  .page-the-thao {
    font-size: 15px;
  }

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

  .page-the-thao__hero-container {
    flex-direction: column;
    padding: 20px 15px;
    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: 2.2em;
    text-align: center;
    max-width: 100%;
  }

  .page-the-thao__hero-description {
    font-size: 1em;
    text-align: center;
    max-width: 100%;
  }

  .page-the-thao__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-the-thao__btn-primary,
  .page-the-thao__btn-secondary,
  .page-the-thao__btn-tertiary,
  .page-the-thao__btn-link {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Section Titles & Descriptions */
  .page-the-thao__section-title {
    font-size: 1.8em;
  }

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

  .page-the-thao__content-area {
    padding: 30px 15px;
  }

  /* Module 1 (Intro Section) */
  .page-the-thao__features-grid {
    gap: 20px;
  }

  .page-the-thao__feature-item {
    flex: 1 1 100%;
    min-width: unset;
    padding: 25px;
  }

  .page-the-thao__icon-box-media {
    width: 150px;
    height: 150px;
    border-width: 3px;
    margin-bottom: 15px;
  }
  
  .page-the-thao__icon-box-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .page-the-thao__feature-title {
    font-size: 1.5em;
  }

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

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

  .page-the-thao__card-title {
    font-size: 1.5em;
  }

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

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

  .page-the-thao__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-the-thao__step-title {
    font-size: 1.3em;
  }

  .page-the-thao__cta-bottom {
    margin-top: 40px;
  }

  /* Promotions Section */
  .page-the-thao__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* FAQ Section */
  .page-the-thao__faq-item summary {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-the-thao__faq-toggle {
    font-size: 1.3em;
  }

  .page-the-thao__faq-answer {
    padding: 10px 20px 15px;
  }

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

  .page-the-thao__cta-final-content .page-the-thao__section-description {
    margin-bottom: 30px;
  }

  /* General image and container rules 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__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;
    overflow: hidden !important;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .page-the-thao__hero-container {
    padding: 30px 25px;
    gap: 25px;
  }

  .page-the-thao__main-title {
    font-size: 2.8em;
  }

  .page-the-thao__hero-description {
    font-size: 1.1em;
  }

  .page-the-thao__section-title {
    font-size: 2.2em;
  }

  .page-the-thao__content-area {
    padding: 50px 25px;
  }

  .page-the-thao__features-grid,
  .page-the-thao__sports-grid,
  .page-the-thao__guide-steps,
  .page-the-thao__promo-grid {
    gap: 25px;
  }

  .page-the-thao__feature-item {
    flex: 1 1 calc(50% - 25px);
    min-width: unset;
  }

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

  .page-the-thao__faq-list {
    max-width: 768px;
  }

  .page-the-thao__faq-item summary {
    font-size: 1.15em;
  }

  .page-the-thao__cta-buttons {
    justify-content: center;
  }
}