.page-ththao {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-ththao__hero-section {
  padding-top: 10px; /* Small top padding to respect shared header */
  position: relative;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-ththao__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for hero image */
  overflow: hidden;
}

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

.page-ththao__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-ththao__hero-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF3E6; /* Default text color */
  /* Gradient for titles, if desired, but not for H1 to avoid issues */
}

.page-ththao__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-ththao__hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-ththao__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 1em;
}

.page-ththao__button--primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border: none;
}

.page-ththao__button--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(255, 176, 77, 0.6);
}

.page-ththao__button--secondary {
  background-color: transparent;
  color: #FFA53A;
  border: 2px solid #A84F0C;
}

.page-ththao__button--secondary:hover {
  background-color: #A84F0C;
  color: #FFF3E6;
}

.page-ththao__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  color: #FFF3E6;
  margin-bottom: 20px;
  text-align: center;
}

.page-ththao__section-description {
  font-size: 1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0.8;
}

.page-ththao__sports-overview,
.page-ththao__why-choose,
.page-ththao__cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-ththao__sport-card {
  background-color: #17191F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C;
}

.page-ththao__sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 176, 77, 0.4);
}

.page-ththao__sport-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-ththao__sport-card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin: 20px 20px 10px 20px;
}

.page-ththao__sport-card-title a {
  color: #FFF3E6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-ththao__sport-card-title a:hover {
  color: #FFA53A;
}

.page-ththao__sport-card-text {
  font-size: 0.95em;
  color: #FFF3E6;
  opacity: 0.7;
  padding: 0 20px 20px 20px;
}

.page-ththao__view-all {
  text-align: center;
  margin-top: 50px;
}

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

.page-ththao__feature-item {
  background-color: #17191F;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
}

.page-ththao__feature-icon {
  width: 200px; /* Min size */
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-ththao__feature-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #FFA53A;
  margin-bottom: 10px;
}

.page-ththao__feature-description {
  font-size: 0.95em;
  color: #FFF3E6;
  opacity: 0.8;
}

.page-ththao__cta-section {
  background-color: #17191F;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  margin-bottom: 60px;
  border: 1px solid #A84F0C;
}

.page-ththao__cta-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  color: #FFF3E6;
  margin-bottom: 20px;
}

.page-ththao__cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

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

  .page-ththao__hero-title {
    font-size: clamp(2em, 7vw, 2.8em);
  }

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

  .page-ththao__hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-ththao__button {
    width: 100%;
    max-width: 300px;
  }

  .page-ththao__sports-overview,
  .page-ththao__why-choose,
  .page-ththao__cta-section {
    padding: 40px 15px;
  }

  .page-ththao__sports-grid,
  .page-ththao__features-grid {
    grid-template-columns: 1fr;
  }

  .page-ththao__sport-card-image,
  .page-ththao__feature-icon {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
  }

  /* Ensure content images are not smaller than 200px and responsive */
  .page-ththao img {
    max-width: 100%;
    height: auto;
  }

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

@media (max-width: 480px) {
  .page-ththao__hero-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-ththao__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

  .page-ththao__cta-title {
    font-size: clamp(1.4em, 7vw, 2em);
  }
}