/* 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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #FF4500, #1E90FF);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-th-thao__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-th-thao__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-th-thao__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #eee;
}

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

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

.page-th-thao__btn--primary {
  background-color: #FFD700; /* Gold-like for premium feel */
  color: #1E90FF;
  border: 2px solid #FFD700;
}

.page-th-thao__btn--primary:hover {
  background-color: #FFC107;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-th-thao__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-th-thao__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-th-thao__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-th-thao__section-title {
  font-size: 2.5em;
  color: #FF4500;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-th-thao__introduction,
.page-th-thao__sports-categories,
.page-th-thao__betting-guide,
.page-th-thao__advantages,
.page-th-thao__testimonials,
.page-th-thao__cta-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-th-thao__introduction p,
.page-th-thao__betting-guide p,
.page-th-thao__advantages p,
.page-th-thao__cta-section p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555;
}

.page-th-thao__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-th-thao__feature-item {
  padding: 30px;
  border-radius: 10px;
  background-color: #f0f8ff; /* Light blue background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-th-thao__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-th-thao__feature-item h3 {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-th-thao__feature-item p {
  font-size: 1em;
  color: #666;
}

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

.page-th-thao__category-card {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-th-thao__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-th-thao__category-card h3 {
  font-size: 1.6em;
  color: #FF4500;
  margin: 25px 15px 10px 15px;
}

.page-th-thao__category-card p {
  font-size: 1em;
  color: #666;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
  text-align: left;
}

.page-th-thao__btn-small {
  display: inline-block;
  background-color: #1E90FF;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-th-thao__btn-small:hover {
  background-color: #007bff;
}

.page-th-thao__betting-guide ol {
  list-style: none;
  counter-reset: guide-step;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-th-thao__betting-guide li {
  position: relative;
  padding-left: 70px;
  margin-bottom: 30px;
  text-align: left;
}

.page-th-thao__betting-guide li::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FF4500;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(255, 69, 0, 0.3);
}

.page-th-thao__betting-guide li h3 {
  font-size: 1.8em;
  color: #1E90FF;
  margin-bottom: 10px;
}

.page-th-thao__betting-guide li p {
  font-size: 1.1em;
  color: #555;
  text-align: left;
  margin: 0;
}

.page-th-thao__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-th-thao__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-th-thao__advantage-item {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff0f5; /* Light pink background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao__advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-th-thao__advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-th-thao__advantage-item h3 {
  font-size: 1.5em;
  color: #FF4500;
  margin-bottom: 15px;
}

.page-th-thao__advantage-item p {
  font-size: 1em;
  color: #666;
}

.page-th-thao__testimonial-carousel {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-top: 40px;
}

.page-th-thao__testimonial-item {
  flex: 0 0 350px;
  min-width: 300px;
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
}

.page-th-thao__testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #1E90FF;
}

.page-th-thao__testimonial-quote {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-th-thao__testimonial-author {
  font-weight: bold;
  color: #FF4500;
}

.page-th-thao__cta-section {
  text-align: center;
  background: linear-gradient(135deg, #1E90FF, #007bff);
  color: #fff;
  padding: 80px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-th-thao__cta-section .page-th-thao__section-title {
  color: #fff;
}

.page-th-thao__cta-section .page-th-thao__section-title::after {
  background-color: #FFD700;
}

.page-th-thao__cta-section p {
  color: #eee;
}

.page-th-thao__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #FFD700;
  color: #1E90FF;
  border: 2px solid #FFD700;
}

.page-th-thao__btn--large:hover {
  background-color: #FFC107;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-th-thao .highlight {
  color: #FF4500;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-th-thao__hero-title {
    font-size: 2.8em;
  }
  .page-th-thao__hero-description {
    font-size: 1em;
  }
  .page-th-thao__section-title {
    font-size: 2em;
  }
  .page-th-thao__features-grid,
  .page-th-thao__category-grid,
  .page-th-thao__advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-th-thao__testimonial-carousel {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .page-th-thao__hero {
    padding: 60px 15px;
  }
  .page-th-thao__hero-title {
    font-size: 2.2em;
  }
  .page-th-thao__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-th-thao__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-th-thao__section-title {
    font-size: 1.8em;
  }
  .page-th-thao__introduction,
  .page-th-thao__sports-categories,
  .page-th-thao__betting-guide,
  .page-th-thao__advantages,
  .page-th-thao__testimonials,
  .page-th-thao__cta-section {
    padding: 40px 0;
  }
  .page-th-thao__betting-guide li {
    padding-left: 60px;
  }
  .page-th-thao__betting-guide li::before {
    width: 45px;
    height: 45px;
    font-size: 1.5em;
  }
  .page-th-thao__betting-guide li h3 {
    font-size: 1.5em;
  }
  .page-th-thao__testimonial-item {
    flex: 0 0 90%;
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .page-th-thao__hero-title {
    font-size: 1.8em;
  }
  .page-th-thao__hero-description {
    font-size: 0.9em;
  }
  .page-th-thao__section-title {
    font-size: 1.5em;
  }
  .page-th-thao__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-th-thao__features-grid,
  .page-th-thao__category-grid,
  .page-th-thao__advantages-grid {
    grid-template-columns: 1fr;
  }
  .page-th-thao__category-card p {
    text-align: center;
  }
  .page-th-thao__betting-guide li p {
    text-align: center;
  }
  .page-th-thao__betting-guide li {
    padding-left: 0;
    text-align: center;
  }
  .page-th-thao__betting-guide li::before {
    position: static;
    margin: 0 auto 15px auto;
  }
}