.page-the-thao {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #F5F7FA; /* Default background for the page content */
}

.page-the-thao__hero-section {
  padding-top: 10px; /* Adjusted for shared header padding */
  padding-bottom: 60px;
  background: #F5F7FA;
  color: #333333;
}

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

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

.page-the-thao__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #E53935;
}

.page-the-thao__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333333;
}

.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: 600;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

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

.page-the-thao__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
}

.page-the-thao__btn-secondary:hover {
  background: #E53935;
  color: #ffffff;
}

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

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

.page-the-thao__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 60px 16px;
}

.page-the-thao__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #E53935;
}

.page-the-thao__text-block {
  font-size: 1.05rem;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-the-thao__background-section {
  background-color: #F5F7FA;
}

.page-the-thao__intro-section .page-the-thao__text-block {
  margin-bottom: 60px;
}

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

.page-the-thao__feature-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-the-thao__icon-box-media {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E53935;
}

.page-the-thao__icon-box-media img {
  
  
  object-fit: contain;
  display: block;
  border-radius: 0; /* Not 50% for the image itself */
}

.page-the-thao__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #E53935;
}

.page-the-thao__feature-description {
  font-size: 1rem;
  color: #555555;
}

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

.page-the-thao__category-card,
.page-the-thao__promo-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

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

.page-the-thao__card-description {
  font-size: 0.95rem;
  color: #555555;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-the-thao__btn-text {
  display: inline-block;
  color: #E53935;
  text-decoration: none;
  font-weight: 600;
  padding: 0 20px 20px;
  transition: color 0.3s ease;
}

.page-the-thao__btn-text:hover {
  color: #FF5A4F;
}

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

.page-the-thao__step-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-the-thao__step-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-the-thao__step-description {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-the-thao__step-item .page-the-thao__btn-primary {
  width: auto;
  padding: 10px 20px;
  font-size: 0.95rem;
}

.page-the-thao__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-the-thao__benefits-list li {
  background: #ffffff;
  border-left: 5px solid #E53935;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  font-size: 1.05rem;
  color: #333333;
}

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

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

.page-the-thao__faq-item {
  background: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

.page-the-thao__faq-question:hover {
  background-color: #f9f9f9;
}

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

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

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

.page-the-thao__cta-section {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  padding: 80px 16px;
  text-align: center;
  color: #ffffff;
}

.page-the-thao__cta-content {
  max-width: 900px;
}

.page-the-thao__section-title--white {
  color: #ffffff;
}

.page-the-thao__text-block--white {
  color: #f0f0f0;
}

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

.page-the-thao__btn-primary--white {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #ffffff;
}

.page-the-thao__btn-primary--white:hover {
  background: #E53935;
  color: #ffffff;
  border-color: #ffffff;
}

.page-the-thao__btn-secondary--white {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-the-thao__btn-secondary--white:hover {
  background: #ffffff;
  color: #E53935;
}

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

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-the-thao__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-the-thao__hero-content {
    order: 2;
  }

  .page-the-thao__hero-image {
    order: 1;
    margin-bottom: 30px;
  }

  .page-the-thao__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-the-thao__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }

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

@media (max-width: 768px) {
  .page-the-thao__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-the-thao__hero-container {
    padding: 30px 15px;
    gap: 30px;
  }

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

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

  .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;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-the-thao__content-area {
    padding: 40px 15px;
  }

  .page-the-thao__section-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
    margin-bottom: 25px;
  }

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

  /* Módul 1: Ba cột hình tròn */
  .page-the-thao__features-grid {
    grid-template-columns: 1fr;
  }

  .page-the-thao__icon-box-media {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    background-color: #E53935;
  }
  
  .page-the-thao__icon-box-media img {
    
    
    object-fit: contain;
  }

  .page-the-thao__feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .page-the-thao__feature-description {
    font-size: 0.9rem;
  }

  /* Các danh mục thể thao và khuyến mãi */
  .page-the-thao__categories-grid,
  .page-the-thao__promo-grid,
  .page-the-thao__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-the-thao__category-card,
  .page-the-thao__promo-card,
  .page-the-thao__step-item {
    padding: 20px;
  }

  .page-the-thao__category-image,
  .page-the-thao__promo-image,
  .page-the-thao__step-image {
    height: 180px;
  }

  .page-the-thao__card-title,
  .page-the-thao__step-title {
    font-size: 1.2rem;
    margin: 15px 15px 8px;
  }

  .page-the-thao__card-description,
  .page-the-thao__step-description {
    font-size: 0.9rem;
    padding: 0 15px 15px;
  }

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

  /* Danh sách lợi ích */
  .page-the-thao__benefits-list li {
    font-size: 0.95rem;
    padding: 15px;
    margin-bottom: 10px;
  }

  /* FAQ */
  .page-the-thao__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

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

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

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

  /* General images for content area */
  .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__hero-container,
  .page-the-thao__content-area,
  .page-the-thao__cta-buttons,
  .page-the-thao__features-grid,
  .page-the-thao__categories-grid,
  .page-the-thao__promo-grid,
  .page-the-thao__guide-steps,
  .page-the-thao__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-the-thao__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}