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

.page-the-thao__hero-section {
  padding-top: 10px; /* Rely on body padding-top from shared.css, only small top padding here */
  padding-bottom: 60px;
  background-color: #0A0A0A;
}

.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 45%;
  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;
  margin-bottom: 20px;
  color: #F2C14E; /* Primary color for emphasis */
}

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

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

.page-the-thao__hero-main-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.3); /* Glow */
  display: block;
  margin: 0 auto;
}

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

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

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

.page-the-thao__btn-secondary {
  background-color: #111111; /* Card BG */
  color: #FFD36B; /* Auxiliary color */
  border: 2px solid #3A2A12; /* Border */
}

.page-the-thao__btn-secondary:hover {
  background-color: #222222;
  color: #FFF6D6;
  border-color: #F2C14E;
}

.page-the-thao__intro-section {
  padding: 60px 20px;
  background-color: #0A0A0A;
}

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

.page-the-thao__intro-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2C14E;
  margin-bottom: 20px;
}

.page-the-thao__intro-description {
  font-size: 1.1rem;
  color: #FFF6D6;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-the-thao__intro-item {
  flex: 1 1 30%;
  min-width: 280px;
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #3A2A12;
}

.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 #F2C14E;
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.5);
}

.page-the-thao__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensure image is also circular */
  display: block;
}

.page-the-thao__intro-item-title {
  font-size: 1.6rem;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-the-thao__intro-item-text {
  font-size: 1rem;
  color: #FFF6D6;
}

.page-the-thao__main-content {
  padding: 60px 20px;
  background-color: #0A0A0A;
}

.page-the-thao__dark-section {
  background-color: #111111; /* Card BG for contrast */
  color: #FFF6D6;
}

.page-the-thao__content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 12px;
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12;
}

.page-the-thao__content-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #F2C14E;
  margin-bottom: 25px;
  text-align: center;
}

.page-the-thao__content-subtitle {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #FFD36B;
  margin-top: 35px;
  margin-bottom: 20px;
}

.page-the-thao__content-paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-the-thao__content-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.2);
}

.page-the-thao__content-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-the-thao__content-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-the-thao__cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #0A0A0A;
}

.page-the-thao__cta-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 50px 30px;
  border: 1px solid #3A2A12;
  box-shadow: 0 0 25px rgba(242, 193, 78, 0.3);
}

.page-the-thao__cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #F2C14E;
  margin-bottom: 20px;
}

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

.page-the-thao__faq-section {
  padding: 60px 20px;
  background-color: #0A0A0A;
}

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

.page-the-thao__faq-main-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #FFD36B;
  cursor: pointer;
  list-style: none; /* Remove default marker */
  background-color: #111111;
  transition: background-color 0.3s ease;
}

.page-the-thao__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

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

.page-the-thao__faq-qtext {
  flex-grow: 1;
}

.page-the-thao__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  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: 1rem;
  color: #FFF6D6;
  line-height: 1.6;
}

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

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

.page-the-thao__section,
.page-the-thao__container,
.page-the-thao__card {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
  .page-the-thao {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-the-thao__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 30px;
  }

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

  .page-the-thao__hero-content,
  .page-the-thao__hero-image {
    flex: 1 1 100%;
    min-width: unset;
    text-align: center;
  }

  .page-the-thao__main-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .page-the-thao__hero-description {
    font-size: 1rem;
    text-align: center;
  }

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

  .page-the-thao__btn-primary,
  .page-the-thao__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-the-thao__intro-section {
    padding: 40px 15px;
  }

  .page-the-thao__intro-title {
    font-size: 2rem;
  }

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

  .page-the-thao__intro-grid {
    flex-direction: column;
    gap: 25px;
  }

  .page-the-thao__intro-item {
    flex: 1 1 100%;
    min-width: unset;
    padding: 25px;
  }

  .page-the-thao__icon-box-media {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
    border-width: 3px;
  }

  .page-the-thao__intro-item-title {
    font-size: 1.4rem;
  }

  .page-the-thao__main-content {
    padding: 40px 15px;
  }

  .page-the-thao__content-container {
    padding: 20px;
  }

  .page-the-thao__content-title {
    font-size: 2rem;
  }

  .page-the-thao__content-subtitle {
    font-size: 1.6rem;
  }

  .page-the-thao__content-paragraph,
  .page-the-thao__content-list li {
    font-size: 0.95rem;
  }

  .page-the-thao__cta-section {
    padding: 50px 15px;
  }

  .page-the-thao__cta-container {
    padding: 30px 20px;
  }

  .page-the-thao__cta-title {
    font-size: 2.2rem;
  }

  .page-the-thao__cta-description {
    font-size: 1rem;
  }

  .page-the-thao__faq-section {
    padding: 40px 15px;
  }

  .page-the-thao__faq-main-title {
    font-size: 2rem;
  }

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

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

  /* Mobile specific image rules */
  .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;
  }
}