.page-th-thao {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for text */
  background-color: #1A1A1A; /* Dark background */
  line-height: 1.6;
}

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

.page-th-thao .section-title {
  color: #FFD700; /* Primary color for titles */
  text-align: center;
  font-size: 3em;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-th-thao p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #CCCCCC;
}

.page-th-thao a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-th-thao a:hover {
  color: #DC143C;
}

.page-th-thao .cta-button {
  display: inline-block;
  background-color: #DC143C; /* Secondary color for CTA */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-th-thao .cta-button:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
}

.page-th-thao .button-small {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-th-thao .button-small:hover {
  background-color: #DC143C;
  color: #FFFFFF;
}

/* Hero Banner */
.page-th-thao .hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #000;
}

.page-th-thao .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-th-thao .hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-th-thao .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-th-thao .hero-content h1 {
  color: #FFD700;
  font-size: 3.8em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-th-thao .hero-content p {
  font-size: 1.4em;
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Introduction Section */
.page-th-thao .introduction-section {
  padding: 80px 0;
  background-color: #1A1A1A;
}

.page-th-thao .introduction-section .section-title {
  margin-bottom: 60px;
}

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

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

.page-th-thao .feature-item:hover {
  transform: translateY(-10px);
}

.page-th-thao .feature-item h3 {
  color: #DC143C;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-th-thao .feature-item p {
  font-size: 1em;
  color: #B0B0B0;
}

/* Sports Categories Section */
.page-th-thao .sports-categories-section {
  padding: 80px 0;
  background-color: #222222;
}

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

.page-th-thao .sport-card {
  background-color: #2C2C2C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-th-thao .sport-card:hover {
  transform: translateY(-10px);
}

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

.page-th-thao .sport-card h3 {
  font-size: 1.6em;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page-th-thao .sport-card h3 .card-link {
  color: #FFD700;
  transition: color 0.3s ease;
}

.page-th-thao .sport-card h3 .card-link:hover {
  color: #DC143C;
}

.page-th-thao .sport-card p {
  font-size: 1em;
  color: #B0B0B0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-th-thao .sport-card .button-small {
  margin: 0 20px 20px;
  align-self: flex-start;
}

/* Live Betting Section */
.page-th-thao .live-betting-section {
  padding: 80px 0;
  background-color: #1A1A1A;
  text-align: center;
}

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

.page-th-thao .advantage-item {
  background-color: #2C2C2C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-th-thao .advantage-item h3 {
  color: #DC143C;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-th-thao .advantage-item p {
  font-size: 1em;
  color: #B0B0B0;
}

/* Mobile Betting Section */
.page-th-thao .mobile-betting-section {
  padding: 80px 0;
  background-color: #222222;
}

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

.page-th-thao .mobile-app-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.page-th-thao .mobile-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-th-thao .mobile-text h2 {
  text-align: left;
}

.page-th-thao .mobile-text h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-th-thao .mobile-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-th-thao .mobile-text ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23DC143C" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-8.83"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #CCCCCC;
  font-size: 1.1em;
}

/* Promotions Section */
.page-th-thao .promotions-section {
  padding: 80px 0;
  background-color: #1A1A1A;
  text-align: center;
}

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

.page-th-thao .promo-item {
  background-color: #2C2C2C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-th-thao .promo-item:hover {
  transform: translateY(-10px);
}

.page-th-thao .promo-item h3 {
  color: #DC143C;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-th-thao .promo-item h3 .promo-link {
  color: #DC143C;
  transition: color 0.3s ease;
}

.page-th-thao .promo-item h3 .promo-link:hover {
  color: #FFD700;
}

.page-th-thao .promo-item p {
  font-size: 1em;
  color: #B0B0B0;
}

/* Getting Started Section */
.page-th-thao .getting-started-section {
  padding: 80px 0;
  background-color: #222222;
  text-align: center;
}

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

.page-th-thao .step-item {
  background-color: #2C2C2C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-th-thao .step-item h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-th-thao .step-item h3 .step-link {
  color: #FFD700;
  transition: color 0.3s ease;
}

.page-th-thao .step-item h3 .step-link:hover {
  color: #DC143C;
}

.page-th-thao .step-item p {
  font-size: 1em;
  color: #B0B0B0;
}

/* Responsible Gambling Section */
.page-th-thao .responsible-gambling-section {
  padding: 80px 0;
  background-color: #1A1A1A;
  text-align: center;
}

.page-th-thao .responsible-gambling-section h2 {
  margin-bottom: 40px;
}

/* FAQ Section */
.page-th-thao .faq-section {
  padding: 80px 0;
  background-color: #222222;
}

.page-th-thao .faq-list {
  margin-top: 40px;
}

.page-th-thao .faq-item {
  margin-bottom: 15px;
  border: 1px solid #333333;
  border-radius: 8px;
  overflow: hidden;
}

.page-th-thao .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #2C2C2C;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-th-thao .faq-question:hover {
  background-color: #3A3A3A;
}

.page-th-thao .faq-question h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin: 0;
}

