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

.page-the-thao__hero-section {
  padding-top: 10px; /* Small top padding as shared.css handles body padding */
  padding-bottom: 60px;
  background-color: #140C0C;
}

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

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

.page-the-thao__hero-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  max-width: 600px;
}

.page-the-thao__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF1E8;
  max-width: 600px;
}

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

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C; /* Dark text for bright button */
  border: none;
}

.page-the-thao__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-the-thao__btn-secondary {
  background-color: transparent;
  color: #F3C54D; /* Gold */
  border: 2px solid #F3C54D; /* Gold border */
}

.page-the-thao__btn-secondary:hover {
  background-color: #F3C54D;
  color: #140C0C; /* Dark text on hover */
  transform: translateY(-2px);
}

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

.page-the-thao__main-visual {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

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

.page-the-thao__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-the-thao__intro-section p,
.page-the-thao__tips-section p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #FFF1E8;
}

.page-the-thao__sports-categories-section {
  padding-bottom: 60px;
}

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

.page-the-thao__category-card {
  background-color: #2A1212; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

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

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

.page-the-thao__card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #F3C54D; /* Gold */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-the-thao__card-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #FFF1E8;
  padding: 0 15px;
}

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

.page-the-thao__dark-section {
  background-color: #2A1212; /* Card BG as background for dark sections */
  padding: 60px 0;
}

.page-the-thao__dark-section .page-the-thao__section-title {
  color: #F3C54D; /* Gold */
}

.page-the-thao__dark-section p {
  color: #FFF1E8;
}

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

.page-the-thao__feature-item {
  text-align: center;
  padding: 25px;
  background-color: #140C0C; /* Background */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-the-thao__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 50%; /* Make icons round */
}

.page-the-thao__feature-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #F3C54D; /* Gold */
  margin-bottom: 10px;
}

.page-the-thao__feature-item p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #FFF1E8;
}

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

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

.page-the-thao__guide-step {
  background-color: #2A1212; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-the-thao__step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C; /* Dark text */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  margin: 0 auto 20px;
}

.page-the-thao__step-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
}

.page-the-thao__guide-step p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #FFF1E8;
  margin-bottom: 15px;
}

.page-the-thao__btn-text {
  color: #FFB04A; /* Gold gradient start */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.page-the-thao__btn-text:hover {
  color: #D86A14; /* Gold gradient end */
}

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

.page-the-thao__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  color: #FFF1E8;
}

.page-the-thao__tips-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-the-thao__list-marker {
  color: #F3C54D; /* Gold */
  font-size: 1.2em;
  margin-right: 10px;
  flex-shrink: 0;
}

.page-the-thao__tips-list p {
  margin: 0;
}

.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: #140C0C; /* Background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
}

.page-the-thao__promo-card .page-the-thao__card-image {
  height: 220px;
}

.page-the-thao__promo-card .page-the-thao__card-title {
  font-size: 1.4em;
}

.page-the-thao__promo-card .page-the-thao__card-description {
  font-size: 0.9em;
  margin-bottom: 20px;
}

.page-the-thao__faq-section {
  padding: 60px 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: #2A1212; /* Card BG */
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F3C54D; /* Gold */
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}

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

.page-the-thao__faq-item[open] .page-the-thao__faq-question {
  background-color: #6A1E1E; /* Deep Red */
}

.page-the-thao__faq-toggle {
  font-size: 1.8em;
  font-weight: 300;
  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: 0 25px 20px;
  font-size: 1em;
  line-height: 1.7;
  color: #FFF1E8;
}

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

.page-the-thao__faq-answer .page-the-thao__btn-secondary {
  margin-top: 15px;
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.9em;
}

.page-the-thao__cta-bottom-section {
  padding: 80px 0;
  text-align: center;
}

.page-the-thao__cta-bottom-section .page-the-thao__content-area {
  background-color: #2A1212; /* Card BG */
  border-radius: 15px;
  padding: 60px 40px;
}

.page-the-thao__cta-bottom-section .page-the-thao__section-title {
  margin-bottom: 25px;
  font-size: 2em;
}

.page-the-thao__cta-bottom-section p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* General 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 {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-the-thao__hero-title {
    font-size: 2.5em;
  }
  .page-the-thao__section-title {
    font-size: 2em;
  }
  .page-the-thao__hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .page-the-thao__hero-content {
    text-align: center;
  }
  .page-the-thao__cta-buttons {
    justify-content: center;
  }
  .page-the-thao__main-visual {
    margin-bottom: 30px;
  }
  .page-the-thao__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-the-thao__category-card .page-the-thao__card-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-the-thao__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-the-thao__hero-container {
    padding: 20px 15px;
    gap: 20px;
  }
  .page-the-thao__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-the-thao__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-the-thao__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-the-thao__btn-primary,
  .page-the-thao__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 0.95em;
  }

  .page-the-thao__content-area {
    padding: 30px 15px;
  }
  .page-the-thao__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  /* Module 1 (Intro/Features - if using icon boxes, ensure square) - currently using blog type images */
  .page-the-thao__feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }
  .page-the-thao__feature-item {
    padding: 20px;
  }

  /* Sports Categories Grid */
  .page-the-thao__category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-the-thao__category-card .page-the-thao__card-image {
    height: 160px; /* Adjust height for mobile cards */
  }
  .page-the-thao__card-title {
    font-size: 1.3em;
  }

  /* Guide Section */
  .page-the-thao__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-the-thao__guide-step {
    padding: 25px;
  }
  .page-the-thao__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  .page-the-thao__step-title {
    font-size: 1.2em;
  }

  /* Tips Section */
  .page-the-thao__tips-list li {
    font-size: 1em;
    line-height: 1.6;
  }

  /* Promo Section */
  .page-the-thao__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-the-thao__promo-card .page-the-thao__card-image {
    height: 180px;
  }

  /* FAQ Section */
  .page-the-thao__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-the-thao__faq-toggle {
    font-size: 1.5em;
  }
  .page-the-thao__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  /* Bottom CTA */
  .page-the-thao__cta-bottom-section {
    padding: 50px 0;
  }
  .page-the-thao__cta-bottom-section .page-the-thao__content-area {
    padding: 40px 20px;
  }
  .page-the-thao__cta-bottom-section .page-the-thao__section-title {
    font-size: 1.8em;
  }
  .page-the-thao__cta-bottom-section p {
    font-size: 1em;
  }

  /* Universal image and container responsive styles 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;
  }
  .page-the-thao__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}