:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f8f8;
  --background-dark: #1a1a2e;
  --card-background: #ffffff;
  --border-color: #e0e0e0;
}

.page-the-thao {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

/* Hero Section */
.page-the-thao .hero-section {
  position: relative;
  width: 100%;
  height: 500px; /* Adjusted height for visual impact */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--text-light);
}

.page-the-thao .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-the-thao .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}

.page-the-thao .hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.page-the-thao-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-the-thao-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-the-thao .hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-the-thao-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-the-thao-btn.primary-btn {
  background: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

.page-the-thao-btn.primary-btn:hover {
  background: darken(var(--primary-color), 10%);
  color: var(--text-dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-the-thao-btn.secondary-btn {
  background: var(--secondary-color);
  color: var(--text-light);
  border-color: var(--secondary-color);
}

.page-the-thao-btn.secondary-btn:hover {
  background: lighten(var(--secondary-color), 10%);
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-the-thao section {
  padding: 60px 0;
}

.page-the-thao .intro-section {
  background: var(--background-light);
}

.page-the-thao .sports-types-section {
  background: var(--background-dark);
  color: var(--text-light);
}

.page-the-thao .why-choose-section {
  background: var(--background-light);
}

.page-the-thao .betting-guide-section {
  background: var(--secondary-color);
  color: var(--text-light);
}

.page-the-thao .promotions-section {
  background: var(--background-light);
}

.page-the-thao .faq-section {
  background: var(--background-dark);
  color: var(--text-light);
}

.page-the-thao .contact-cta-section {
  background: var(--primary-color);
  color: var(--secondary-color);
  text-align: center;
}

.page-the-thao-heading {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.page-the-thao .sports-types-section .page-the-thao-heading,
.page-the-thao .faq-section .page-the-thao-heading {
  color: var(--primary-color);
}

.page-the-thao-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Sports Grid */
.page-the-thao-sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-the-thao-sport-card {
  background: var(--card-background);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  color: var(--text-dark);
  transition: transform 0.3s ease;
}

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

.page-the-thao-sport-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-the-thao-sport-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-the-thao-sport-description {
  font-size: 1em;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-the-thao-btn.card-btn {
  padding: 10px 25px;
  font-size: 1em;
  background: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

.page-the-thao-btn.card-btn:hover {
  background: darken(var(--primary-color), 10%);
  color: var(--text-dark);
}

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

.page-the-thao-feature-item {
  background: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

.page-the-thao-feature-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-the-thao-feature-description {
  font-size: 1em;
  color: var(--text-dark);
}

/* Guide List */
.page-the-thao-guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-the-thao-guide-list li {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  font-size: 1.1em;
  color: var(--text-light);
}

.page-the-thao-guide-list li strong {
  color: var(--primary-color);
}

/* Promotions Grid */
.page-the-thao-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-the-thao-promo-card {
  background: var(--card-background);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
  color: var(--text-dark);
  transition: transform 0.3s ease;
}

.page-the-thao-promo-card:hover {
  transform: translateY(-5px);
}

.page-the-thao-promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-the-thao-promo-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-the-thao-promo-description {
  font-size: 1em;
  padding: 0 15px;
  margin-bottom: 20px;
}

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

.page-the-thao .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--card-background);
  color: var(--text-dark);
}

.page-the-thao .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-the-thao .faq-question:hover {
  background: #f5f5f5;
}

.page-the-thao .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--secondary-color);
}

.page-the-thao .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

.page-the-thao .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
}

.page-the-thao .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px 25px;
}

.page-the-thao .faq-answer p {
  margin: 0;
  color: var(--text-dark);
}

/* Contact CTA Section */
.page-the-thao .contact-cta-section .page-the-thao-heading {
  color: var(--secondary-color);
}

.page-the-thao .contact-cta-section .page-the-thao-paragraph {
  color: var(--secondary-color);
  max-width: 800px;
  margin: 20px auto 40px auto;
}

.page-the-thao .contact-cta-section .large-btn {
  padding: 18px 45px;
  font-size: 1.2em;
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-the-thao-title {
    font-size: 3em;
  }
  .page-the-thao-heading {
    font-size: 2em;
  }
  .page-the-thao-sport-title, .page-the-thao-promo-title {
    font-size: 1.5em;
  }
  .page-the-thao-feature-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-the-thao .hero-section {
    height: 400px;
  }
  .page-the-thao-title {
    font-size: 2.5em;
  }
  .page-the-thao-subtitle {
    font-size: 1.1em;
  }
  .page-the-thao .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-the-thao-btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-the-thao section {
    padding: 40px 0;
  }
  .page-the-thao-heading {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-the-thao-paragraph {
    font-size: 1em;
  }
  .page-the-thao-sports-grid, .page-the-thao-features-grid, .page-the-thao-promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-the-thao-sport-image, .page-the-thao-promo-image {
    height: 180px;
  }
  .page-the-thao .faq-question {
    padding: 15px 20px;
  }
  .page-the-thao .faq-question h3 {
    font-size: 1.1em;
  }
  .page-the-thao .faq-toggle {
    font-size: 20px;
  }
  .page-the-thao .faq-answer {
    padding: 0 20px;
  }
  .page-the-thao .faq-item.active .faq-answer {
    padding: 15px 20px 20px;
  }
  .page-the-thao .contact-cta-section .large-btn {
    padding: 15px 30px;
    font-size: 1.1em;
    margin: 10px 0;
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-the-thao .hero-section {
    height: 350px;
  }
  .page-the-thao-title {
    font-size: 2em;
  }
  .page-the-thao-subtitle {
    font-size: 0.9em;
  }
  .page-the-thao-btn {
    padding: 12px 25px;
    font-size: 1em;
    width: 90%;
  }
  .page-the-thao-heading {
    font-size: 1.5em;
  }
  .page-the-thao-guide-list li {
    padding: 15px;
    font-size: 1em;
  }
}