/* style/the-thao.css */
:root {
  --primary-color: #0A2342;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f5f5f5;
  --bg-dark: #1a1a1a;
  --border-color: #e0e0e0;
}

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

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

.page-the-thao section {
  padding: 60px 0;
  text-align: center;
}

.page-the-thao .section-title {
  font-size: 3em;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-the-thao .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-the-thao .section-description {
  font-size: 1.2em;
  color: var(--text-dark);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao .description-text {
  font-size: 1.1em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-the-thao .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.page-the-thao .cta-button:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* 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-color: var(--primary-color);
  overflow: hidden;
}

.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;
}

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

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

.page-the-thao .hero-title {
  font-size: 3.8em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-the-thao .hero-description {
  font-size: 1.5em;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.page-the-thao .section-features {
  background-color: var(--bg-light);
}

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

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

.page-the-thao .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.page-the-thao .feature-heading {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

.page-the-thao .cta-center {
  margin-top: 60px;
}

/* Providers Section */
.page-the-thao .section-providers {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-the-thao .section-providers .section-title {
  color: var(--secondary-color);
}

.page-the-thao .section-providers .section-description {
  color: var(--text-light);
}

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

.page-the-thao .provider-card {
  background-color: #1a3a5a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-the-thao .provider-card:hover {
  transform: translateY(-10px);
  background-color: #2a4a6a;
}

.page-the-thao .provider-logo {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
}

.page-the-thao .provider-name {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-the-thao .provider-description {
  font-size: 1.1em;
  color: var(--text-light);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-the-thao .card-link {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-the-thao .card-link:hover {
  background: #e6c200;
}

/* How-To Section */
.page-the-thao .section-how-to {
  background-color: var(--bg-light);
}

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

.page-the-thao .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
  padding-top: 80px;
}

.page-the-thao .step-number {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-the-thao .step-heading {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-the-thao .step-text {
  font-size: 1.1em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-the-thao .step-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-the-thao .step-button:hover {
  background: #071930;
}

/* Promotions Section */
.page-the-thao .section-promotions {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-the-thao .section-promotions .section-title {
  color: var(--secondary-color);
}

.page-the-thao .section-promotions .section-description {
  color: var(--text-light);
}

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

.page-the-thao .promo-card {
  background-color: #1a3a5a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-the-thao .promo-card:hover {
  transform: translateY(-10px);
  background-color: #2a4a6a;
}

.page-the-thao .promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-the-thao .promo-text {
  font-size: 1.1em;
  color: var(--text-light);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-the-thao .promo-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-the-thao .promo-button:hover {
  background: #e6c200;
}

/* eSports Section */
.page-the-thao .section-esports {
  background-color: var(--bg-light);
}

.page-the-thao .esports-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-the-thao .esports-image {
  width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-the-thao .esports-text {
  width: 50%;
}

/* FAQ Section */
.page-the-thao .section-faq {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-the-thao .section-faq .section-title {
  color: var(--secondary-color);
}

.page-the-thao .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.faq-question:hover {
  background: #2a4a6a;
}

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

.faq-toggle {
  font-size: 2em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #0A2342;
  color: var(--text-light);
  border-top: none;
  border-radius: 0 0 8px 8px;
  text-align: left;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 25px;
  border: 1px solid #2a4a6a;
  border-top: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-the-thao .faq-text {
  margin: 0;
  font-size: 1.1em;
  line-height: 1.8;
}

/* Conclusion Section */
.page-the-thao .section-conclusion {
  background-color: var(--bg-light);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-the-thao .hero-title {
    font-size: 3em;
  }
  .page-the-thao .hero-description {
    font-size: 1.2em;
  }
  .page-the-thao .section-title {
    font-size: 2.5em;
  }
  .page-the-thao .esports-content {
    flex-direction: column;
    text-align: center;
  }
  .page-the-thao .esports-image,
  .page-the-thao .esports-text {
    width: 100%;
  }
  .page-the-thao .esports-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-the-thao section {
    padding: 40px 0;
  }
  .page-the-thao .hero-section {
    padding: 60px 15px;
  }
  .page-the-thao .hero-title {
    font-size: 2.5em;
  }
  .page-the-thao .hero-description {
    font-size: 1em;
  }
  .page-the-thao .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-the-thao .section-title {
    font-size: 2em;
  }
  .page-the-thao .section-description {
    font-size: 1em;
  }
  .page-the-thao .feature-item,
  .page-the-thao .provider-card,
  .page-the-thao .promo-card,
  .page-the-thao .step-item {
    padding: 25px;
  }
  .page-the-thao .feature-heading,
  .page-the-thao .provider-name,
  .page-the-thao .promo-heading,
  .page-the-thao .step-heading {
    font-size: 1.5em;
  }
  .page-the-thao .feature-icon,
  .page-the-thao .provider-logo {
    width: 150px;
    height: 120px;
  }
  .page-the-thao .step-item {
    padding-top: 70px;
  }
  .page-the-thao .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.8em;
    top: 15px;
    left: 25px;
  }
  .page-the-thao .faq-question {
    padding: 15px 20px;
  }
  .page-the-thao .faq-heading {
    font-size: 1.2em;
  }
  .faq-toggle {
    font-size: 1.8em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-the-thao .hero-title {
    font-size: 2em;
  }
  .page-the-thao .hero-description {
    font-size: 0.9em;
  }
  .page-the-thao .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-the-thao .section-title {
    font-size: 1.8em;
  }
  .page-the-thao .feature-grid,
  .page-the-thao .provider-grid,
  .page-the-thao .promo-grid,
  .page-the-thao .step-by-step {
    grid-template-columns: 1fr;
  }
  .page-the-thao .feature-icon,
  .page-the-thao .provider-logo {
    width: 120px;
    height: 100px;
  }
  .page-the-thao .promo-image {
    height: 200px;
  }
  .page-the-thao .esports-content {
    gap: 20px;
  }
  .page-the-thao .faq-heading {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
}