.page-ththao {
  font-family: Arial, sans-serif;
  color: var(--text-main, #1F2D3D);
  background-color: var(--background, #F4F7FB);
  line-height: 1.6;
}

.page-ththao__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.page-ththao__hero-section {
  padding-top: 10px; /* Minimal top padding, body handles --header-offset */
  background-color: var(--background, #F4F7FB);
  text-align: center;
  padding-bottom: 40px;
}

.page-ththao__hero-image-wrapper {
  max-width: 1200px; /* Constrain image wrapper */
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.page-ththao__hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-ththao__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-ththao__main-title {
  font-size: clamp(2em, 3.5vw, 2.8em); /* Use clamp for h1 */
  font-weight: bold;
  color: var(--custom-color-1776249996415, #000000);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-ththao__description {
  font-size: 1.1em;
  color: var(--text-main, #1F2D3D);
  margin-bottom: 30px;
}

.page-ththao__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-ththao__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

/* Sports Overview Section */
.page-ththao__sports-overview {
  padding: 60px 0;
  background-color: var(--card-bg, #FFFFFF);
}

.page-ththao__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--custom-color-1776249996415, #000000);
  text-align: center;
  margin-bottom: 20px;
}

.page-ththao__section-description {
  font-size: 1.05em;
  color: var(--text-main, #1F2D3D);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-ththao__sport-card {
  background-color: var(--card-bg, #FFFFFF);
  border: 1px solid var(--border, #D6E2FF);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ththao__sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-ththao__sport-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency, min 200px */
  object-fit: cover;
  display: block;
}

.page-ththao__sport-card-title {
  font-size: 1.4em;
  font-weight: bold;
  color: var(--custom-color-1776249996415, #000000);
  margin: 20px 15px 10px 15px;
}

.page-ththao__sport-card-text {
  font-size: 0.95em;
  color: var(--text-main, #1F2D3D);
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-ththao__sport-card-link {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  background: var(--main-color, #2F6BFF);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-ththao__sport-card-link:hover {
  background-color: var(--accent-color, #6FA3FF);
}

/* Advantages Section */
.page-ththao__advantages-section {
  padding: 60px 0;
  background-color: var(--background, #F4F7FB);
}

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

.page-ththao__advantage-item {
  background-color: var(--card-bg, #FFFFFF);
  border: 1px solid var(--border, #D6E2FF);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ththao__advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-ththao__advantage-icon {
  max-width: 100%; /* Ensures responsiveness */
  height: auto;
  display: block;
  margin: 0 auto 20px auto; /* Center the image and provide bottom margin */
}

.page-ththao__advantage-title {
  font-size: 1.3em;
  font-weight: bold;
  color: var(--custom-color-1776249996415, #000000);
  margin-bottom: 10px;
}

.page-ththao__advantage-text {
  font-size: 0.95em;
  color: var(--text-main, #1F2D3D);
}

.page-ththao__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

/* FAQ Section */
.page-ththao__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg, #FFFFFF);
}

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

.page-ththao__faq-item {
  background-color: var(--background, #F4F7FB);
  border: 1px solid var(--border, #D6E2FF);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-ththao__faq-question {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--custom-color-1776249996415, #000000);
  margin-bottom: 10px;
  cursor: pointer; /* For potential JS toggle */
}

.page-ththao__faq-answer {
  font-size: 1em;
  color: var(--text-main, #1F2D3D);
  display: block; /* Default visible, JS can toggle */
}

.page-ththao__faq-answer a {
  color: var(--main-color, #2F6BFF);
  text-decoration: none;
  font-weight: bold;
}

.page-ththao__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-ththao__main-title {
    font-size: clamp(1.8em, 4.5vw, 2.5em);
  }

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

@media (max-width: 768px) {
  .page-ththao__container {
    padding: 15px;
  }

  .page-ththao__hero-section {
    padding-bottom: 30px;
  }

  .page-ththao__main-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
  }

  .page-ththao__description {
    font-size: 1em;
  }

  .page-ththao__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-ththao__section-title {
    font-size: 1.6em;
  }

  .page-ththao__sports-grid,
  .page-ththao__advantage-grid {
    grid-template-columns: 1fr; /* Single column layout for mobile */
    gap: 20px;
  }

  .page-ththao__sport-image {
    height: 200px; /* Adjust height for smaller screens, but still >= 200px */
  }

  /* Crucial for mobile overflow prevention */
  .page-ththao img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content images are not shrunk below 200px display width/height */
  .page-ththao__sport-card img,
  .page-ththao__advantage-item img {
      min-width: 200px;
      min- /* Maintaining aspect ratio roughly 300x200 */
      width: 100%; /* Allow it to scale up to 100% of parent */
      object-fit: cover; /* or contain, depending on desired look */
  }
  .page-ththao__hero-image {
      min-width: 200px; /* Hero image also needs to respect min-size rule */
      min-height: 112px; /* 16:9 aspect ratio */
  }

  .page-ththao__advantage-item {
    padding: 20px;
  }

  .page-ththao__advantage-icon {
    margin-bottom: 15px;
  }

  .page-ththao__faq-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-ththao__main-title {
    font-size: clamp(1.4em, 7vw, 2em);
  }

  .page-ththao__section-title {
    font-size: 1.4em;
  }
}