.page-ththao {
  font-family: Arial, sans-serif;
  color: #FFFFFF;
  background-color: #100224; /* Deep purple-black background */
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for the first section */
}

.page-ththao__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  background-color: #017439; /* Main color for hero background */
  padding-bottom: 40px;
  overflow-x: hidden;
}

.page-ththao__hero-visual {
  width: 100%;
  overflow: hidden;
}

.page-ththao__hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5; /* Wider aspect ratio for banners */
  object-fit: cover;
}

.page-ththao__hero-content {
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1; /* Ensure content is above hero visual if any layering was attempted (though it's up-down) */
}

.page-ththao__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFF00; /* Yellow for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-ththao__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 30px;
  color: #FFFFFF;
  opacity: 0.9;
}

.page-ththao__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-ththao__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 150px;
  text-align: center;
}

.page-ththao__btn--register {
  background-color: #C30808; /* Register button color */
  color: #FFFF00; /* Register font color */
  border: 1px solid #C30808;
}

.page-ththao__btn--register:hover {
  background-color: #a30606;
  transform: translateY(-2px);
}

.page-ththao__btn--login {
  background-color: #C30808; /* Login button color */
  color: #FFFF00; /* Login font color */
  border: 1px solid #C30808;
}

.page-ththao__btn--login:hover {
  background-color: #a30606;
  transform: translateY(-2px);
}

.page-ththao__btn--primary {
  background-color: #017439;
  color: #FFFFFF;
  border: 1px solid #017439;
}

.page-ththao__btn--primary:hover {
  background-color: #005a2e;
  transform: translateY(-2px);
}

.page-ththao__btn--secondary {
  background-color: #333333;
  color: #FFFFFF;
  border: 1px solid #333333;
}

.page-ththao__btn--secondary:hover {
  background-color: #555555;
  transform: translateY(-2px);
}

.page-ththao__btn--large {
  padding: 15px 30px;
  font-size: 1.1rem;
  min-width: 200px;
}

.page-ththao__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #FFFF00; /* Yellow for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  padding: 0 15px;
}

.page-ththao__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
  color: #FFFFFF;
  opacity: 0.85;
}

.page-ththao__intro-section,
.page-ththao__bet-types-section,
.page-ththao__guide-section,
.page-ththao__promotions-section,
.page-ththao__providers-section,
.page-ththao__faq-section,
.page-ththao__cta-bottom-section {
  padding: 60px 20px;
  margin-bottom: 20px;
  background-color: #1a0636; /* Slightly lighter dark background for sections */
  border-radius: 8px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.page-ththao__intro-section {
  background-color: #017439;
}

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

.page-ththao__feature-item {
  background-color: #1a0636;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-ththao__feature-item:hover {
  transform: translateY(-5px);
}

.page-ththao__feature-item img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
  display: block;
}

.page-ththao__feature-title {
  font-size: 1.5rem;
  color: #FFFF00; /* Yellow for feature titles */
  margin-bottom: 10px;
}

.page-ththao__feature-text {
  font-size: 1rem;
  color: #FFFFFF;
  opacity: 0.8;
}

.page-ththao__bet-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-ththao__bet-item {
  background-color: #017439; /* Main color for bet items */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-ththao__bet-item:hover {
  transform: translateY(-5px);
}

.page-ththao__bet-item-title {
  font-size: 1.4rem;
  color: #FFFF00; /* Yellow for bet item titles */
  margin-bottom: 10px;
}

.page-ththao__bet-item-text {
  font-size: 1rem;
  color: #FFFFFF;
  opacity: 0.8;
}

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

.page-ththao__step-item {
  background-color: #017439;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.page-ththao__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFFF00; /* Yellow for step numbers */
  color: #017439; /* Green for number text */
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  border: 3px solid #017439;
}

.page-ththao__step-title {
  font-size: 1.4rem;
  color: #FFFF00; /* Yellow for step titles */
  margin-bottom: 10px;
}

.page-ththao__step-text {
  font-size: 1rem;
  color: #FFFFFF;
  opacity: 0.8;
}

.page-ththao__step-text a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-ththao__step-text a:hover {
  color: #FFF;
}

.page-ththao__promotions-section {
  background-color: #1a0636;
}

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

.page-ththao__promo-card {
  background-color: #017439;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-ththao__promo-card:hover {
  transform: translateY(-5px);
}

.page-ththao__promo-card img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  display: block;
}

.page-ththao__promo-title {
  font-size: 1.4rem;
  color: #FFFF00; /* Yellow for promo titles */
  margin: 20px 15px 10px 15px;
}

.page-ththao__promo-text {
  font-size: 1rem;
  color: #FFFFFF;
  opacity: 0.8;
  margin: 0 15px 20px 15px;
}

.page-ththao__promo-card .page-ththao__btn {
  margin-bottom: 20px;
}

.page-ththao__providers-section {
  background-color: #017439;
}

.page-ththao__provider-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-ththao__provider-logos img {
  max-width: 200px;
  height: auto;
  object-fit: contain;
  background-color: #FFFFFF;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  min-width: 200px; /* Enforce min width */
  min- /* Enforce min height */
}

.page-ththao__provider-logos img:hover {
  transform: scale(1.05);
}

.page-ththao__faq-section {
  background-color: #1a0636;
}

.page-ththao__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-ththao__faq-item {
  background-color: #017439;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-ththao__faq-question {
  font-size: 1.25rem;
  color: #FFFF00; /* Yellow for FAQ questions */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-ththao__faq-answer {
  font-size: 1rem;
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 10px;
}

.page-ththao__faq-answer a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-ththao__faq-answer a:hover {
  color: #FFF;
}

.page-ththao__cta-bottom-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #017439;
  margin-bottom: 0; /* No margin at the bottom of the last section */
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-ththao__hero-section {
    flex-direction: column;
  }
  .page-ththao__main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .page-ththao__hero-description {
    font-size: clamp(1rem, 3.5vw, 1.1rem);
  }
  .page-ththao__hero-visual img {
    aspect-ratio: 4/3; /* Adjust aspect ratio for mobile hero */
  }
}

@media (max-width: 768px) {
  .page-ththao {
    overflow-x: hidden;
  }
  .page-ththao__hero-visual img,
  .page-ththao__feature-item img,
  .page-ththao__promo-card img,
  .page-ththao__provider-logos img {
    max-width: 100%;
    height: auto;
  }
  .page-ththao__intro-section,
  .page-ththao__bet-types-section,
  .page-ththao__guide-section,
  .page-ththao__promotions-section,
  .page-ththao__providers-section,
  .page-ththao__faq-section,
  .page-ththao__cta-bottom-section {
    padding: 40px 15px;
  }
  .page-ththao__section-description {
    margin-bottom: 30px;
  }
  .page-ththao__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-ththao__btn {
    width: 100%;
    max-width: 250px;
  }
  .page-ththao__provider-logos {
    gap: 15px;
  }
  .page-ththao__provider-logos img {
    min-
  }
}

@media (max-width: 549px) {
  .page-ththao__feature-grid,
  .page-ththao__bet-list,
  .page-ththao__guide-steps,
  .page-ththao__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-ththao__btn--large {
    font-size: 1rem;
    padding: 12px 25px;
  }
  .page-ththao__provider-logos img {
    min-
    padding: 10px 15px;
  }
}