.page-the-thao {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #FFF1E8); /* Default to light text for dark background */
  background: var(--background, #140C0C);
}

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

.page-the-thao__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--gold, #F3C54D);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-the-thao__section-description {
  font-size: 1.1em;
  color: var(--text-main, #FFF1E8);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal;
  word-wrap: break-word;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C; /* Dark text for light button */
  border: none;
}

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

.page-the-thao__btn-secondary {
  background: var(--deep-red, #7E0D0D);
  color: var(--text-main, #FFF1E8);
  border: 2px solid var(--border, #6A1E1E);
}

.page-the-thao__btn-secondary:hover {
  background: var(--border, #6A1E1E);
  color: var(--text-main, #FFF1E8);
}

/* Hero Section */
.page-the-thao__hero-section {
  padding-top: 10px; /* Small top padding, not --header-offset */
  padding-bottom: 60px;
  background: var(--background, #140C0C);
}

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

.page-the-thao__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 12px;
}

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

.page-the-thao__hero-content {
  text-align: center;
  max-width: 800px;
}

.page-the-thao__main-title {
  font-size: 3.2em;
  font-weight: 700;
  color: var(--gold, #F3C54D);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-the-thao__hero-description {
  font-size: 1.2em;
  color: var(--text-main, #FFF1E8);
  margin-bottom: 30px;
}

.page-the-thao__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Intro Section (Why Choose) */
.page-the-thao__intro-section {
  background: var(--card-bg, #2A1212);
  padding: 60px 0;
}

.page-the-thao__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-the-thao__feature-item {
  background: var(--background, #140C0C);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border, #6A1E1E);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-the-thao__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold, #F3C54D);
  flex-shrink: 0;
}

.page-the-thao__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%; /* Ensure image is also circular */
}

.page-the-thao__feature-title {
  font-size: 1.8em;
  color: var(--gold, #F3C54D);
  margin-bottom: 15px;
}

.page-the-thao__feature-text {
  color: var(--text-main, #FFF1E8);
  font-size: 1em;
}

/* Sports Types Section */
.page-the-thao__sports-types-section {
  background: var(--background, #140C0C);
  padding: 60px 0;
}

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

.page-the-thao__sport-card {
  background: var(--card-bg, #2A1212);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border, #6A1E1E);
  display: flex;
  flex-direction: column;
}

.page-the-thao__sport-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-the-thao__sport-title {
  font-size: 1.6em;
  color: var(--gold, #F3C54D);
  padding: 20px 20px 10px;
}

.page-the-thao__sport-text {
  color: var(--text-main, #FFF1E8);
  padding: 0 20px 20px;
  flex-grow: 1;
}

/* Live Betting Section */
.page-the-thao__live-betting-section {
  background: var(--card-bg, #2A1212);
  padding: 60px 0;
}

.page-the-thao__live-betting-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-the-thao__live-betting-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-the-thao__live-betting-text p {
  color: var(--text-main, #FFF1E8);
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-the-thao__live-betting-text .page-the-thao__btn-primary {
  margin-top: 20px;
}

.page-the-thao__live-betting-image {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center;
}

.page-the-thao__live-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}

/* Promo Section */
.page-the-thao__promo-section {
  background: var(--background, #140C0C);
  padding: 60px 0;
}

.page-the-thao__promo-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap-reverse;
}

.page-the-thao__promo-image {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center;
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}

.page-the-thao__promo-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-the-thao__promo-text p {
  color: var(--text-main, #FFF1E8);
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-the-thao__promo-text .page-the-thao__btn-secondary {
  margin-top: 20px;
}

/* Guide Section */
.page-the-thao__guide-section {
  background: var(--card-bg, #2A1212);
  padding: 60px 0;
}

.page-the-thao__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-the-thao__guide-item {
  background: var(--background, #140C0C);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border, #6A1E1E);
}

.page-the-thao__guide-step-title {
  font-size: 1.8em;
  color: var(--gold, #F3C54D);
  margin-bottom: 15px;
}

.page-the-thao__guide-item p {
  color: var(--text-main, #FFF1E8);
  font-size: 1em;
}

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

/* FAQ Section */
.page-the-thao__faq-section {
  background: var(--background, #140C0C);
  padding: 60px 0;
}

.page-the-thao__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-the-thao__faq-item {
  background: var(--card-bg, #2A1212);
  border: 1px solid var(--border, #6A1E1E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-the-thao__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--gold, #F3C54D);
  cursor: pointer;
  list-style: none;
}

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

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

.page-the-thao__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-the-thao__faq-answer {
  padding: 0 20px 20px;
  color: var(--text-main, #FFF1E8);
  font-size: 1em;
  line-height: 1.6;
}

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

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

/* Mobile Styles */
@media (max-width: 1024px) {
  .page-the-thao__main-title {
    font-size: 2.8em;
  }
  .page-the-thao__hero-description {
    font-size: 1.1em;
  }
  .page-the-thao__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-the-thao__btn-primary, .page-the-thao__btn-secondary {
    width: 100%;
  }
  .page-the-thao__live-betting-content, .page-the-thao__promo-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-the-thao__live-betting-text, .page-the-thao__promo-text {
    order: 2;
  }
  .page-the-thao__live-betting-image, .page-the-thao__promo-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  .page-the-thao__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-the-thao__main-title {
    font-size: 2.2em;
  }
  .page-the-thao__hero-description {
    font-size: 1em;
  }
  .page-the-thao__hero-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;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-the-thao__section-title {
    font-size: 2em;
  }
  .page-the-thao__section-description {
    font-size: 0.95em;
  }
  .page-the-thao__container {
    padding: 30px 15px;
  }
  .page-the-thao__features-grid,
  .page-the-thao__sports-grid,
  .page-the-thao__guide-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-the-thao__feature-item,
  .page-the-thao__sport-card,
  .page-the-thao__guide-item,
  .page-the-thao__faq-item {
    padding: 20px;
  }
  .page-the-thao__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
  }
  .page-the-thao__icon-box-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .page-the-thao__sport-image {
    height: 180px;
  }
  .page-the-thao__live-betting-content,
  .page-the-thao__promo-content {
    flex-direction: column;
    gap: 20px;
  }
  .page-the-thao__live-betting-text, .page-the-thao__promo-text {
    order: 2;
    min-width: unset;
    width: 100%;
  }
  .page-the-thao__live-betting-image, .page-the-thao__promo-image {
    order: 1;
    min-width: unset;
    width: 100%;
  }
  .page-the-thao__live-image, .page-the-thao__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-the-thao img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-the-thao__live-betting-text .page-the-thao__btn-primary,
  .page-the-thao__promo-text .page-the-thao__btn-secondary,
  .page-the-thao__guide-cta .page-the-thao__btn-primary,
  .page-the-thao__faq-cta .page-the-thao__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-the-thao__faq-item summary {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-the-thao__faq-answer {
    padding: 0 15px 15px;
  }
}