/* style/th-thao.css */
.page-th-thao {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-th-thao__hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-th-thao__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.page-th-thao__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-th-thao__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-th-thao__btn--secondary {
  background-color: #8B0000; /* Dark Red */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-th-thao__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-th-thao__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Dark Red */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-th-thao__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-th-thao__sub-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 20px;
}

.page-th-thao__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page-th-thao__about-section, 
.page-th-thao__sports-types-section, 
.page-th-thao__live-betting-section, 
.page-th-thao__betting-guide-section, 
.page-th-thao__promotions-section, 
.page-th-thao__tips-section, 
.page-th-thao__app-download-section, 
.page-th-thao__faq-section, 
.page-th-thao__cta-banner {
  padding: 80px 0;
}

.page-th-thao__about-section, .page-th-thao__live-betting-section, .page-th-thao__promotions-section, .page-th-thao__app-download-section {
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-th-thao__grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-th-thao__grid-layout--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-th-thao__grid-layout--reverse .page-th-thao__content-block {
  order: 2;
}

.page-th-thao__grid-layout--reverse .page-th-thao__image-block {
  order: 1;
}

.page-th-thao__content-block p {
  margin-bottom: 15px;
  color: #444;
}

.page-th-thao__content-block a {
  color: #8B0000;
  text-decoration: underline;
  font-weight: bold;
}

.page-th-thao__content-block a:hover {
  color: #FFD700;
}

.page-th-thao__image-block {
  text-align: center;
}

.page-th-thao__responsive-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-th-thao__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-th-thao__feature-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333;
  display: flex;
  align-items: center;
}

.page-th-thao__icon {
  color: #FFD700;
  font-size: 1.2em;
  margin-right: 10px;
  display: inline-block;
  width: 20px;
  text-align: center;
}

/* Sports Grid */
.page-th-thao__sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-th-thao__sport-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-th-thao__sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-th-thao__card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: #FFD700; /* For SVG icons, if applicable */
  filter: none; /* Ensure no image filters */
}

.page-th-thao__card-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-th-thao__card-text {
  color: #555;
  font-size: 0.95em;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Betting Guide Steps */
.page-th-thao__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-th-thao__step-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-th-thao__step-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-th-thao__step-card p {
  color: #555;
  font-size: 0.95em;
  flex-grow: 1;
  margin-bottom: 20px;
}

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

.page-th-thao__tip-card {
  background-color: #fff;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-th-thao__tip-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-th-thao__tip-card p {
  color: #555;
}

/* App Download Section */
.page-th-thao__app-download-section {
  background-color: #f0f0f0;
}

.page-th-thao__download-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-th-thao__faq-section {
  background-color: #fff;
}

.page-th-thao__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-th-thao__faq-question {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-th-thao__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-th-thao__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-th-thao__faq-answer {
  color: #555;
  font-size: 1.0em;
  display: none; /* Hidden by default */
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #eee;
}

.page-th-thao__faq-answer.active {
  display: block;
}

/* CTA Banner */
.page-th-thao__cta-banner {
  background: linear-gradient(90deg, #8B0000 0%, #FFD700 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 15px;
  margin: 50px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-th-thao__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-th-thao__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-th-thao__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-th-thao__cta-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #444;
}

.page-th-thao__cta-text a {
  color: #8B0000;
  font-weight: bold;
  text-decoration: underline;
}

.page-th-thao__cta-text a:hover {
  color: #FFD700;
}

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

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

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

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

  .page-th-thao__grid-layout {
    grid-template-columns: 1fr;
  }

  .page-th-thao__grid-layout--reverse .page-th-thao__content-block {
    order: initial;
  }

  .page-th-thao__grid-layout--reverse .page-th-thao__image-block {
    order: initial;
  }

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

  .page-th-thao__btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-th-thao__hero-section, 
  .page-th-thao__about-section, 
  .page-th-thao__sports-types-section, 
  .page-th-thao__live-betting-section, 
  .page-th-thao__betting-guide-section, 
  .page-th-thao__promotions-section, 
  .page-th-thao__tips-section, 
  .page-th-thao__app-download-section, 
  .page-th-thao__faq-section, 
  .page-th-thao__cta-banner {
    padding: 60px 0;
  }

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

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

  .page-th-thao__sport-card, .page-th-thao__step-card, .page-th-thao__tip-card {
    padding: 25px;
  }
}

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

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

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

  .page-th-thao__btn {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-th-thao__cta-title {
    font-size: 2em;
  }
}