.page-the-thao {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light background */
  background-color: #FFFFFF; /* Matches body background */
}

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

.page-the-thao__section-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-the-thao__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

.page-the-thao__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

/* Main Banner Section */
.page-the-thao__main-banner-section {
  padding-top: 10px; /* Small top padding as body has header offset */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #e0f2f7, #ffffff);
}

.page-the-thao__main-banner-container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
  flex-wrap: wrap;
}

.page-the-thao__main-banner-content {
  flex: 1;
  min-width: 300px;
}

.page-the-thao__main-banner-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #1e1765;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-the-thao__main-banner-description {
  font-size: 18px;
  color: #555555;
  margin-bottom: 30px;
}

.page-the-thao__main-banner-image {
  flex: 1;
  min-width: 400px;
  text-align: center;
}

.page-the-thao__main-banner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-the-thao__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary,
.page-the-thao__btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
}

.page-the-thao__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-the-thao__btn-primary:hover {
  background-color: #1e87b3;
  border-color: #1e87b3;
}

.page-the-thao__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-the-thao__btn-secondary:hover {
  background-color: #f0f8ff;
  color: #1e87b3;
  border-color: #1e87b3;
}

.page-the-thao__btn-small {
  padding: 10px 20px;
  font-size: 14px;
  background-color: #EA7C07;
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-the-thao__btn-small:hover {
  background-color: #c96706;
  border-color: #c96706;
}

/* General Content Sections */
.page-the-thao__overview-section,
.page-the-thao__sports-types-section,
.page-the-thao__betting-types-section,
.page-the-thao__guide-section,
.page-the-thao__promotions-section,
.page-the-thao__why-choose-section,
.page-the-thao__faq-section {
  padding: 80px 0;
}

.page-the-thao__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-the-thao__dark-bg .page-the-thao__section-title,
.page-the-thao__dark-bg .page-the-thao__section-description,
.page-the-thao__dark-bg p,
.page-the-thao__dark-bg li {
  color: #FFFFFF;
}

.page-the-thao__dark-bg .page-the-thao__text-link {
  color: #f0f8ff;
}

.page-the-thao__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-the-thao__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-the-thao__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-the-thao__text-block {
  flex: 1;
  min-width: 300px;
}

.page-the-thao__image-block {
  flex: 1;
  min-width: 400px;
  text-align: center;
}

.page-the-thao__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

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

.page-the-thao__sports-card {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-the-thao__sports-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
}

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

.page-the-thao__guide-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  text-align: center;
}

.page-the-thao__guide-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #EA7C07;
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  border: 3px solid #FFFFFF;
}

.page-the-thao__guide-title {
  font-size: 20px;
  font-weight: 700;
  color: #26A9E0;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-the-thao__guide-image {
  margin-top: 60px;
  text-align: center;
}

.page-the-thao__guide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.page-the-thao__guide-more-info {
  text-align: center;
  margin-top: 40px;
  font-size: 17px;
}

/* Why Choose Section */
.page-the-thao__advantage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-the-thao__advantage-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-the-thao__advantage-title {
  font-size: 22px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
}

/* FAQ Section */
.page-the-thao__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-the-thao__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

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

.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}

.page-the-thao__faq-qtext {
  flex-grow: 1;
}

.page-the-thao__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  margin-left: 15px;
  color: #26A9E0;
}

.page-the-thao__faq-item[open] .page-the-thao__faq-toggle {
  content: '−';
}

.page-the-thao__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: #555555;
  background-color: #FFFFFF;
}

.page-the-thao__faq-answer p {
  margin-bottom: 10px;
}

.page-the-thao__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-the-thao__faq-more-info {
  text-align: center;
  margin-top: 30px;
  font-size: 17px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-the-thao__main-banner-container {
    padding: 40px 0;
  }

  .page-the-thao__overview-section,
  .page-the-thao__sports-types-section,
  .page-the-thao__betting-types-section,
  .page-the-thao__guide-section,
  .page-the-thao__promotions-section,
  .page-the-thao__why-choose-section,
  .page-the-thao__faq-section {
    padding: 60px 0;
  }

  .page-the-thao__content-wrapper,
  .page-the-thao__content-wrapper--reversed {
    flex-direction: column;
    gap: 30px;
  }

  .page-the-thao__main-banner-content,
  .page-the-thao__main-banner-image,
  .page-the-thao__text-block,
  .page-the-thao__image-block {
    min-width: unset;
    width: 100%;
  }

  .page-the-thao__main-banner-image,
  .page-the-thao__image-block {
    order: -1; /* Image first on mobile */
  }

  .page-the-thao__content-wrapper--reversed .page-the-thao__image-block {
    order: 0;
  }
}

@media (max-width: 768px) {
  .page-the-thao {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-the-thao__container {
    padding: 0 15px !important;
  }

  /* Main Banner section */
  .page-the-thao__main-banner-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-the-thao__main-banner-container {
    padding: 30px 0;
  }

  .page-the-thao__main-banner-title {
    font-size: clamp(28px, 8vw, 38px);
    text-align: center;
  }

  .page-the-thao__main-banner-description {
    font-size: 16px;
    text-align: center;
  }

  .page-the-thao__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }

  .page-the-thao__btn-primary,
  .page-the-thao__btn-secondary,
  .page-the-thao__btn-small {
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* General content sections */
  .page-the-thao__overview-section,
  .page-the-thao__sports-types-section,
  .page-the-thao__betting-types-section,
  .page-the-thao__guide-section,
  .page-the-thao__promotions-section,
  .page-the-thao__why-choose-section,
  .page-the-thao__faq-section {
    padding: 40px 0;
  }

  .page-the-thao__section-title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 20px;
  }

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

  .page-the-thao__content-wrapper {
    margin-top: 20px;
  }

  .page-the-thao__image-block img,
  .page-the-thao__main-banner-image img,
  .page-the-thao__guide-image img,
  .page-the-thao img { /* Universal image rule */
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Sports Grid */
  .page-the-thao__sports-grid {
    gap: 20px;
    margin-top: 20px;
  }

  .page-the-thao__sports-card {
    padding: 20px;
  }

  .page-the-thao__sports-card-title {
    font-size: 20px;
  }

  /* Guide Steps */
  .page-the-thao__guide-steps {
    gap: 20px;
    margin-top: 20px;
  }

  .page-the-thao__guide-item {
    padding: 25px;
  }

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

  .page-the-thao__guide-image {
    margin-top: 40px;
  }

  .page-the-thao__guide-more-info {
    margin-top: 30px;
    font-size: 16px;
  }

  /* Why Choose */
  .page-the-thao__advantage-list {
    gap: 20px;
    margin-top: 20px;
  }

  .page-the-thao__advantage-item {
    padding: 25px;
  }

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

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

  .page-the-thao__faq-item summary {
    padding: 15px 20px;
    font-size: 16px;
  }

  .page-the-thao__faq-toggle {
    font-size: 20px;
  }

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

  .page-the-thao__faq-more-info {
    margin-top: 20px;
    font-size: 16px;
  }
}