.page-the-thao {
  font-family: Arial, sans-serif;
  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: 40px 16px;
  box-sizing: border-box;
}

.page-the-thao__section-title {
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F3F8FF; /* Text Main */
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao__text-block {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
  color: #AFC4E8; /* Text Secondary */
}

.page-the-thao__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-the-thao__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #08162B 0%, #113B7A 100%);
}

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

.page-the-thao__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  color: #F3F8FF; /* Text Main */
}

.page-the-thao__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #F3F8FF; /* Text Main */
}

.page-the-thao__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #AFC4E8; /* Text Secondary */
}

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

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
  max-width: 100%;
  display: inline-block;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
  color: #F3F8FF; /* Text Main */
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-the-thao__btn-secondary {
  background: #10233F; /* Card BG */
  color: #F3F8FF; /* Text Main */
  border: 2px solid #244D84; /* Border color */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-the-thao__btn-secondary:hover {
  background: #113B7A; /* Main color */
  border-color: #1D5FD1; /* Auxiliary color */
  transform: translateY(-2px);
}

.page-the-thao__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

.page-the-thao__hero-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Sports List Section */
.page-the-thao__sports-list-section {
  padding: 60px 0;
  background-color: #08162B; /* Deep Navy */
}

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

.page-the-thao__sport-card {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
  border: 1px solid #244D84; /* Border color */
}

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

.page-the-thao__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-the-thao__card-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F3F8FF; /* Text Main */
  padding: 0 15px;
}

.page-the-thao__card-description {
  font-size: 1em;
  line-height: 1.5;
  color: #AFC4E8; /* Text Secondary */
  padding: 0 15px;
}

/* Guide Section */
.page-the-thao__guide-section {
  padding: 60px 0;
  background-color: #113B7A; /* Main color */
}

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

.page-the-thao__guide-item {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border color */
}

.page-the-thao__guide-step-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
}

.page-the-thao__guide-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 20px;
}

/* Tips Section */
.page-the-thao__tips-section {
  padding: 60px 0;
  background-color: #08162B; /* Deep Navy */
}

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

.page-the-thao__tip-item {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #244D84; /* Border color */
}

.page-the-thao__tip-image {
  width: 100%;
  height: 220px; /* Fixed height */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-the-thao__tip-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F3F8FF; /* Text Main */
  padding: 0 15px;
}

.page-the-thao__tip-item p {
  font-size: 1em;
  line-height: 1.5;
  color: #AFC4E8; /* Text Secondary */
  padding: 0 15px;
  margin-bottom: 20px;
}

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

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

.page-the-thao__faq-item {
  background-color: #10233F; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border color */
  overflow: hidden;
}

.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.3em;
  font-weight: bold;
  color: #F3F8FF; /* Text Main */
  cursor: pointer;
  background-color: #113B7A; /* Main color */
  border-bottom: 1px solid #1B3357; /* Divider */
}

.page-the-thao__faq-item[open] .page-the-thao__faq-question {
  border-bottom: 1px solid #1B3357; /* Divider */
}

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

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

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

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

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-the-thao__hero-section {
    padding-bottom: 40px;
  }

  .page-the-thao__hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .page-the-thao__hero-content,
  .page-the-thao__hero-image {
    flex: 1 1 100%;
    width: 100%;
  }

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

  .page-the-thao__section-title {
    font-size: 2.5em;
  }

  .page-the-thao__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  /* General content area padding */
  .page-the-thao__container {
    padding: 30px 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-the-thao__hero-title {
    font-size: clamp(2em, 8vw, 2.5em) !important;
  }

  .page-the-thao__hero-description {
    font-size: 1em !important;
  }

  .page-the-thao__hero-cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }

  /* Buttons */
  .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-left: 15px !important;
    padding-right: 15px !important;
  }
  
  /* Button containers */
  .page-the-thao__hero-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;
  }

  /* Section Titles */
  .page-the-thao__section-title {
    font-size: 2em !important;
    margin-bottom: 30px !important;
  }

  /* Text Blocks */
  .page-the-thao__text-block,
  .page-the-thao__card-description,
  .page-the-thao__guide-item p,
  .page-the-thao__tip-item p,
  .page-the-thao__faq-answer p {
    font-size: 0.95em !important;
    line-height: 1.5 !important;
  }

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

  .page-the-thao__card-image,
  .page-the-thao__tip-image {
    height: 180px !important;
  }

  /* Sports Grid */
  .page-the-thao__sports-grid,
  .page-the-thao__guide-steps,
  .page-the-thao__tips-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Card Titles */
  .page-the-thao__card-title,
  .page-the-thao__tip-title {
    font-size: 1.5em !important;
  }

  /* Guide Steps */
  .page-the-thao__guide-step-title {
    font-size: 1.4em !important;
  }

  /* FAQ Section */
  .page-the-thao__faq-question {
    font-size: 1.1em !important;
    padding: 15px !important;
  }

  .page-the-thao__faq-toggle {
    font-size: 1.2em !important;
  }

  .page-the-thao__faq-answer {
    padding: 15px !important;
  }
}