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

/* Hero Section */
.page-the-thao__hero-section {
  padding-top: 10px; /* Small top padding as body handles header offset */
  padding-bottom: 60px;
  background: #0A0A0A; /* Consistent with page background */
  color: #FFF6D6;
}

.page-the-thao__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
  flex-direction: row; /* Default for desktop */
}

.page-the-thao__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  order: 1; /* Visual order 1 for content on desktop */
}

.page-the-thao__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD36B; /* Auxiliary color for highlight */
}

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

.page-the-thao__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  box-sizing: border-box;
  text-align: center;
}

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

.page-the-thao__btn-primary:hover {
  background: linear-gradient(180deg, #FFE080 0%, #E8B02A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-the-thao__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Auxiliary color for text */
  border: 2px solid #FFD36B;
}

.page-the-thao__btn-secondary:hover {
  background: #FFD36B;
  color: #111111; /* Dark text for light button */
  transform: translateY(-2px);
}

.page-the-thao__hero-image {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center;
  order: 2; /* Visual order 2 for image on desktop */
}

.page-the-thao__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  display: block; /* Ensure no extra space below image */
}

/* General Content Sections */
.page-the-thao__content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-the-thao__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color for titles */
}

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

/* Intro Section (Feature Cards) */
.page-the-thao__intro-section {
  background-color: #0A0A0A; /* Consistent with page background */
}

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

.page-the-thao__feature-card {
  background-color: #111111; /* Card Background */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.3);
}

.page-the-thao__icon-box-media {
  width: 200px; /* Fixed width for round image */
  height: 200px; /* Fixed height for round image */
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F2C14E; /* Main color border */
}

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

.page-the-thao__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2C14E; /* Main color for card titles */
}

.page-the-thao__card-text {
  font-size: 1rem;
  color: #FFF6D6; /* Main text color */
}

/* Dark Section (Why Choose Us) */
.page-the-thao__dark-section {
  background-color: #111111; /* Card Background for section */
  color: #FFF6D6;
}

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

.page-the-thao__reason-item {
  background-color: #0A0A0A; /* Background for reason item */
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao__reason-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.3);
}

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

/* Guide Section */
.page-the-thao__guide-section {
  background-color: #0A0A0A; /* Consistent with page background */
}

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

.page-the-thao__guide-step {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-the-thao__step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-the-thao__cta-center {
  text-align: center;
  margin-top: 60px;
}

/* FAQ Section */
.page-the-thao__faq-section {
  padding-bottom: 80px;
}

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

.page-the-thao__faq-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-the-thao__faq-item[open] {
  background-color: #111111;
  border-color: #F2C14E;
}

.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFF6D6;
  cursor: pointer;
  list-style: none; /* Hide default marker */
}

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

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

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

.page-the-thao__faq-item[open] .page-the-thao__faq-toggle {
  color: #FFF6D6;
}

.page-the-thao__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #FFF6D6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-the-thao__faq-item[open] .page-the-thao__faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding-top: 10px;
}

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

/* Image responsive base */
.page-the-thao img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

  /* HERO 双栏 */
  .page-the-thao__hero-section {
    padding-top: 10px !important; /* Small top padding as body handles header offset */
    padding-bottom: 40px;
  }

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

  .page-the-thao__hero-content {
    order: 2; /* Content below image on mobile */
  }

  .page-the-thao__hero-image {
    order: 1; /* Image above content on mobile */
  }

  .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: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .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;
  }

  /* 各 content 模块 */
  .page-the-thao__content-container {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-the-thao__section-description {
    font-size: 0.95rem;
  }

  /* 模块1 三栏正圆图 */
  .page-the-thao__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-the-thao__icon-box-media {
    width: 150px; /* Smaller for mobile */
    height: 150px;
    border-width: 2px;
  }

  .page-the-thao__card-title {
    font-size: 1.3rem;
  }

  /* 教程长文 / 促销 / 信任 / FAQ / blog 排版 */
  .page-the-thao__reason-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-the-thao__guide-step {
    padding: 20px;
  }

  .page-the-thao__step-number {
    font-size: 2rem;
  }

  .page-the-thao__cta-center {
    margin-top: 40px;
  }

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

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

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

  .page-the-thao__faq-answer {
    padding: 0 20px 15px;
  }

  /* 通用图片与容器 */
  .page-the-thao img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-the-thao__hero-side-image {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-the-thao__section,
  .page-the-thao__card,
  .page-the-thao__container,
  .page-the-thao__feature-card,
  .page-the-thao__reason-item,
  .page-the-thao__guide-step,
  .page-the-thao__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}