.page-the-thao {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F3F8FF); /* Default text color for dark body background */
  background-color: var(--deep-navy, #08162B);
}

.page-the-thao__content-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-the-thao__section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-main, #F3F8FF);
  line-height: 1.2;
}

.page-the-thao__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-secondary, #AFC4E8);
}

/* Hero Section */
.page-the-thao__hero-section {
  padding-top: 10px; /* Small top padding to avoid header overlap */
  padding-bottom: 60px;
  background: var(--deep-navy, #08162B);
  color: var(--text-main, #F3F8FF);
}

.page-the-thao__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
}

.page-the-thao__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
}

.page-the-thao__hero-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-main, #F3F8FF);
}

.page-the-thao__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-secondary, #AFC4E8);
}

.page-the-thao__hero-cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-the-thao__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-the-thao__hero-main-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-the-thao__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-the-thao__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  box-shadow: 0 5px 15px rgba(43, 115, 246, 0.4);
}

.page-the-thao__btn-secondary {
  background: transparent;
  color: var(--text-main, #F3F8FF);
  border: 2px solid var(--border, #244D84);
}

.page-the-thao__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #1D5FD1;
  color: #1D5FD1;
}

/* Intro Section */
.page-the-thao__intro-section {
  padding: 60px 0;
  background-color: var(--deep-navy, #08162B);
  color: var(--text-main, #F3F8FF);
}

.page-the-thao__dark-section {
  background-color: var(--deep-navy, #08162B);
  color: var(--text-main, #F3F8FF);
}

/* Sports Types Section */
.page-the-thao__sports-types-section {
  padding: 60px 0;
  background-color: var(--card-bg, #10233F);
}

.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: var(--card-bg, #10233F);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--divider, #1B3357);
  color: var(--text-main, #F3F8FF);
}

.page-the-thao__light-bg {
    background-color: var(--card-bg, #10233F);
    color: var(--text-main, #F3F8FF);
}

.page-the-thao__sport-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-the-thao__sport-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold, #F2C14E);
}

.page-the-thao__sport-text {
  font-size: 16px;
  color: var(--text-secondary, #AFC4E8);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Advantages Section */
.page-the-thao__advantages-section {
  padding: 60px 0;
  background-color: var(--deep-navy, #08162B);
  color: var(--text-main, #F3F8FF);
}

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

.page-the-thao__advantage-item {
  text-align: center;
  padding: 25px;
  background-color: var(--card-bg, #10233F);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--divider, #1B3357);
}

.page-the-thao__advantage-img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-the-thao__advantage-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold, #F2C14E);
}

.page-the-thao__advantage-text {
  font-size: 16px;
  color: var(--text-secondary, #AFC4E8);
}

/* Guide Section */
.page-the-thao__guide-section {
  padding: 60px 0;
  background-color: var(--card-bg, #10233F);
  color: var(--text-main, #F3F8FF);
}

.page-the-thao__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-the-thao__guide-item {
  background-color: var(--deep-navy, #08162B);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--divider, #1B3357);
}

.page-the-thao__guide-step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--gold, #F2C14E);
}

.page-the-thao__guide-step-text {
  font-size: 17px;
  color: var(--text-secondary, #AFC4E8);
}

.page-the-thao__guide-step-text a {
    color: var(--auxiliary-color, #1D5FD1);
    text-decoration: underline;
}

.page-the-thao__guide-step-text a:hover {
    color: var(--glow, #4FA8FF);
}

.page-the-thao__guide-cta-container {
    text-align: center;
    margin-top: 40px;
}

/* Promotions Section */
.page-the-thao__promotions-section {
  padding: 60px 0;
  background-color: var(--deep-navy, #08162B);
  color: var(--text-main, #F3F8FF);
}

.page-the-thao__promo-cta-container {
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section */
.page-the-thao__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg, #10233F);
  color: var(--text-main, #F3F8FF);
}

.page-the-thao__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-the-thao__faq-item {
  background-color: var(--deep-navy, #08162B);
  border: 1px solid var(--divider, #1B3357);
  border-radius: 10px;
  overflow: hidden;
  color: var(--text-main, #F3F8FF);
}

.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-main, #F3F8FF);
  list-style: none;
  user-select: none;
}

.page-the-thao__faq-question::-webkit-details-marker {
  display: none;
}

.page-the-thao__faq-toggle {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--gold, #F2C14E);
}

.page-the-thao__faq-item[open] .page-the-thao__faq-toggle {
  transform: rotate(45deg);
}

.page-the-thao__faq-answer {
  padding: 0 25px 20px;
  font-size: 17px;
  color: var(--text-secondary, #AFC4E8);
  line-height: 1.6;
}

/* Final CTA Section */
.page-the-thao__cta-final-section {
  padding: 60px 0;
  background-color: var(--deep-navy, #08162B);
  color: var(--text-main, #F3F8FF);
}

.page-the-thao__final-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* General Image Styling */
.page-the-thao img {
  max-width: 100%;
  height: auto;
  display: block; /* Ensures proper spacing */
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
  .page-the-thao__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-the-thao__hero-content {
    text-align: center;
  }

  .page-the-thao__hero-cta-group {
    justify-content: center;
  }

  .page-the-thao__hero-image {
    order: -1; /* Move image above content on smaller screens */
  }

  .page-the-thao__sports-grid, .page-the-thao__advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-the-thao__section-title {
    font-size: clamp(26px, 4vw, 42px);
  }

  .page-the-thao__hero-title {
    font-size: clamp(30px, 5vw, 48px);
  }

  .page-the-thao__hero-description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-the-thao__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-the-thao__content-container {
    padding: 30px 15px !important;
  }

  .page-the-thao__section-title {
    font-size: clamp(24px, 6vw, 36px) !important;
    margin-bottom: 15px;
  }

  .page-the-thao__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-the-thao__hero-title {
    font-size: clamp(28px, 7vw, 40px) !important;
    margin-bottom: 15px;
  }

  .page-the-thao__hero-description {
    font-size: 16px !important;
    margin-bottom: 25px;
  }

  /* Buttons responsive */
  .page-the-thao__cta-button,
  .page-the-thao__btn-primary,
  .page-the-thao__btn-secondary,
  .page-the-thao a[class*="button"],
  .page-the-thao a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-the-thao__hero-cta-group,
  .page-the-thao__final-cta-group {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
  }

  .page-the-thao__guide-cta-container,
  .page-the-thao__promo-cta-container {
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden;
  }

  /* General images responsive */
  .page-the-thao img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-the-thao__sports-grid,
  .page-the-thao__advantages-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-the-thao__sport-card,
  .page-the-thao__advantage-item,
  .page-the-thao__guide-item,
  .page-the-thao__faq-item {
    padding: 20px !important;
  }

  .page-the-thao__sport-img,
  .page-the-thao__advantage-img {
    height: auto !important;
  }

  /* Specific module styles for 768px */
  .page-the-thao__intro-section, 
  .page-the-thao__sports-types-section, 
  .page-the-thao__advantages-section, 
  .page-the-thao__guide-section, 
  .page-the-thao__promotions-section, 
  .page-the-thao__faq-section, 
  .page-the-thao__cta-final-section {
    padding: 30px 0 !important;
  }

  .page-the-thao__guide-list {
    margin-top: 20px;
  }

  .page-the-thao__faq-list {
    margin-top: 20px;
  }

  .page-the-thao__faq-question {
    font-size: 17px;
    padding: 15px 20px;
  }

  .page-the-thao__faq-answer {
    font-size: 15px;
    padding: 0 20px 15px;
  }
}