/* style/th-thao.css */

/* General styling for the Thể Thao page */
.page-th-thao {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-th-thao__hero {
  position: relative;
  padding: 120px 0;
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.page-th-thao__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Slightly dim the image to make text pop */
}

.page-th-thao__hero .page-th-thao__container {
  position: relative;
  z-index: 1;
}

.page-th-thao__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-th-thao__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFFFFF;
}

.page-th-thao__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-th-thao__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-th-thao__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-th-thao__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-th-thao__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-th-thao__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

/* Sections */
.page-th-thao__section {
  padding: 80px 0;
  text-align: center;
}

.page-th-thao__section--intro {
  background-color: #0F2038; /* Slightly lighter dark blue */
}

.page-th-thao__section--why-choose {
  background-color: #0A192F;
}

.page-th-thao__section--sports-types {
  background-color: #0F2038;
}

.page-th-thao__section--live-betting {
  background-color: #0A192F;
}

.page-th-thao__section--promotions {
  background-color: #0F2038;
}

.page-th-thao__section--get-started {
  background-color: #0A192F;
}

.page-th-thao__section--responsible-gambling {
  background-color: #0F2038;
  color: #CCCCCC;
}

.page-th-thao__section--faq {
  background-color: #0A192F;
}

.page-th-thao__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-th-thao__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-th-thao__section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 20px;
  color: #E0E0E0;
}

.page-th-thao__section-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Grid */
.page-th-thao__features-grid,
.page-th-thao__sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.page-th-thao__feature-item,
.page-th-thao__sport-item {
  background-color: #1A2B40; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-th-thao__feature-item:hover,
.page-th-thao__sport-item:hover {
  transform: translateY(-10px);
}

.page-th-thao__feature-title,
.page-th-thao__sport-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-th-thao__feature-item p,
.page-th-thao__sport-item p {
  font-size: 1em;
  color: #CCCCCC;
  margin: 0;
}

/* Promo List */
.page-th-thao__promo-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-th-thao__promo-list li {
  background-color: #1A2B40;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-th-thao__promo-list li strong {
  color: #FFD700;
}

/* Steps List (Get Started) */
.page-th-thao__steps-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-th-thao__steps-list li {
  background-color: #1A2B40;
  margin-bottom: 25px;
  padding: 25px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  font-size: 1.15em;
  color: #E0E0E0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-th-thao__steps-list li strong {
  color: #FFD700;
  font-size: 1.3em;
  display: block;
  margin-bottom: 10px;
}

/* CTA Block */
.page-th-thao__cta-block {
  margin-top: 60px;
  padding: 40px;
  background-color: #1A2B40;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-th-thao__cta-block p {
  font-size: 1.4em;
  color: #FFFFFF;
  margin-bottom: 30px;
}

/* FAQ Section */
.page-th-thao__faq-item {
  background-color: #1A2B40;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-th-thao__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer; /* Indicate it might be collapsible, though JS isn't implementing it */
}

.page-th-thao__faq-answer {
  font-size: 1.05em;
  color: #CCCCCC;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-th-thao__hero-title {
    font-size: 2.8em;
  }

  .page-th-thao__hero-subtitle {
    font-size: 1.1em;
  }

  .page-th-thao__section-title {
    font-size: 2.2em;
  }

  .page-th-thao__features-grid,
  .page-th-thao__sports-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-th-thao__hero {
    padding: 80px 0;
  }

  .page-th-thao__hero-title {
    font-size: 2.2em;
  }

  .page-th-thao__hero-subtitle {
    font-size: 1em;
  }

  .page-th-thao__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-th-thao__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-th-thao__section {
    padding: 60px 0;
  }

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

  .page-th-thao__section p {
    font-size: 1em;
  }

  .page-th-thao__feature-title,
  .page-th-thao__sport-title {
    font-size: 1.5em;
  }

  .page-th-thao__promo-list li,
  .page-th-thao__steps-list li {
    font-size: 1em;
    padding: 15px;
  }

  .page-th-thao__steps-list li strong {
    font-size: 1.1em;
  }

  .page-th-thao__cta-block p {
    font-size: 1.2em;
  }

  .page-th-thao__faq-question {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-th-thao__hero-title {
    font-size: 1.8em;
  }

  .page-th-thao__section-title {
    font-size: 1.5em;
  }

  .page-th-thao__btn {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }

  .page-th-thao__features-grid,
  .page-th-thao__sports-grid {
    grid-template-columns: 1fr;
  }
}

/* Ensure contrast for text on various backgrounds */
/* Text on #0A192F (dark blue) */
.page-th-thao p, .page-th-thao li, .page-th-thao__faq-answer {
  color: #E0E0E0; /* Light grey, contrast ratio > 4.5:1 with #0A192F */
}
/* Text on #0F2038 (slightly lighter dark blue) */
.page-th-thao__section--intro p, .page-th-thao__section--sports-types p, .page-th-thao__section--promotions p, .page-th-thao__section--responsible-gambling p {
  color: #CCCCCC; /* Slightly darker light grey, contrast ratio > 4.5:1 with #0F2038 */
}
/* Text on #1A2B40 (card background) */
.page-th-thao__feature-item p, .page-th-thao__sport-item p, .page-th-thao__promo-list li, .page-th-thao__steps-list li, .page-th-thao__faq-answer {
  color: #CCCCCC; /* Contrast ratio > 4.5:1 with #1A2B40 */
}
/* Gold text on dark background */
.page-th-thao__hero-title, .page-th-thao__section-title, .page-th-thao__feature-title, .page-th-thao__sport-title, .page-th-thao__promo-list li strong, .page-th-thao__steps-list li strong, .page-th-thao__faq-question {
  color: #FFD700; /* Gold, contrast ratio > 4.5:1 with #0A192F, #0F2038, #1A2B40 */
}
/* Dark blue text on gold button */
.page-th-thao__btn--primary {
  color: #0A192F; /* Contrast ratio > 4.5:1 with #FFD700 */
}
/* Gold text on transparent/dark button */
.page-th-thao__btn--secondary {
  color: #FFD700; /* Contrast ratio > 4.5:1 with transparent/dark background */
}