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

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

.page-the-thao a:hover {
  color: #FFC107;
}

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

.page-the-thao .text-center {
  text-align: center;
}

.page-the-thao h1, .page-the-thao h2, .page-the-thao h3 {
  color: #E8A900;
  margin-bottom: 20px;
  text-align: center;
}

.page-the-thao h1 {
  font-size: 3.2em;
  font-weight: bold;
  line-height: 1.2;
}

.page-the-thao h2 {
  font-size: 2.5em;
  font-weight: bold;
  padding-top: 40px;
  margin-bottom: 30px;
}

.page-the-thao h3 {
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 20px;
}

.page-the-thao p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #D0D0D0;
}

.page-the-thao .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #E8A900;
  color: #0A1930;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-the-thao .cta-button:hover {
  background: #FFC107;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 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: linear-gradient(135deg, #0A1930 0%, #1A2A40 100%);
}

.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%;
  margin-bottom: 30px;
}

.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 20px rgba(0, 0, 0, 0.4);
}

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

.page-the-thao .hero-content h1 {
  color: #E8A900;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* General Sections */
.page-the-thao .section-intro, 
.page-the-thao .section-sports-types, 
.page-the-thao .section-advantages, 
.page-the-thao .section-promotions, 
.page-the-thao .section-guide, 
.page-the-thao .section-tips, 
.page-the-thao .section-faq, 
.page-the-thao .section-cta-bottom {
  padding: 60px 0;
}

.page-the-thao .section-intro {
  background-color: #1A2A40;
}

.page-the-thao .section-sports-types {
  background-color: #0A1930;
}

.page-the-thao .section-advantages {
  background-color: #1A2A40;
}

.page-the-thao .section-promotions {
  background-color: #0A1930;
}

.page-the-thao .section-guide {
  background-color: #1A2A40;
}

.page-the-thao .section-tips {
  background-color: #0A1930;
}

.page-the-thao .section-faq {
  background-color: #1A2A40;
}

.page-the-thao .section-cta-bottom {
  background: linear-gradient(90deg, #E8A900, #FFC107);
  color: #0A1930;
  padding: 80px 20px;
}

.page-the-thao .section-cta-bottom h2, .page-the-thao .section-cta-bottom p {
  color: #0A1930;
  text-shadow: none;
}

.page-the-thao .section-cta-bottom .cta-button {
  background: #0A1930;
  color: #E8A900;
}

.page-the-thao .section-cta-bottom .cta-button:hover {
  background: #1A2A40;
  color: #FFC107;
}

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

.page-the-thao .sport-card {
  background-color: #1A2A40;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-the-thao .sport-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

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

.page-the-thao .sport-card h3 {
  font-size: 1.6em;
  color: #E8A900;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-the-thao .sport-card h3 a {
  color: #E8A900;
  text-decoration: none;
}

.page-the-thao .sport-card h3 a:hover {
  color: #FFC107;
}

.page-the-thao .sport-card p {
  font-size: 1em;
  color: #D0D0D0;
  flex-grow: 1;
}

.page-the-thao .btn-read-more {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #E8A900;
  color: #0A1930;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-the-thao .btn-read-more:hover {
  background-color: #FFC107;
  color: #0A1930;
}

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

.page-the-thao .advantage-item {
  background-color: #0A1930;
  border: 1px solid #E8A900;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao .advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.page-the-thao .advantage-item h3 {
  font-size: 1.5em;
  color: #E8A900;
}

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

/* Promotion Grid */
.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: #1A2A40;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao .promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

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

.page-the-thao .promo-card h3 {
  font-size: 1.6em;
  color: #E8A900;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-the-thao .promo-card p {
  font-size: 1em;
  color: #D0D0D0;
}

.page-the-thao .btn-promo {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #E8A900;
  color: #0A1930;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-the-thao .btn-promo:hover {
  background-color: #FFC107;
  color: #0A1930;
}

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

.page-the-thao .step-item {
  background-color: #0A1930;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-the-thao .step-item h3 {
  font-size: 1.5em;
  color: #E8A900;
}

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

.page-the-thao .btn-step {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #E8A900;
  color: #0A1930;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-the-thao .btn-step:hover {
  background-color: #FFC107;
  color: #0A1930;
}

/* Tip List */
.page-the-thao .tip-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-the-thao .tip-list li {
  background-color: #1A2A40;
  border-left: 5px solid #E8A900;
  margin-bottom: 20px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-the-thao .tip-list li strong {
  color: #E8A900;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-the-thao .tip-list li p {
  color: #D0D0D0;
  font-size: 1em;
}

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

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1A2A40;
  color: #E8A900;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 1px solid #2A3B50;
  border-radius: 8px;
}

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

.faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #E8A900;
  text-align: left;
}

.faq-toggle {
  font-size: 2em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #E8A900;
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #0A1930;
  color: #D0D0D0;
  border-left: 1px solid #2A3B50;
  border-right: 1px solid #2A3B50;
  border-bottom: 1px solid #2A3B50;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
  color: #D0D0D0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-the-thao h1 {
    font-size: 2.8em;
  }
  .page-the-thao h2 {
    font-size: 2em;
  }
  .page-the-thao .hero-content p {
    font-size: 1.1em;
  }
  .page-the-thao .sports-grid, .page-the-thao .advantage-grid, .page-the-thao .promo-grid, .page-the-thao .step-by-step {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-the-thao .sport-card .sport-image, .page-the-thao .promo-card .promo-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-the-thao .hero-section {
    padding: 60px 15px;
  }
  .page-the-thao .hero-image img {
    border-radius: 8px;
  }
  .page-the-thao h1 {
    font-size: 2.2em;
  }
  .page-the-thao h2 {
    font-size: 1.8em;
  }
  .page-the-thao h3 {
    font-size: 1.4em;
  }
  .page-the-thao p {
    font-size: 1em;
  }
  .page-the-thao .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-the-thao .section-intro, 
  .page-the-thao .section-sports-types, 
  .page-the-thao .section-advantages, 
  .page-the-thao .section-promotions, 
  .page-the-thao .section-guide, 
  .page-the-thao .section-tips, 
  .page-the-thao .section-faq, 
  .page-the-thao .section-cta-bottom {
    padding: 40px 0;
  }
  .page-the-thao .container {
    padding: 0 15px;
  }
  .page-the-thao .sport-card, .page-the-thao .advantage-item, .page-the-thao .promo-card, .page-the-thao .step-item {
    padding: 20px;
  }
  .page-the-thao .sport-card .sport-image, .page-the-thao .promo-card .promo-image {
    height: 160px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.8em;
  }
  .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-the-thao h1 {
    font-size: 1.8em;
  }
  .page-the-thao h2 {
    font-size: 1.6em;
  }
  .page-the-thao .hero-content p {
    font-size: 0.95em;
  }
  .page-the-thao .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-the-thao .sports-grid, .page-the-thao .advantage-grid, .page-the-thao .promo-grid, .page-the-thao .step-by-step {
    grid-template-columns: 1fr;
  }
  .page-the-thao .sport-card .sport-image, .page-the-thao .promo-card .promo-image {
    height: 150px;
  }
  .faq-question {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 15px;
  }
  .faq-question h3 {
    font-size: 1em;
    margin-bottom: 8px;
  }
  .faq-toggle {
    align-self: flex-end;
    margin-top: -30px;
    font-size: 1.5em;
  }
  .faq-answer {
    padding: 12px 15px;
  }
}