/* Base styles for the Thể Thao page */
.page-the-thao {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: var(--deep-navy); /* Body background from shared.css */
}

.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, 38px);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-the-thao__sub-title {
  font-size: 24px;
  color: #F2C14E; /* Gold */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-the-thao p {
  font-size: 16px;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 15px;
}

.page-the-thao ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-the-thao li {
  font-size: 16px;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 8px;
}

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

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

.page-the-thao__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  box-shadow: 0 0 15px #4FA8FF; /* Glow */
}

.page-the-thao__btn-secondary {
  background: transparent;
  color: #F3F8FF; /* Text Main */
  border: 2px solid #2B73F6;
}

.page-the-thao__btn-secondary:hover {
  background: #2B73F6;
  box-shadow: 0 0 15px #4FA8FF; /* Glow */
}

.page-the-thao__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-the-thao__cta-buttons--center {
  justify-content: center;
}

/* HERO Section */
.page-the-thao__hero-section {
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: var(--deep-navy);
}

.page-the-thao__hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-the-thao__hero-content {
  flex: 1 1 50%;
  text-align: left;
}

.page-the-thao__main-title {
  font-size: clamp(36px, 5vw, 54px);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-the-thao__hero-description {
  font-size: 18px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-the-thao__hero-image {
  flex: 1 1 40%;
  text-align: center;
}

.page-the-thao__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(79, 168, 255, 0.4); /* Glow */
  display: block;
}

/* Intro Section */
.page-the-thao__intro-section {
  padding: 60px 0;
  background-color: #10233F; /* Card BG */
}

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

.page-the-thao__feature-item {
  background-color: #08162B; /* Deep Navy */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border */
}

.page-the-thao__icon-box-media {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2C14E; /* Gold */
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-the-thao__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-the-thao__feature-title {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-the-thao__feature-text {
  font-size: 15px;
  color: #AFC4E8; /* Text Secondary */
}

/* Sports Categories & Betting Guide Sections */
.page-the-thao__sports-categories-section,
.page-the-thao__betting-guide-section {
  padding: 60px 0;
  background-color: var(--deep-navy);
}

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

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

.page-the-thao__content-text {
  flex: 1 1 50%;
}

.page-the-thao__content-image {
  flex: 1 1 40%;
  text-align: center;
}

.page-the-thao__content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(27, 51, 87, 0.5);
  display: block;
}

/* Promo Section */
.page-the-thao__promo-section {
  padding: 60px 0;
  background-color: #10233F; /* Card BG */
}

.page-the-thao__promo-card {
  display: flex;
  background-color: #08162B; /* Deep Navy */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
  border: 1px solid #244D84; /* Border */
}

.page-the-thao__promo-card img {
  flex: 1 1 40%;
  max-width: 40%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-the-thao__promo-content {
  flex: 1 1 60%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-the-thao__promo-title {
  font-size: 28px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-the-thao__promo-text {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 25px;
}

/* FAQ Section */
.page-the-thao__faq-section {
  padding: 60px 0;
  background-color: var(--deep-navy);
}

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

.page-the-thao__faq-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-the-thao__faq-item details {
  padding: 0;
}

.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F3F8FF; /* Text Main */
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-the-thao__faq-question:hover {
  background-color: #1B3357; /* Divider */
}

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

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

.page-the-thao__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

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

.page-the-thao__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
}

/* CTA Section */
.page-the-thao__cta-section {
  padding: 60px 0;
  background-color: #10233F; /* Card BG */
  text-align: center;
}

/* Responsive Styles */
@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__main-title {
    font-size: clamp(32px, 4.5vw, 48px);
  }

  .page-the-thao__content-grid {
    flex-direction: column;
  }

  .page-the-thao__content-grid--reversed {
    flex-direction: column;
  }

  .page-the-thao__promo-card {
    flex-direction: column;
  }

  .page-the-thao__promo-card img {
    max-width: 100%;
    width: 100%;
    max-height: 300px;
  }

  .page-the-thao__promo-content {
    padding: 30px;
  }
}

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

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

  .page-the-thao__hero-container {
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 20px;
  }

  .page-the-thao__main-title {
    font-size: clamp(28px, 6vw, 36px) !important;
  }

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

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

  .page-the-thao__btn-primary,
  .page-the-thao__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-the-thao__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-the-thao__section-title {
    font-size: clamp(24px, 5vw, 32px) !important;
  }

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

  .page-the-thao__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-the-thao__icon-box-media {
    width: 150px;
    height: 150px;
    border-width: 3px;
  }

  /* Sports Categories & Betting Guide Sections */
  .page-the-thao__sports-categories-section,
  .page-the-thao__betting-guide-section {
    padding: 40px 0;
  }

  .page-the-thao__content-grid {
    gap: 30px;
    margin-top: 30px;
  }

  .page-the-thao__content-text {
    padding: 0 15px;
  }

  .page-the-thao__content-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-the-thao p,
  .page-the-thao li {
    font-size: 15px;
  }

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

  /* Promo Section */
  .page-the-thao__promo-section {
    padding: 40px 0;
  }

  .page-the-thao__promo-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-the-thao__promo-content {
    padding: 30px 15px;
  }

  .page-the-thao__promo-title {
    font-size: 22px;
  }

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

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

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

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

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

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

.page-the-thao__section,
.page-the-thao__card,
.page-the-thao__container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  /* Specific override for __icon-box-media img to maintain square aspect ratio */
  .page-the-thao__icon-box-media img {
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Button containers */
  .page-the-thao__cta-buttons,
  .page-the-thao__button-group,
  .page-the-thao__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-the-thao__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}