:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
}

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

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

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

.page-the-thao__section-description {
  font-size: clamp(16px, 2vw, 18px);
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-text-secondary);
}

.page-the-thao__text-block {
  padding: 40px 15px;
  color: #333333; /* Default for light background */
}

.page-the-thao__text-block p {
  font-size: 16px;
  margin-bottom: 15px;
}

.page-the-thao__text-main {
  color: var(--color-text-main);
}

.page-the-thao__text-secondary {
  color: var(--color-text-secondary);
}

/* Buttons */
.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-the-thao__btn-primary {
  background: var(--color-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-the-thao__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-the-thao__btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.page-the-thao__btn-secondary:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.page-the-thao__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-the-thao__cta-buttons--center {
  margin-top: 40px;
}

.page-the-thao a.page-the-thao__link {
  color: var(--color-primary);
  text-decoration: underline;
}

.page-the-thao a.page-the-thao__link:hover {
  color: var(--color-secondary);
}

/* Hero Section */
.page-the-thao__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: var(--color-deep-green);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-the-thao__hero-image {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-the-thao__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-the-thao__hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 15px;
}

.page-the-thao__main-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--color-gold);
  line-height: 1.1;
}

.page-the-thao__hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--color-text-main);
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Intro Section */
.page-the-thao__intro-section {
  background-color: #ffffff;
  color: #333333;
  padding: 60px 0;
}

.page-the-thao__intro-section .page-the-thao__section-title {
  color: #333333;
}

.page-the-thao__intro-section p {
  color: #555555;
  text-align: justify;
}

.page-the-thao__intro-section strong {
  color: var(--color-primary);
}

/* Categories Section */
.page-the-thao__categories-section {
  background-color: var(--color-card-bg);
  padding: 60px 0;
}

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

.page-the-thao__category-card {
  background: var(--color-deep-green);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  color: var(--color-text-main);
}

.page-the-thao__category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-the-thao__category-card .page-the-thao__card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.page-the-thao__category-card .page-the-thao__card-link {
  color: var(--color-gold);
  text-decoration: none;
}

.page-the-thao__category-card .page-the-thao__card-link:hover {
  text-decoration: underline;
}

.page-the-thao__category-card .page-the-thao__card-description {
  font-size: 15px;
  color: var(--color-text-secondary);
  padding: 0 20px;
  flex-grow: 1;
}

.page-the-thao__category-card .page-the-thao__btn-secondary {
  margin: 20px;
  width: calc(100% - 40px);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
}

.page-the-thao__category-card .page-the-thao__btn-secondary:hover {
  background: var(--color-button-gradient);
}

/* Promotions Section */
.page-the-thao__promotions-section {
  background-color: #f8f8f8;
  color: #333333;
  padding: 60px 0;
}

.page-the-thao__promotions-section .page-the-thao__section-title {
  color: #333333;
}

.page-the-thao__promotions-section p {
  color: #555555;
  text-align: center;
}

.page-the-thao__promo-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Guide Section */
.page-the-thao__guide-section {
  background-color: var(--color-background);
  padding: 60px 0;
}

.page-the-thao__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-the-thao__guide-list li {
  background: var(--color-deep-green);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: var(--color-text-main);
}

.page-the-thao__guide-step-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--color-gold);
}

.page-the-thao__guide-list li p {
  font-size: 16px;
  color: var(--color-text-secondary);
  text-align: justify;
}

/* Advantages Section */
.page-the-thao__advantages-section {
  background-color: #ffffff;
  color: #333333;
  padding: 60px 0;
}

.page-the-thao__advantages-section .page-the-thao__section-title {
  color: #333333;
}

.page-the-thao__advantages-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-the-thao__advantages-list li {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  color: #333333;
}

.page-the-thao__advantage-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.page-the-thao__advantages-list li p {
  font-size: 15px;
  color: #555555;
}

/* News & Tips Section */
.page-the-thao__news-tips-section {
  background-color: var(--color-background);
  padding: 60px 0;
}

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

.page-the-thao__article-card {
  background: var(--color-deep-green);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  color: var(--color-text-main);
}

.page-the-thao__article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-the-thao__article-card .page-the-thao__card-title {
  font-size: 22px;
  font-weight: 700;
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.page-the-thao__article-card .page-the-thao__card-link {
  color: var(--color-gold);
  text-decoration: none;
}

.page-the-thao__article-card .page-the-thao__card-link:hover {
  text-decoration: underline;
}

.page-the-thao__article-card .page-the-thao__card-meta {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0 20px 10px;
}

.page-the-thao__article-card .page-the-thao__card-description {
  font-size: 15px;
  color: var(--color-text-secondary);
  padding: 0 20px;
  flex-grow: 1;
}

.page-the-thao__article-card .page-the-thao__btn-secondary {
  margin: 20px;
  width: calc(100% - 40px);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
}

.page-the-thao__article-card .page-the-thao__btn-secondary:hover {
  background: var(--color-button-gradient);
}

/* FAQ Section */
.page-the-thao__faq-section {
  background-color: #f8f8f8;
  color: #333333;
  padding: 60px 0;
}

.page-the-thao__faq-section .page-the-thao__section-title {
  color: #333333;
}

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

details.page-the-thao__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-the-thao__faq-item summary.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-the-thao__faq-item summary.page-the-thao__faq-question::-webkit-details-marker {
  display: none;
}
details.page-the-thao__faq-item summary.page-the-thao__faq-question:hover {
  background: #f5f5f5;
}
.page-the-thao__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-the-thao__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-the-thao__faq-item .page-the-thao__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555;
}

