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

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

.page-th-thao__hero-section {
  background: linear-gradient(135deg, #0A192F, #1a3a6b);
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-th-thao__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:sports_stadium,crowd,lights]');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

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

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

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

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

.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;
  color: #0A192F;
}

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

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

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

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

.page-th-thao__section--dark {
  background-color: #0F233B;
}

.page-th-thao__section--grey {
  background-color: #1A2F49;
}

.page-th-thao__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #FFD700;
  font-weight: bold;
}

.page-th-thao__section-description {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #c0c0c0;
}

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

.page-th-thao__feature-item {
  background-color: #0F233B;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-th-thao__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-th-thao__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filters */
}

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

.page-th-thao__feature-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-th-thao__bet-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-th-thao__bet-type-card {
  background-color: #1A2F49;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  border-left: 5px solid #FFD700;
}

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

.page-th-thao__bet-type-text {
  font-size: 1em;
  color: #c0c0c0;
}

.page-th-thao__guide-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 50px;
}

.page-th-thao__guide-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #0F233B;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
}

.page-th-thao__guide-step:nth-child(even) {
  background-color: #1A2F49;
}

.page-th-thao__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-th-thao__step-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-th-thao__step-text {
  font-size: 1.1em;
  color: #e0e0e0;
  max-width: 700px;
  margin-bottom: 30px;
}

.page-th-thao__step-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  filter: none; /* Ensure no color filters */
}

.page-th-thao__step-btn {
  margin-top: 20px;
}

.page-th-thao__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-th-thao__tips-list li {
  background-color: #0F233B;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-right: 5px solid #FFD700;
}

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

.page-th-thao__tip-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-th-thao__faq-list {
  margin-top: 50px;
  text-align: left;
}

.page-th-thao__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
}

.page-th-thao__faq-question::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  font-weight: bold;
}

.page-th-thao__faq-answer {
  font-size: 1.1em;
  color: #c0c0c0;
  margin-bottom: 20px;
  padding-left: 30px;
  border-left: 3px solid #FFD700;
  padding-bottom: 15px;
}

.page-th-thao__faq-btn {
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-th-thao__cta-bottom {
  background: linear-gradient(135deg, #1a3a6b, #0A192F);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-th-thao__cta-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:sports_fan,celebration,gold_confetti]');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.page-th-thao__cta-bottom > .page-th-thao__container {
  position: relative;
  z-index: 1;
}

.page-th-thao__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-th-thao__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-th-thao .highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-th-thao__hero-title {
    font-size: 2.8em;
  }
  .page-th-thao__section-title {
    font-size: 2.2em;
  }
  .page-th-thao__feature-item, .page-th-thao__bet-type-card, .page-th-thao__tips-list li {
    padding: 25px;
  }
  .page-th-thao__hero-cta-group {
    flex-direction: column;
  }
  .page-th-thao__btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-th-thao__hero-title {
    font-size: 2.2em;
  }
  .page-th-thao__hero-description {
    font-size: 1.1em;
  }
  .page-th-thao__section-title {
    font-size: 1.8em;
  }
  .page-th-thao__features-grid, .page-th-thao__bet-types-grid, .page-th-thao__tips-list {
    grid-template-columns: 1fr;
  }
  .page-th-thao__section, .page-th-thao__hero-section, .page-th-thao__cta-bottom {
    padding: 60px 0;
  }
  .page-th-thao__guide-step {
    padding: 30px;
  }
  .page-th-thao__step-title {
    font-size: 1.6em;
  }
  .page-th-thao__faq-question {
    font-size: 1.3em;
  }
  .page-th-thao__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  .page-th-thao__hero-title {
    font-size: 1.8em;
  }
  .page-th-thao__hero-description {
    font-size: 1em;
  }
  .page-th-thao__section-title {
    font-size: 1.5em;
  }
  .page-th-thao__btn {
    width: 95%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-th-thao__features-grid, .page-th-thao__bet-types-grid, .page-th-thao__tips-list {
    gap: 20px;
  }
  .page-th-thao__feature-icon {
    width: 50px;
    height: 50px;
  }
  .page-th-thao__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-th-thao__cta-title {
    font-size: 2em;
  }
  .page-th-thao__container {
    padding: 0 15px;
  }
}