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

.page-the-thao__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-the-thao__section-title {
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color for titles */
  line-height: 1.2;
}

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

/* Buttons */
.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for light button */
}

.page-the-thao__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-the-thao__btn-secondary {
  background-color: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E;
}

.page-the-thao__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

/* Image defaults */
.page-the-thao img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

/* HERO Section */
.page-the-thao__hero-section {
  padding-top: 10px;
  padding-bottom: 60px;
  background-color: #0A0A0A;
}

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

.page-the-thao__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
}

.page-the-thao__hero-title {
  font-size: 3.8em;
  font-weight: 800;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color */
  line-height: 1.1;
}

.page-the-thao__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-the-thao__hero-cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

/* Intro Section */
.page-the-thao__intro-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-the-thao__feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.page-the-thao__feature-item {
  flex: 1 1 30%;
  min-width: 280px;
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-the-thao__icon-box-media {
  width: 180px;
  height: 180px;
  aspect-ratio: 1/1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2C14E;
}

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

.page-the-thao__feature-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #F2C14E;
}

.page-the-thao__feature-text {
  font-size: 1em;
  color: #FFF6D6;
}

/* Sports Section */
.page-the-thao__sports-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-the-thao__sport-category {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-the-thao__sport-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow color */
}

.page-the-thao__sport-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-the-thao__sport-text {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #FFF6D6;
}

/* Advantages Section */
.page-the-thao__advantages-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-the-thao__advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

.page-the-thao__advantages-list li {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.1em;
  color: #FFF6D6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-the-thao__advantages-list li img {
  
  
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid #F2C14E;
}

.page-the-thao__advantages-list li strong {
  color: #F2C14E;
}

/* Guide Section */
.page-the-thao__guide-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

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

.page-the-thao__step-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-the-thao__step-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFD36B; /* Glow color */
}

.page-the-thao__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-the-thao__step-text {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 20px;
}

/* Promo Section */
.page-the-thao__promo-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-the-thao__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 40px auto;
}

.page-the-thao__promo-cta {
  text-align: center;
}

/* FAQ Section */
.page-the-thao__faq-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-the-thao__faq-list {
  margin-top: 40px;
}

.page-the-thao__faq-item {
  background-color: #111111; /* Card BG */\  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-the-thao__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2C14E;
  list-style: none;
  user-select: none;
}

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

.page-the-thao__faq-question .page-the-thao__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFD36B;
  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: 1.1em;
  color: #FFF6D6;
}

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

.page-the-thao__faq-answer a {
  color: #FFD36B;
  text-decoration: underline;
}

/* Final CTA Section */
.page-the-thao__cta-final {
  padding: 60px 0;
  text-align: center;
  background-color: #0A0A0A;
}

.page-the-thao__final-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-the-thao__hero-title {
    font-size: 3em;
  }

  .page-the-thao__section-title {
    font-size: 2.5em;
  }

  .page-the-thao__advantages-list {
    grid-template-columns: 1fr;
  }
}

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

  /* HERO Section */
  .page-the-thao__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

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

  .page-the-thao__hero-content {
    order: 2;
    text-align: center;
    width: 100%;
  }

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

  .page-the-thao__hero-title {
    font-size: 2.5em;
  }

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

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

  /* Buttons - Mobile Specific */
  .page-the-thao__btn-primary,
  .page-the-thao__btn-secondary {
    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;
  }

  /* General containers and text */
  .page-the-thao__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-the-thao__section-title {
    font-size: 2em;
  }

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

  /* Intro Section - Feature Grid */
  .page-the-thao__feature-grid {
    flex-direction: column;
    gap: 20px;
  }

  .page-the-thao__feature-item {
    min-width: unset;
    width: 100%;
    padding: 20px;
  }

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

  .page-the-thao__feature-title {
    font-size: 1.5em;
  }

  /* Sports Section */
  .page-the-thao__sport-category {
    padding: 20px;
    margin-bottom: 30px;
  }

  .page-the-thao__sport-title {
    font-size: 1.8em;
  }

  /* Advantages Section */
  .page-the-thao__advantages-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-the-thao__advantages-list li {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .page-the-thao__advantages-list li img {
    margin-bottom: 15px;
  }

  /* Guide Section */
  .page-the-thao__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-the-thao__step-item {
    padding: 20px;
  }

  .page-the-thao__step-title {
    font-size: 1.5em;
  }

  /* Promo Section */
  .page-the-thao__promo-image {
    margin: 30px auto;
  }

  /* FAQ Section */
  .page-the-thao__faq-item summary {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-the-thao__faq-answer {
    padding: 0 20px 15px;
    font-size: 1em;
  }

  /* Final CTA Section */
  .page-the-thao__final-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  /* General image 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,
  .page-the-thao__hero-cta-buttons,
  .page-the-thao__final-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}