/* CTA Section */
.page-the-thao__cta-section {
  background-color: var(--color-deep-green);
  padding: 60px 0;
  text-align: center;
}

.page-the-thao__cta-box {
  padding: 40px;
  background: var(--color-card-bg);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  max-width: 900px;
  margin: 0 auto;
}

.page-the-thao__cta-section .page-the-thao__section-title {
  color: var(--color-gold);
  margin-bottom: 15px;
}

.page-the-thao__cta-section .page-the-thao__section-description {
  color: var(--color-text-secondary);
  margin-bottom: 30px;
}

/* Global image styles */
.page-the-thao img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-the-thao__hero-image img {
    object-position: center bottom;
  }
  .page-the-thao__categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-the-thao__advantages-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-the-thao__articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 849px) {
  .page-the-thao__hero-image img {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
}

@media (max-width: 768px) {
  .page-the-thao__content-wrapper {
    padding: 15px;
  }

  .page-the-thao__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

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

  /* HERO Section Mobile */
  .page-the-thao__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
  }

  .page-the-thao__hero-image {
    margin-bottom: 20px;
    max-height: 400px;
  }

  .page-the-thao__main-title {
    font-size: 32px;
    margin-bottom: 10px;
  }

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

  .page-the-thao__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-the-thao__btn-primary,
  .page-the-thao__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 10px 15px;
    font-size: 16px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Intro Section Mobile */
  .page-the-thao__intro-section {
    padding: 40px 0;
  }

  .page-the-thao__intro-section p {
    font-size: 15px;
  }

  /* Categories Section Mobile */
  .page-the-thao__categories-section {
    padding: 40px 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  .page-the-thao__categories-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 20px;
    margin-top: 30px;
  }

  .page-the-thao__category-card .page-the-thao__card-title {
    font-size: 18px;
    margin: 15px 15px 8px;
  }

  .page-the-thao__category-card .page-the-thao__card-description {
    font-size: 13px;
    padding: 0 15px;
  }

  .page-the-thao__category-card .page-the-thao__btn-secondary {
    margin: 15px;
    width: calc(100% - 30px);
    font-size: 14px;
  }

  /* Promotions Section Mobile */
  .page-the-thao__promotions-section {
    padding: 40px 0;
  }

  .page-the-thao__promo-image {
    margin: 30px auto;
  }

  /* Guide Section Mobile */
  .page-the-thao__guide-section {
    padding: 40px 0;
  }

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

  .page-the-thao__guide-list li {
    padding: 20px;
    margin-bottom: 15px;
  }

  .page-the-thao__guide-step-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .page-the-thao__guide-list li p {
    font-size: 15px;
  }

  /* Advantages Section Mobile */
  .page-the-thao__advantages-section {
    padding: 40px 0;
  }

  .page-the-thao__advantages-list {
    margin-top: 30px;
    gap: 15px;
  }

  .page-the-thao__advantages-list li {
    padding: 20px;
  }

  .page-the-thao__advantage-title {
    font-size: 18px;
  }

  .page-the-thao__advantages-list li p {
    font-size: 14px;
  }

  /* News & Tips Section Mobile */
  .page-the-thao__news-tips-section {
    padding: 40px 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  .page-the-thao__articles-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 20px;
    margin-top: 30px;
  }

  .page-the-thao__article-card img {
    
  }

  .page-the-thao__article-card .page-the-thao__card-title {
    font-size: 18px;
    margin: 15px 15px 8px;
  }

  .page-the-thao__article-card .page-the-thao__card-meta {
    font-size: 13px;
    margin: 0 15px 8px;
  }

  .page-the-thao__article-card .page-the-thao__card-description {
    font-size: 14px;
    padding: 0 15px;
  }

  .page-the-thao__article-card .page-the-thao__btn-secondary {
    margin: 15px;
    width: calc(100% - 30px);
    font-size: 14px;
  }

  /* FAQ Section Mobile */
  .page-the-thao__faq-section {
    padding: 40px 0;
  }

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

  details.page-the-thao__faq-item summary.page-the-thao__faq-question { padding: 15px; }
  .page-the-thao__faq-qtext { font-size: 15px; }
  details.page-the-thao__faq-item .page-the-thao__faq-answer {
    padding: 0 15px 15px;
  }

  /* CTA Section Mobile */
  .page-the-thao__cta-section {
    padding: 40px 0;
  }

  .page-the-thao__cta-box {
    padding: 30px 20px;
  }

  .page-the-thao__cta-section .page-the-thao__section-title {
    font-size: 26px;
  }

  .page-the-thao__cta-section .page-the-thao__section-description {
    font-size: 15px;
  }

  /* General Image & Container Mobile */
  .page-the-thao img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-the-thao__section,
  .page-the-thao__card,
  .page-the-thao__container,
  .page-the-thao__content-wrapper,
  .page-the-thao__text-block,
  .page-the-thao__cta-box {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}