.page-the-thao {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f5f5f5;
}

.page-the-thao__section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

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

.page-the-thao h1, .page-the-thao h2, .page-the-thao h3 {
  color: #8B0000; /* Dark Red */
  text-align: center;
  margin-bottom: 30px;
}

.page-the-thao h1 {
  font-size: 3.2em;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-the-thao h2 {
  font-size: 2.5em;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 15px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao h3 {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-the-thao p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-the-thao ul, .page-the-thao ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.page-the-thao li {
  margin-bottom: 8px;
  text-align: justify;
}

.page-the-thao__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-the-thao__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-the-thao__cta-button--small {
  font-size: 1em;
  padding: 12px 30px;
  margin-top: 20px;
}

/* Hero Section */
.page-the-thao__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Gradient background */
  color: #ffffff;
}

.page-the-thao__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-the-thao__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 0;
}

.page-the-thao__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-the-thao__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 12px;
  margin-top: -80px; /* Overlap with image */
}

.page-the-thao__hero-content h1 {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 3.5em;
  line-height: 1.2;
}

.page-the-thao__hero-content p {
  color: #ffffff;
  font-size: 1.15em;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Why Choose Us Section */
.page-the-thao__why-choose-us {
  background-color: #f9f9f9;
}

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

.page-the-thao__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-the-thao__feature-item h3 {
  color: #8B0000;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-the-thao__feature-item h3 a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-the-thao__feature-item h3 a:hover {
  color: #FFD700;
}

.page-the-thao__feature-item p {
  color: #555;
  font-size: 1em;
  text-align: center;
}

.page-the-thao__feature-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Sports Types Section */
.page-the-thao__sports-types ul {
  list-style-type: disc;
  color: #444;
}

.page-the-thao__sports-types li strong {
  color: #8B0000;
}

/* Promotions Section */
.page-the-thao__promotions {
  background-color: #fff;
}

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

.page-the-thao__promo-card {
  background: linear-gradient(145deg, #FFFDE7, #FFECB3);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #FFD700;
}

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

.page-the-thao__promo-card h3 {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-the-thao__promo-card h3 a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-the-thao__promo-card h3 a:hover {
  color: #FFD700;
}

.page-the-thao__promo-card p {
  color: #666;
  font-size: 0.95em;
  text-align: center;
}

.page-the-thao__promo-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-the-thao__promo-note {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
}

.page-the-thao__promo-note a {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

.page-the-thao__promo-note a:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* How to Bet Section */
.page-the-thao__how-to-bet ol {
  list-style-type: decimal;
  color: #444;
  padding-left: 20px;
}

.page-the-thao__how-to-bet li {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
}

.page-the-thao__how-to-bet li strong {
  color: #8B0000;
}

.page-the-thao__how-to-bet li a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-the-thao__how-to-bet li a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-the-thao__faq-list {
  margin-top: 30px;
}

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

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

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #8B0000;
  text-align: left;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #8B0000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fcfcfc;
}

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

.faq-answer p {
  color: #555;
  font-size: 1em;
  line-height: 1.7;
  text-align: justify;
}

/* Latest News Section */
.page-the-thao__latest-news {
  background-color: #f9f9f9;
}

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

.page-the-thao__news-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.page-the-thao__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-the-thao__news-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-the-thao__news-card h3 {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 10px;
  text-align: left;
}

.page-the-thao__news-card h3 a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-the-thao__news-card h3 a:hover {
  color: #FFD700;
}

.page-the-thao__news-card p {
  color: #666;
  font-size: 0.95em;
  flex-grow: 1;
  text-align: justify;
}

.page-the-thao__read-more {
  display: inline-block;
  margin-top: 15px;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-the-thao__read-more:hover {
  color: #8B0000;
  text-decoration: underline;
}

.page-the-thao__view-all-news {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
}

.page-the-thao__view-all-news a {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

.page-the-thao__view-all-news a:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* Final CTA Section */
.page-the-thao__final-cta {
  background: linear-gradient(135deg, #8B0000, #FFD700);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-the-thao__final-cta-content {
  max-width: 900px;
}

.page-the-thao__final-cta h2 {
  color: #ffffff;
  font-size: 2.8em;
  margin-bottom: 25px;
  border-bottom: none;
}

.page-the-thao__final-cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  text-align: center;
  color: #f0f0f0;
}

.page-the-thao__final-cta .page-the-thao__cta-button {
  background: #FFD700;
  color: #8B0000;
}

.page-the-thao__final-cta .page-the-thao__cta-button:hover {
  background: #e6c200;
  color: #6a0000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-the-thao__hero-content h1 {
    font-size: 3em;
  }
  .page-the-thao h2 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-the-thao__hero-section {
    padding: 60px 15px;
  }
  .page-the-thao__hero-content {
    padding: 20px;
    margin-top: -60px;
  }
  .page-the-thao__hero-content h1 {
    font-size: 2.5em;
  }
  .page-the-thao__hero-content p {
    font-size: 1em;
  }
  .page-the-thao__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-the-thao__section {
    padding: 40px 0;
  }
  .page-the-thao h2 {
    font-size: 1.8em;
  }
  .page-the-thao h3 {
    font-size: 1.4em;
  }
  .page-the-thao__features-grid, .page-the-thao__promo-grid, .page-the-thao__news-grid {
    grid-template-columns: 1fr;
  }
  .page-the-thao__feature-item, .page-the-thao__promo-card, .page-the-thao__news-card {
    padding: 20px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 10px 20px 20px;
  }
  .page-the-thao__final-cta h2 {
    font-size: 2.2em;
  }
  .page-the-thao__final-cta p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-the-thao__hero-content h1 {
    font-size: 2em;
  }
  .page-the-thao__hero-content p {
    font-size: 0.9em;
  }
  .page-the-thao h2 {
    font-size: 1.5em;
  }
  .page-the-thao h3 {
    font-size: 1.2em;
  }
  .page-the-thao__cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-the-thao__hero-image img {
    border-radius: 8px;
  }
  .page-the-thao__hero-content {
    border-radius: 8px;
  }
}