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

.page-the-thao__hero-section {
  padding-top: 10px; /* Rely on body padding-top from shared, add small top padding */
  padding-bottom: 60px;
  background-color: #B71C1C; /* Background */
}

.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 50%;
  min-width: 300px;
  text-align: left;
}

.page-the-thao__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 20px;
}

.page-the-thao__intro-text {
  font-size: 1.1rem;
  color: #FFF5E1;
  margin-bottom: 30px;
}

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

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #333333; /* Dark text for contrast on gold button */
  border: none;
}

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

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

.page-the-thao__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.page-the-thao__side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-the-thao__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #B71C1C; /* Background */
}

.page-the-thao__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #FFF5E1; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
}

.page-the-thao__section-description {
  font-size: 1.1rem;
  color: #FFF5E1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-the-thao__feature-item,
.page-the-thao__sport-card,
.page-the-thao__promo-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-the-thao__feature-icon,
.page-the-thao__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao__feature-title,
.page-the-thao__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 15px;
}

.page-the-thao__feature-item p,
.page-the-thao__sport-card p,
.page-the-thao__promo-card p {
  color: #FFF5E1;
  font-size: 1rem;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-the-thao__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #333333; /* Dark text for contrast */
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

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

.page-the-thao__full-width-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 30px auto;
  display: block;
}

.page-the-thao__text-block {
  font-size: 1.1rem;
  color: #FFF5E1;
  margin-bottom: 30px;
  text-align: center;
}

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

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

.page-the-thao__step-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

.page-the-thao__step-item p {
  color: #FFF5E1;
  font-size: 1rem;
}

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

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

.page-the-thao__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFF5E1; /* Text Main */
  position: relative;
}

.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.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #F4D34D; /* Gold */
}

.page-the-thao__faq-item[open] .page-the-thao__faq-toggle {
  content: '−';
}

.page-the-thao__faq-answer {
  padding: 0 20px 20px;
  color: #FFF5E1;
  font-size: 1rem;
  line-height: 1.5;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-the-thao__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 40px;
  }

  .page-the-thao__hero-container {
    flex-direction: column;
    padding: 20px 15px;
  }

  .page-the-thao__hero-content {
    text-align: center;
    flex: 1 1 100%;
  }

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

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

  .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-primary,
  .page-the-thao__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-the-thao__hero-image {
    flex: 1 1 100%;
    order: -1; /* Image above text on mobile */
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-the-thao__side-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

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

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

  .page-the-thao__features-grid,
  .page-the-thao__sports-grid,
  .page-the-thao__promo-grid,
  .page-the-thao__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-the-thao__feature-item,
  .page-the-thao__sport-card,
  .page-the-thao__promo-card,
  .page-the-thao__step-item {
    padding: 25px;
  }

  .page-the-thao__feature-icon,
  .page-the-thao__card-image,
  .page-the-thao__full-width-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-the-thao__feature-item p,
  .page-the-thao__sport-card p,
  .page-the-thao__promo-card p,
  .page-the-thao__step-item p,
  .page-the-thao__text-block {
    font-size: 0.9rem;
  }

  .page-the-thao__card-button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .page-the-thao__cta-center {
    margin-top: 30px;
  }

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

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