/* style/ththao.css */
.page-ththao {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

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

/* Hero Section */
.page-ththao__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
}

.page-ththao__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-ththao__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  background: rgba(13, 14, 18, 0.7); /* Background with transparency */
  border-radius: 10px;
  margin-top: -100px; /* Pull content up over image a bit for design, but not overlapping text */
  box-shadow: 0 0 30px rgba(255, 140, 26, 0.3);
}

.page-ththao__hero-title {
  font-size: clamp(2em, 3.5vw, 3.5em);
  font-weight: bold;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 140, 26, 0.5);
}

.page-ththao__hero-description {
  font-size: clamp(1em, 1.2vw, 1.2em);
  margin-bottom: 30px;
  color: #FFF3E6; /* Text Main */
}

/* Section Titles */
.page-ththao__section-title {
  font-size: clamp(1.8em, 2.5vw, 2.8em);
  font-weight: bold;
  color: #FF8C1A; /* Primary */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  text-shadow: 0 0 5px rgba(255, 140, 26, 0.3);
}

.page-ththao__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-ththao__highlight-text {
  color: #FFA53A; /* Auxiliary */
  font-weight: bold;
}

/* Buttons */
.page-ththao__btn-primary,
.page-ththao__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-ththao__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-ththao__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-ththao__btn-secondary {
  background: transparent;
  color: #FFA53A; /* Auxiliary */
  border: 2px solid #A84F0C; /* Border */
  margin-left: 20px;
}

.page-ththao__btn-secondary:hover {
  background: rgba(255, 165, 58, 0.1);
  color: #FFB04D; /* Glow */
  border-color: #FFB04D; /* Glow */
}

.page-ththao__cta-wrapper,
.page-ththao__cta-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.page-ththao__feature-card {
  background: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-ththao__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 140, 26, 0.2);
}

.page-ththao__feature-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-ththao__feature-title {
  font-size: 1.5em;
  color: #FFA53A; /* Auxiliary */
  margin-bottom: 15px;
}

.page-ththao__feature-description {
  font-size: 1em;
  color: #FFF3E6;
}

/* List Styles */
.page-ththao__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-ththao__list-item {
  background: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-ththao__list-title {
  font-size: 1.4em;
  color: #FFA53A; /* Auxiliary */
  margin-bottom: 10px;
}

.page-ththao__list-description {
  font-size: 1em;
  color: #FFF3E6;
}

/* Guide Section */
.page-ththao__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-ththao__step-card {
  background: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-ththao__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(255, 140, 26, 0.5);
}

.page-ththao__step-title {
  font-size: 1.5em;
  color: #FFA53A; /* Auxiliary */
  margin-bottom: 15px;
}

.page-ththao__step-description {
  font-size: 1em;
  color: #FFF3E6;
}

/* Promotions Section */
.page-ththao__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-ththao__promo-card {
  background: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-ththao__promo-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-ththao__promo-title {
  font-size: 1.4em;
  color: #FF8C1A; /* Primary */
  margin-bottom: 10px;
}

.page-ththao__promo-description {
  font-size: 0.95em;
  color: #FFF3E6;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-ththao__faq-list {
  margin-top: 30px;
}

.page-ththao__faq-item {
  background: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-ththao__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFA53A; /* Auxiliary */
  background-color: #17191F;
  transition: background-color 0.3s ease;
}

.page-ththao__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-ththao__faq-item summary:hover {
  background-color: rgba(255, 165, 58, 0.05);
}

.page-ththao__faq-qtext {
  flex-grow: 1;
}

.page-ththao__faq-toggle {
  margin-left: 20px;
  font-size: 1.5em;
  line-height: 1;
  color: #FF8C1A; /* Primary */
}

.page-ththao__faq-answer {
  padding: 15px 25px 25px;
  color: #FFF3E6;
  font-size: 1em;
  border-top: 1px solid #A84F0C;
}

.page-ththao__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

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

/* Final CTA Section */
.page-ththao__cta-final-section {
  padding-bottom: 60px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-ththao__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .page-ththao {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-ththao__container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-ththao__hero-content {
    margin-top: -60px;
    padding: 20px 15px;
  }

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

  .page-ththao__hero-description {
    font-size: clamp(0.9em, 3.5vw, 1.1em);
  }

  .page-ththao__btn-primary,
  .page-ththao__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0 0 10px 0 !important; /* Remove side margin, add bottom margin */
  }

  .page-ththao__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-ththao__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .page-ththao__features-grid,
  .page-ththao__steps-grid,
  .page-ththao__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ththao img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-ththao__feature-icon,
  .page-ththao__promo-image {
    max-width: 100%;
    width: 100%;
  }

  .page-ththao__section,
  .page-ththao__card,
  .page-ththao__container,
  .page-ththao__introduction-section,
  .page-ththao__features-section,
  .page-ththao__betting-types-section,
  .page-ththao__guide-section,
  .page-ththao__tips-section,
  .page-ththao__promotions-section,
  .page-ththao__faq-section,
  .page-ththao__cta-final-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-ththao__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-ththao__hero-content {
    margin-top: -40px;
    padding: 15px 10px;
  }

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

  .page-ththao__hero-description {
    font-size: clamp(0.85em, 4vw, 1em);
  }

  .page-ththao__btn-primary,
  .page-ththao__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
  }

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

  .page-ththao__feature-title,
  .page-ththao__step-title,
  .page-ththao__promo-title {
    font-size: 1.3em;
  }

  .page-ththao__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-ththao__faq-answer {
    padding: 10px 20px 20px;
  }
}