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

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

.page-the-thao__hero-section {
  background: linear-gradient(135deg, #FFD700, #1E90FF);
  padding: 100px 0;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-the-thao__hero-content {
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

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

.page-the-thao__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

.page-the-thao__btn--primary {
  background-color: #FFD700;
  color: #1E90FF;
  border: 2px solid #FFD700;
}

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

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

.page-the-thao__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.page-the-thao__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: -100px;
  opacity: 0.3;
  z-index: 1;
  max-width: 600px;
}

.page-the-thao__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-the-thao__section {
  padding: 60px 0;
  text-align: center;
}

.page-the-thao__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

.page-the-thao__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #1E90FF;
  font-weight: bold;
}

.page-the-thao__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-the-thao__subtitle {
  font-size: 1.8em;
  color: #1E90FF;
  margin-bottom: 20px;
}

.page-the-thao__features-grid,
.page-the-thao__categories-grid,
.page-the-thao__promo-grid,
.page-the-thao__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-the-thao__feature-item,
.page-the-thao__category-card,
.page-the-thao__promo-card,
.page-the-thao__step-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  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;
  align-items: center;
  text-align: center;
}

.page-the-thao__feature-item:hover,
.page-the-thao__category-card:hover,
.page-the-thao__promo-card:hover,
.page-the-thao__step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-the-thao__feature-icon,
.page-the-thao__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-the-thao__feature-title,
.page-the-thao__category-title,
.page-the-thao__promo-title,
.page-the-thao__step-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-the-thao__feature-text,
.page-the-thao__category-text,
.page-the-thao__promo-text,
.page-the-thao__step-text {
  color: #666;
  font-size: 1em;
}

.page-the-thao__category-image,
.page-the-thao__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-the-thao__live-betting-content {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
  margin-top: 50px;
}

.page-the-thao__live-betting-image {
  flex: 1;
  max-width: 50%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-the-thao__live-betting-text {
  flex: 1;
}

.page-the-thao__live-betting-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-the-thao__live-betting-text ul li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
  position: relative;
  padding-left: 30px;
}

.page-the-thao__live-betting-text ul li::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-the-thao__btn--center {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao__cta-text {
  font-size: 1.1em;
  margin-top: 50px;
  color: #555;
}

.page-the-thao__faq-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

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

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

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

.page-the-thao__faq-answer {
  font-size: 1em;
  color: #666;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-the-thao__faq-question.active + .page-the-thao__faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-the-thao__hero-title {
    font-size: 3em;
  }
  .page-the-thao__section-title {
    font-size: 2.2em;
  }
  .page-the-thao__live-betting-content {
    flex-direction: column;
    text-align: center;
  }
  .page-the-thao__live-betting-image {
    max-width: 80%;
  }
  .page-the-thao__live-betting-text {
    margin-top: 30px;
  }
  .page-the-thao__live-betting-text ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-the-thao__hero-section {
    padding: 80px 0 50px 0;
  }
  .page-the-thao__hero-title {
    font-size: 2.5em;
  }
  .page-the-thao__hero-description {
    font-size: 1.1em;
  }
  .page-the-thao__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-the-thao__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-the-thao__hero-image-wrapper {
    display: none;
  }
  .page-the-thao__section {
    padding: 40px 0;
  }
  .page-the-thao__section-title {
    font-size: 1.8em;
  }
  .page-the-thao__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-the-thao__features-grid,
  .page-the-thao__categories-grid,
  .page-the-thao__promo-grid,
  .page-the-thao__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-the-thao__live-betting-image {
    max-width: 100%;
  }
}