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

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

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

.page-th-thao__hero {
  background: linear-gradient(135deg, #000080 0%, #00004d 100%); /* Dark Blue Gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-th-thao__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: page-th-thao__hero-pulse 10s infinite alternate;
  z-index: 0;
}

@keyframes page-th-thao__hero-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.7; }
}

.page-th-thao__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

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

.page-th-thao__hero-description a {
  color: #FFD700;
  text-decoration: underline;
}

.page-th-thao__hero-description a:hover {
  color: #fff;
}

.page-th-thao__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

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

.page-th-thao__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue */
}

.page-th-thao__btn--primary:hover {
  background-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: #000080;
  transform: translateY(-2px);
}

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

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

.page-th-thao__btn--xl {
  padding: 20px 40px;
  font-size: 1.4em;
  border-radius: 10px;
}

.page-th-thao__section-title {
  font-size: 2.8em;
  color: #000080;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

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

.page-th-thao__intro-text a {
  color: #000080;
  text-decoration: underline;
}

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

.page-th-thao__features {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-th-thao__feature-item {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-th-thao__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  background-color: #000080;
  border-radius: 50%;
  padding: 10px;
  display: inline-block;
}

.page-th-thao__feature-heading {
  font-size: 1.8em;
  color: #000080;
  margin-bottom: 15px;
}

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

.page-th-thao__feature-text a {
  color: #000080;
  text-decoration: underline;
}

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

.page-th-thao__sports-categories {
  padding: 80px 0;
  background-color: #eef2f7;
}

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

.page-th-thao__category-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

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

.page-th-thao__category-card .page-th-thao__card-title {
  font-size: 1.6em;
  color: #000080;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-th-thao__category-card .page-th-thao__card-description {
  font-size: 0.95em;
  color: #777;
  padding: 0 15px 20px;
}

.page-th-thao__category-card .page-th-thao__btn {
  margin-bottom: 20px;
}

.page-th-thao__live-betting {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-th-thao__live-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.page-th-thao__live-image {
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.page-th-thao__live-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  max-width: 500px;
}

.page-th-thao__live-features li {
  background-color: #fff;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-th-thao__list-icon {
  width: 24px;
  height: 24px;
  background-color: #FFD700;
  border-radius: 50%;
  padding: 4px;
}

.page-th-thao__live-betting .page-th-thao__btn {
  margin-top: 50px;
  text-align: center;
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-th-thao__promotions {
  background-color: #000080;
  padding: 80px 0;
  color: #fff;
}

.page-th-thao__promotions .page-th-thao__section-title {
  color: #FFD700;
}

.page-th-thao__promotions .page-th-thao__intro-text {
  color: #e0e0e0;
}

.page-th-thao__promotions .page-th-thao__intro-text a {
  color: #FFD700;
}

.page-th-thao__promotions .page-th-thao__intro-text a:hover {
  color: #fff;
}

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

.page-th-thao__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-th-thao__promo-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-th-thao__promo-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-th-thao__promo-card .page-th-thao__card-description {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.page-th-thao__promo-card .page-th-thao__card-description a {
  color: #FFD700;
  text-decoration: underline;
}

.page-th-thao__promo-card .page-th-thao__card-description a:hover {
  color: #fff;
}

.page-th-thao__promotions .page-th-thao__btn {
  margin-top: 50px;
  background-color: #FFD700;
  color: #000080;
  border: none;
}

.page-th-thao__promotions .page-th-thao__btn:hover {
  background-color: #e6c200;
}

.page-th-thao__cta-bottom {
  padding: 80px 0;
  text-align: center;
  background-color: #f8f8f8;
}

.page-th-thao__cta-bottom .page-th-thao__section-title {
  font-size: 3em;
}

.page-th-thao__cta-bottom .page-th-thao__intro-text {
  font-size: 1.2em;
  margin-bottom: 50px;
}

.page-th-thao__cta-bottom .page-th-thao__intro-text a {
  color: #000080;
  text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-th-thao__hero-title {
    font-size: 2.8em;
  }
  .page-th-thao__hero-description {
    font-size: 1.1em;
  }
  .page-th-thao__section-title {
    font-size: 2.2em;
  }
  .page-th-thao__live-content {
    flex-direction: column;
  }
  .page-th-thao__live-image {
    max-width: 100%;
  }
  .page-th-thao__live-features {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-th-thao__hero-title {
    font-size: 2.2em;
  }
  .page-th-thao__hero-description {
    font-size: 1em;
  }
  .page-th-thao__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-th-thao__btn--large, .page-th-thao__btn--xl {
    width: 80%;
    margin: 0 auto;
  }
  .page-th-thao__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-th-thao__intro-text {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-th-thao__feature-grid, .page-th-thao__category-grid, .page-th-thao__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-th-thao__hero, .page-th-thao__features, .page-th-thao__sports-categories, .page-th-thao__live-betting, .page-th-thao__promotions, .page-th-thao__cta-bottom {
    padding: 60px 0;
  }
  .page-th-thao__feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-th-thao__feature-heading, .page-th-thao__card-title {
    font-size: 1.5em;
  }
}

@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__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-th-thao__btn--large, .page-th-thao__btn--xl {
    width: 90%;
  }
  .page-th-thao__section-title {
    font-size: 1.6em;
  }
  .page-th-thao__feature-heading, .page-th-thao__card-title {
    font-size: 1.3em;
  }
  .page-th-thao__hero, .page-th-thao__features, .page-th-thao__sports-categories, .page-th-thao__live-betting, .page-th-thao__promotions, .page-th-thao__cta-bottom {
    padding: 40px 0;
  }
}