.page-the-thao {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
}

.page-the-thao__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-the-thao__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF5E1; /* Text Main */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #FFF5E1; /* Text Main */
  max-width: 600px;
  font-size: clamp(2.5em, 5vw, 3.5em);
}

.page-the-thao__hero-section {
  padding-top: 10px; /* Adhere to 10px top padding if body handles --header-offset */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #C91F17 0%, #E53935 100%);
}

.page-the-thao__hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 15px;
  flex-wrap: wrap;
}

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

.page-the-thao__hero-description {
  font-size: 1.1em;
  margin-top: 20px;
  margin-bottom: 30px;
  color: #FFF5E1;
}

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

.page-the-thao__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for contrast on bright button */
  border: 2px solid #F2B544;
}

.page-the-thao__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
}

.page-the-thao__btn-secondary {
  background: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544;
}

.page-the-thao__btn-secondary:hover {
  background: #7A0E0E; /* Deep Red */
}

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

.page-the-thao__hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.page-the-thao__intro-section {
  padding: 60px 0;
  background-color: #B71C1C; /* Background */
}

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

.page-the-thao__icon-box {
  background-color: #D32F2F; /* Card BG */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544;
}

.page-the-thao__icon-box-media {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2B544;
}

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

.page-the-thao__icon-box-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFF5E1; /* Text Main */
}

.page-the-thao__icon-box-description {
  font-size: 1em;
  color: #FFF5E1;
}

.page-the-thao__sports-categories-section {
  padding: 60px 0;
  background-color: #7A0E0E; /* Deep Red */
}

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

.page-the-thao__category-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544;
  display: flex;
  flex-direction: column;
}

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

.page-the-thao__card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-the-thao__card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #FFF5E1; /* Text Main */
}

.page-the-thao__card-description {
  font-size: 0.95em;
  margin-bottom: 20px;
  color: #FFF5E1;
  flex-grow: 1;
}

.page-the-thao__btn-card {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red */
  border: 2px solid #F2B544;
  text-align: center;
  width: fit-content;
  margin-top: auto;
}

.page-the-thao__btn-card:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
}

.page-the-thao__benefits-section {
  padding: 60px 0;
  background-color: #B71C1C; /* Background */
}

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

.page-the-thao__benefit-item {
  background-color: #D32F2F; /* Card BG */
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544;
}

.page-the-thao__benefit-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #FFF5E1; /* Text Main */
}

.page-the-thao__benefit-description {
  font-size: 0.95em;
  color: #FFF5E1;
}

.page-the-thao__guide-section {
  padding: 60px 0;
  background-color: #7A0E0E; /* Deep Red */
}

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

.page-the-thao__guide-item {
  background-color: #D32F2F; /* Card BG */
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544;
  text-align: center;
}

.page-the-thao__guide-media {
  margin-bottom: 20px;
}

.page-the-thao__guide-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.page-the-thao__guide-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFF5E1; /* Text Main */
}

.page-the-thao__guide-description {
  font-size: 1em;
  color: #FFF5E1;
}

.page-the-thao__faq-section {
  padding: 60px 0;
  background-color: #B71C1C; /* Background */
}

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

.page-the-thao__faq-item {
  background-color: #D32F2F; /* Card BG */\  border: 1px solid #F2B544;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #FFF5E1; /* Text Main */
  list-style: none; /* For details/summary */
}

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

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

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

.page-the-thao__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-the-thao__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #FFF5E1;
}

.page-the-thao__cta-section {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, #E53935 0%, #C91F17 100%);
}

.page-the-thao__cta-container {
  padding: 60px 15px;
}

.page-the-thao__cta-description {
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 30px;
  color: #FFF5E1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao__copyright-section {
  padding: 20px 0;
  background-color: #7A0E0E; /* Deep Red */
  text-align: center;
}

.page-the-thao__copyright-text {
  font-size: 0.9em;
  color: #FFCC66; /* Glow */
}

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

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

  .page-the-thao__section-title {
    font-size: 1.8em;
    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;
    padding: 40px 15px;
    gap: 30px;
  }

  .page-the-thao__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
    text-align: center;
  }

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

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

  .page-the-thao__btn,
  .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__hero-image {
    order: -1; /* Move image above content on mobile */
  }

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

  .page-the-thao__intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  /* Sports Categories Section */
  .page-the-thao__sports-categories-section {
    padding: 40px 0;
  }

  .page-the-thao__category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-the-thao__category-img {
    
  }

  .page-the-thao__card-content {
    padding: 15px;
  }

  .page-the-thao__btn-card {
    width: 100%;
  }

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

  .page-the-thao__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

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

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

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

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

  .page-the-thao__cta-container {
    padding: 40px 15px;
  }

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

  /* General image and container responsiveness */
  .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 {
    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: 150px; /* Maintain square aspect ratio */
    height: 150px;
  }
  .page-the-thao__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}