.page-th-thao .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #DC143C;
  transition: transform 0.3s ease;
}

.page-th-thao .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-th-thao .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #1A1A1A;
}

.page-th-thao .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 25px;
  border-top: 1px solid #333333;
}

.page-th-thao .faq-answer p {
  color: #B0B0B0;
  font-size: 1em;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-th-thao .hero-content h1 {
    font-size: 3em;
  }
  .page-th-thao .hero-content p {
    font-size: 1.2em;
  }
  .page-th-thao .section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-th-thao .hero-banner {
    padding: 60px 15px;
  }
  .page-th-thao .hero-content h1 {
    font-size: 2.5em;
  }
  .page-th-thao .hero-content p {
    font-size: 1.1em;
  }
  .page-th-thao .cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-th-thao .section-title {
    font-size: 2em;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .page-th-thao p {
    font-size: 1em;
  }
  .page-th-thao .features-grid, .page-th-thao .sports-grid, .page-th-thao .live-betting-advantages, .page-th-thao .promo-grid, .page-th-thao .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-th-thao .feature-item, .page-th-thao .sport-card, .page-th-thao .advantage-item, .page-th-thao .promo-item, .page-th-thao .step-item {
    padding: 25px;
  }
  .page-th-thao .feature-item h3, .page-th-thao .sport-card h3, .page-th-thao .advantage-item h3, .page-th-thao .promo-item h3, .page-th-thao .step-item h3 {
    font-size: 1.6em;
  }
  .page-th-thao .mobile-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-th-thao .mobile-text {
    text-align: center;
  }
  .page-th-thao .mobile-text h2, .page-th-thao .mobile-text h3 {
    text-align: center;
  }
  .page-th-thao .mobile-text ul {
    padding-left: 0;
  }
  .page-th-thao .mobile-text ul li {
    text-align: left;
    background-position: center left;
  }
  .page-th-thao .faq-question {
    padding: 15px 20px;
  }
  .page-th-thao .faq-question h3 {
    font-size: 1.2em;
  }
  .page-th-thao .faq-toggle {
    font-size: 1.5em;
  }
  .page-th-thao .faq-answer {
    padding: 0 20px;
  }
  .page-th-thao .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-th-thao .hero-content h1 {
    font-size: 2em;
  }
  .page-th-thao .hero-content p {
    font-size: 1em;
  }
  .page-th-thao .section-title {
    font-size: 1.8em;
  }
  .page-th-thao .cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-th-thao .feature-item h3, .page-th-thao .sport-card h3, .page-th-thao .advantage-item h3, .page-th-thao .promo-item h3, .page-th-thao .step-item h3 {
    font-size: 1.4em;
  }
  .page-th-thao .faq-question h3 {
    font-size: 1.1em;
  }
  .page-th-thao .faq-toggle {
    font-size: 1.3em;
  }
}