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

.page-the-thao__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #7A0E0E; /* Deep Red */
}

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

.page-the-thao__hero-content {
  flex: 1 1 500px;
  max-width: 600px;
  text-align: left;
}

.page-the-thao__hero-title {
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD86A; /* Gold gradient start */
  max-width: 550px; /* Constraint for H1 */
}

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

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

.page-the-thao__hero-image {
  flex: 1 1 400px;
  text-align: center;
}

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

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  transition: all 0.3s ease;
  display: inline-block;
  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, #FFD86A 0%, #E6B800 100%); /* Button Gold */
  color: #7A0E0E; /* Deep Red for text */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-the-thao__btn-secondary {
  background: #C91F17; /* Main Red */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544; /* Border Gold */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-the-thao__btn-secondary:hover {
  background: #E53935; /* Auxiliary Red */
  border-color: #FFCC66; /* Glow */
  transform: translateY(-2px);
}

.page-the-thao__intro-section {
  padding: 80px 20px;
  background-color: #B71C1C; /* Background */
  text-align: center;
}

.page-the-thao__intro-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-the-thao__intro-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD86A;
}

.page-the-thao__intro-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #FFF5E1;
}

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

.page-the-thao__feature-item {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #D32F2F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-the-thao__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F4D34D; /* Gold */
  box-shadow: 0 0 15px rgba(255, 204, 102, 0.7); /* Glow */
}

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

.page-the-thao__feature-heading {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD86A;
}

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

.page-the-thao__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #7A0E0E; /* Deep Red */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-the-thao__content-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 25px;
  color: #FFD86A;
  text-align: center;
}

.page-the-thao__content-subtitle {
  font-size: 2em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #F4D34D; /* Gold */
}

.page-the-thao__content-paragraph {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #FFF5E1;
}

.page-the-thao__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-the-thao__sport-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-the-thao__sport-item {
  font-size: 1.05em;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #FFF5E1;
}

.page-the-thao__sport-item::before {
  content: '★';
  color: #F4D34D; /* Gold */
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

.page-the-thao__promo-section {
  padding: 80px 20px;
  background-color: #B71C1C; /* Background */
  text-align: center;
}

.page-the-thao__promo-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-the-thao__promo-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD86A;
}

.page-the-thao__promo-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #FFF5E1;
}

.page-the-thao__promo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.page-the-thao__promo-card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #D32F2F; /* Card BG */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-the-thao__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-the-thao__promo-card-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFD86A;
}

.page-the-thao__promo-card-text {
  font-size: 1em;
  color: #FFF5E1;
  flex-grow: 1;
}

.page-the-thao__promo-cta {
  margin-top: 30px;
}

.page-the-thao__faq-section {
  padding: 80px 20px;
  background-color: #7A0E0E; /* Deep Red */
}

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

.page-the-thao__faq-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 40px;
  color: #FFD86A;
  text-align: center;
}

.page-the-thao__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-the-thao__faq-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  color: #FFF5E1;
}

.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  color: #F4D34D; /* Gold */
  position: relative;
  list-style: none;
}

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

.page-the-thao__faq-item[open] .page-the-thao__faq-question {
  background-color: #C91F17; /* Main Red */
  border-bottom: 1px solid #7A0E0E;
}

.page-the-thao__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  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: 15px 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #FFF5E1;
  background-color: #D32F2F;
}

.page-the-thao__cta-bottom-section {
  padding: 80px 20px;
  background-color: #B71C1C; /* Background */
  text-align: center;
}

.page-the-thao__cta-bottom-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-the-thao__cta-bottom-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD86A;
}

.page-the-thao__cta-bottom-description {
  font-size: 1.15em;
  margin-bottom: 40px;
  color: #FFF5E1;
}

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

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

/* Media Queries */
@media (max-width: 1024px) {
  .page-the-thao__hero-title {
    font-size: 2.8em;
  }
  .page-the-thao__intro-title,
  .page-the-thao__content-title,
  .page-the-thao__promo-title,
  .page-the-thao__faq-title,
  .page-the-thao__cta-bottom-title {
    font-size: 2.2em;
  }
  .page-the-thao__feature-item,
  .page-the-thao__promo-card {
    flex-basis: 45%;
  }
  .page-the-thao__hero-container {
    padding: 30px 15px;
  }
  .page-the-thao__hero-content {
    text-align: center;
  }
  .page-the-thao__hero-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-the-thao__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-the-thao__hero-container {
    flex-direction: column;
    padding: 20px 15px;
    gap: 30px;
  }
  .page-the-thao__hero-title {
    font-size: 2.2em; /* Adjusted for mobile */
    max-width: 100%;
    margin-bottom: 15px;
  }
  .page-the-thao__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-the-thao__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-the-thao__btn-primary,
  .page-the-thao__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-the-thao__hero-image {
    order: -1; /* Image appears above content on mobile */
    width: 100%;
  }
  .page-the-thao__hero-side-image {
    width: 100%;
    height: auto;
  }

  .page-the-thao__intro-section,
  .page-the-thao__promo-section,
  .page-the-thao__faq-section,
  .page-the-thao__cta-bottom-section {
    padding: 40px 15px;
  }

  .page-the-thao__intro-title,
  .page-the-thao__content-title,
  .page-the-thao__promo-title,
  .page-the-thao__faq-title,
  .page-the-thao__cta-bottom-title {
    font-size: 1.8em; /* Adjusted for mobile */
    margin-bottom: 15px;
  }

  .page-the-thao__intro-description,
  .page-the-thao__promo-description,
  .page-the-thao__cta-bottom-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-the-thao__feature-grid,
  .page-the-thao__promo-grid {
    flex-direction: column;
    gap: 20px;
  }

  .page-the-thao__feature-item,
  .page-the-thao__promo-card {
    max-width: 100%;
    padding: 20px;
  }
  
  .page-the-thao__icon-box-media {
    width: 180px;
    height: 180px;
    margin-bottom: 15px;
  }

  .page-the-thao__feature-heading {
    font-size: 1.4em;
  }

  .page-the-thao__content-area {
    padding: 40px 15px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .page-the-thao__content-subtitle {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-the-thao__content-paragraph,
  .page-the-thao__sport-item,
  .page-the-thao__promo-card-text,
  .page-the-thao__faq-answer {
    font-size: 0.95em;
  }

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

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

  /* Universal image responsiveness 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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Specific override for circular images in intro section */
  .page-the-thao__icon-box-media img {
    height: 100% !important;
    object-fit: cover !important;
  }
}