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

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

.page-th-thao-hero {
  background: linear-gradient(135deg, #FFD700 0%, #DC143C 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.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);
  color: #fff;
}

.page-th-thao-hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

.page-th-thao-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
  border: none;
}

.page-th-thao-btn-primary {
  background-color: #FFD700;
  color: #333;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-th-thao-btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-th-thao-btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.page-th-thao-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.page-th-thao-btn-large {
  padding: 18px 40px;
  font-size: 1.1em;
}

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

.page-th-thao-section-title {
  font-size: 2.5em;
  color: #DC143C;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-th-thao-section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.page-th-thao-features, .page-th-thao-sports-category, .page-th-thao-live-betting, .page-th-thao-promotions, .page-th-thao-security, .page-th-thao-how-to, .page-th-thao-app-download, .page-th-thao-support, .page-th-thao-conclusion {
  padding: 80px 0;
}

.page-th-thao-features {
  background-color: #fff;
}

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

.page-th-thao-feature-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-th-thao-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-th-thao-feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-th-thao-feature-heading {
  font-size: 1.5em;
  color: #DC143C;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-th-thao-feature-text {
  color: #666;
}

.page-th-thao-sports-category {
  background-color: #f2f2f2;
}

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

.page-th-thao-sport-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px 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-th-thao-sport-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-th-thao-sport-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-th-thao-sport-heading {
  font-size: 1.8em;
  color: #DC143C;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-th-thao-sport-text {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-th-thao-cta-full-width {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #DC143C;
  border-radius: 15px;
  color: #fff;
}

.page-th-thao-cta-full-width p {
  font-size: 1.5em;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-th-thao-live-betting {
  background-color: #fff;
}

.page-th-thao-live-betting-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-th-thao-live-betting-text, .page-th-thao-live-betting-image {
  flex: 1 1 45%;
}

.page-th-thao-live-betting-text p {
  margin-bottom: 20px;
  color: #555;
}

.page-th-thao-promotions {
  background-color: #f2f2f2;
}

.page-th-thao-promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 20px;
}

.page-th-thao-promo-list li {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #FFD700;
  font-size: 1.1em;
  color: #555;
}

.page-th-thao-promo-list li strong {
  color: #DC143C;
}

.page-th-thao-security {
  background-color: #fff;
}

.page-th-thao-security-content {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-th-thao-security-text, .page-th-thao-security-image {
  flex: 1 1 45%;
}

.page-th-thao-security-text p {
  margin-bottom: 20px;
  color: #555;
}

.page-th-thao-how-to {
  background-color: #f2f2f2;
}

.page-th-thao-step-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
}

.page-th-thao-step-list li {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-left: 80px;
  border-left: 8px solid #FFD700;
}

.page-th-thao-step-list li::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #DC143C;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  font-size: 1.1em;
}

.page-th-thao-step-heading {
  font-size: 1.6em;
  color: #DC143C;
  margin-bottom: 10px;
}

.page-th-thao-step-list li p {
  color: #555;
  margin-bottom: 15px;
}

.page-th-thao-app-download {
  background-color: #fff;
}

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

.page-th-thao-app-text, .page-th-thao-app-image {
  flex: 1 1 45%;
}

.page-th-thao-app-text p {
  margin-bottom: 20px;
  color: #555;
}

.page-th-thao-support {
  background-color: #f2f2f2;
  text-align: center;
}

.page-th-thao-support p {
  margin-bottom: 25px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-th-thao-conclusion {
  background-color: #DC143C;
  color: #fff;
  text-align: center;
}

.page-th-thao-conclusion .page-th-thao-section-title {
  color: #FFD700;
}

.page-th-thao-conclusion .page-th-thao-section-intro {
  color: #eee;
}

.page-th-thao-conclusion p {
  color: #eee;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-th-thao-btn-final-cta {
  background-color: #FFD700;
  color: #333;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-th-thao-btn-final-cta:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.8);
}

.page-th-thao-responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-th-thao-hero-title {
    font-size: 2.8em;
  }
  .page-th-thao-section-title {
    font-size: 2em;
  }
  .page-th-thao-feature-grid, .page-th-thao-sport-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-th-thao-live-betting-content, .page-th-thao-security-content, .page-th-thao-app-content {
    flex-direction: column;
  }
  .page-th-thao-live-betting-text, .page-th-thao-live-betting-image,
  .page-th-thao-security-text, .page-th-thao-security-image,
  .page-th-thao-app-text, .page-th-thao-app-image {
    flex: 1 1 100%;
  }
  .page-th-thao-promo-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-th-thao-hero {
    padding: 80px 0;
  }
  .page-th-thao-hero-title {
    font-size: 2.2em;
  }
  .page-th-thao-hero-description {
    font-size: 1em;
  }
  .page-th-thao-btn {
    padding: 12px 25px;
    margin: 8px;
  }
  .page-th-thao-section-title {
    font-size: 1.8em;
  }
  .page-th-thao-section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-th-thao-features, .page-th-thao-sports-category, .page-th-thao-live-betting, .page-th-thao-promotions, .page-th-thao-security, .page-th-thao-how-to, .page-th-thao-app-download, .page-th-thao-support, .page-th-thao-conclusion {
    padding: 50px 0;
  }
  .page-th-thao-step-list li {
    padding: 25px 20px 25px 60px;
  }
  .page-th-thao-step-list li::before {
    padding: 8px 12px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-th-thao-hero-title {
    font-size: 1.8em;
  }
  .page-th-thao-btn {
    display: block;
    margin: 10px auto;
  }
  .page-th-thao-section-title {
    font-size: 1.5em;
  }
  .page-th-thao-feature-grid, .page-th-thao-sport-grid {
    grid-template-columns: 1fr;
  }
  .page-th-thao-cta-full-width p {
    font-size: 1.2em;
  }
  .page-th-thao-step-list li {
    padding: 20px 15px 20px 50px;
  }
  .page-th-thao-step-list li::before {
    font-size: 0.9em;
    padding: 6px 10px;
  }
}