/* Base styles for the Thể Thao page */
.page-the-thao {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Text Main */
  background-color: #F5F7FA; /* Background */
  line-height: 1.6;
}

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

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

.page-the-thao__section {
  padding: 40px 0;
  margin-bottom: 20px;
}

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

.page-the-thao__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #333333;
}

.page-the-thao__content-area {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* HERO Section */
.page-the-thao__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 550px;
  background-color: #E53935;
  color: #ffffff;
}

.page-the-thao__hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.page-the-thao__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Desktop: cover to fill space */
  display: block;
}

.page-the-thao__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  margin: 20px;
  box-sizing: border-box;
}

.page-the-thao__main-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.1;
  color: #ffffff;
}

.page-the-thao__hero-description {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

/* Buttons */
.page-the-thao__btn-primary,
.page-the-thao__btn-secondary,
.page-the-thao__btn-tertiary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  font-size: 16px;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-the-thao__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-the-thao__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-the-thao__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-the-thao__btn-tertiary {
  background: #E53935;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 15px;
}

.page-the-thao__btn-tertiary:hover {
  background: #FF5A4F;
}

.page-the-thao__btn-large {
  padding: 18px 40px;
  font-size: 18px;
}

.page-the-thao__btn-center {
  display: block;
  margin: 30px auto 0;
  max-width: 300px;
}

.page-the-thao__cta-buttons--center {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

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

.page-the-thao__sport-card {
  background: #ffffff; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-the-thao__sport-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-the-thao__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #E53935;
  margin: 0 20px 15px;
  line-height: 1.3;
}

.page-the-thao__sport-card p {
  font-size: 15px;
  color: #333333;
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-the-thao__benefit-item {
  text-align: center;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.page-the-thao__benefit-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao__item-title {
  font-size: 20px;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 10px;
}

.page-the-thao__benefit-item p {
  font-size: 15px;
  color: #333333;
}

/* Guide Section */
.page-the-thao__guide-list {
  list-style: none;
  counter-reset: guide-counter;
  padding: 0;
  margin: 30px 0;
}

.page-the-thao__guide-list li {
  counter-increment: guide-counter;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  font-size: 17px;
  color: #333333;
}

.page-the-thao__guide-list li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: #E53935;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.page-the-thao__guide-list li strong {
  color: #E53935;
}

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

.page-the-thao__promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-the-thao__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-the-thao__promo-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #E53935;
  margin: 0 20px 15px;
  line-height: 1.3;
}

.page-the-thao__promo-card p {
  font-size: 15px;
  color: #333333;
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* FAQ Section */
details.page-the-thao__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #E0E0E0; /* Border */
  overflow: hidden;
  background: #ffffff; /* Card BG */
}
details.page-the-thao__faq-item summary.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-the-thao__faq-item summary.page-the-thao__faq-question::-webkit-details-marker {
  display: none;
}
details.page-the-thao__faq-item summary.page-the-thao__faq-question:hover {
  background: #f5f5f5;
}
.page-the-thao__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-the-thao__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-the-thao__faq-item .page-the-thao__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #333333;
}

/* Call to Action Footer */
.page-the-thao__call-to-action-footer {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  margin-top: 40px;
}

.page-the-thao__call-to-action-footer .page-the-thao__section-title {
  color: #ffffff;
  margin-bottom: 15px;
}

.page-the-thao__call-to-action-footer .page-the-thao__section-description {
  color: #f0f0f0;
  font-size: 18px;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-the-thao__container {
    padding: 0 15px;
  }

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

  .page-the-thao__hero-description {
    font-size: clamp(16px, 1.8vw, 20px);
  }

  .page-the-thao__section-title {
    font-size: clamp(26px, 3.5vw, 34px);
  }

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

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

  .page-the-thao__btn-large {
    padding: 16px 35px;
    font-size: 17px;
  }

  .page-the-thao__sport-card img {
    height: 200px;
  }

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

  .page-the-thao__promo-card img {
    
  }

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

@media (max-width: 768px) {
  /* HERO Section mobile */
  .page-the-thao__hero-section {
    min-height: 450px;
    padding-top: 10px;
    margin-bottom: 20px;
  }

  .page-the-thao__hero-image img {
    object-fit: contain !important; /* Mobile: contain to show full image, prevent cropping */
    aspect-ratio: unset !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-the-thao__hero-content {
    padding: 20px 15px;
    margin: 10px;
  }

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

  .page-the-thao__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  /* General content area & containers mobile */
  .page-the-thao__section {
    padding: 30px 0;
    margin-bottom: 15px;
  }

  .page-the-thao__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-the-thao__section-title {
    font-size: clamp(24px, 7vw, 30px);
    margin-bottom: 15px;
  }

  .page-the-thao__section-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .page-the-thao__content-area {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .page-the-thao__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  /* Buttons mobile */
  .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 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;
    font-size: 15px;
  }

  .page-the-thao__btn-large {
    font-size: 16px;
    padding: 14px 25px;
  }

  .page-the-thao__btn-center {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

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

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

  .page-the-thao__sport-card img {
    
  }

  .page-the-thao__card-title {
    font-size: 18px;
  }

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

  /* Benefits Grid mobile */
  .page-the-thao__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-the-thao__item-title {
    font-size: 18px;
  }

  /* Guide List mobile */
  .page-the-thao__guide-list li {
    font-size: 15px;
    padding-left: 35px;
  }

  .page-the-thao__guide-list li::before {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

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

  .page-the-thao__promo-card img {
    
  }

  .page-the-thao__promo-card h3 {
    font-size: 18px;
  }

  .page-the-thao__promo-card p {
    font-size: 14px;
  }

  /* FAQ mobile */
  details.page-the-thao__faq-item summary.page-the-thao__faq-question { padding: 15px; }
  .page-the-thao__faq-qtext { font-size: 15px; }
  details.page-the-thao__faq-item .page-the-thao__faq-answer {
    padding: 0 15px 15px;
  }

  /* Call to Action Footer mobile */
  .page-the-thao__call-to-action-footer {
    padding: 40px 0;
  }

  .page-the-thao__call-to-action-footer .page-the-thao__section-title {
    font-size: clamp(24px, 7vw, 30px);
  }

  .page-the-thao__call-to-action-footer .page-the-thao__section-description {
    font-size: 16px;
  }
}

/* Ensure all content images meet minimum size requirements */
.page-the-thao img:not(.page-the-thao__benefit-item img) {
  min-width: 200px;
  min-height: 200px;
}

.page-the-thao__benefit-item img {
  min-
  min-
}

/* Color contrast fixes if needed */
.page-the-thao__dark-bg {
  color: #ffffff; /* Deep background with light text */
  background: #E53935;
}

.page-the-thao__light-bg {
  color: #333333; /* Light background with dark text */
  background: #ffffff;
}