.page-the-thao {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
}

.page-the-thao__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
  box-sizing: border-box;
}

/* Hero Section */
.page-the-thao__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #7A0E0E; /* Deep Red */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-the-thao__hero-image-wrapper {
  width: 100%;
  max-height: 550px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

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

.page-the-thao__hero-content {
  position: relative;
  z-index: 2;
  padding: 20px 15px 60px;
  max-width: 900px;
}

.page-the-thao__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  color: #FFD86A; /* Gold-like for title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-the-thao__hero-description {
  font-size: 1.1em;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* General Section Styling */
.page-the-thao__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em); /* Responsive font size */
  color: #FFD86A; /* Gold-like for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

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

.page-the-thao__dark-section {
  background-color: #7A0E0E; /* Deep Red */
  padding: 60px 0;
}

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

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #7A0E0E; /* Deep Red for text */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-the-thao__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-the-thao__btn-secondary {
  background-color: transparent;
  color: #FFD86A; /* Gold for text */
  border: 2px solid #FFD86A; /* Gold border */
}

.page-the-thao__btn-secondary:hover {
  background-color: #FFD86A;
  color: #7A0E0E; /* Deep Red for text */
}

.page-the-thao__btn-tertiary {
  background-color: transparent;
  color: #FFF5E1; /* Text Main */
  border: 1px solid #FFF5E1;
  font-size: 0.95em;
  padding: 10px 20px;
}

.page-the-thao__btn-tertiary:hover {
  background-color: #FFF5E1;
  color: #7A0E0E; /* Deep Red for text */
}

/* Benefits Section */
.page-the-thao__benefits-section {
  padding: 60px 0;
  background-color: #B71C1C; /* Background */
}

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

.page-the-thao__benefit-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-the-thao__benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 0;
}

.page-the-thao__benefit-title {
  font-size: 1.4em;
  color: #FFD86A; /* Gold for titles */
  margin-bottom: 15px;
  font-weight: 600;
  z-index: 1;
}

.page-the-thao__benefit-text {
  font-size: 1em;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 20px;
  z-index: 1;
  flex-grow: 1;
}

.page-the-thao__benefit-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
  object-fit: cover;
  z-index: 1;
}

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

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

.page-the-thao__step-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-the-thao__step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #7A0E0E; /* Deep Red */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 216, 106, 0.3);
}

.page-the-thao__step-title {
  font-size: 1.3em;
  color: #FFD86A; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-the-thao__step-text {
  font-size: 0.95em;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-the-thao__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  margin-bottom: 20px;
  display: block;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
  object-fit: cover;
}

/* Strategy Section */
.page-the-thao__strategy-section {
  padding: 60px 0;
  background-color: #7A0E0E; /* Deep Red */
}

.page-the-thao__strategy-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-the-thao__strategy-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
  object-fit: cover;
}

.page-the-thao__strategy-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-the-thao__strategy-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-the-thao__strategy-item:last-child {
  margin-bottom: 0;
}

.page-the-thao__strategy-item-title {
  font-size: 1.25em;
  color: #FFD86A; /* Gold */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-the-thao__strategy-item-text {
  font-size: 0.95em;
  color: #FFF5E1; /* Text Main */
}

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

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

details.page-the-thao__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #F2B544; /* Border */
  overflow: hidden;
  background: #D32F2F; /* Card BG */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

details.page-the-thao__faq-item summary.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 1;
}

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: #C91F17; /* Main Color */
}

.page-the-thao__faq-qtext {
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD86A; /* Gold */
}

.page-the-thao__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD86A; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-the-thao__faq-item .page-the-thao__faq-answer {
  padding: 0 25px 25px;
  background: #C91F17; /* Main Color */
  border-radius: 0 0 10px 10px;
  color: #FFF5E1; /* Text Main */
}

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

/* CTA Section */
.page-the-thao__cta-section {
  padding: 60px 0;
  background-color: #7A0E0E; /* Deep Red */
  text-align: center;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-the-thao__hero-image-wrapper {
    max-height: 450px;
  }

  .page-the-thao__hero-content {
    padding-bottom: 40px;
  }

  .page-the-thao__strategy-content {
    flex-direction: column;
    align-items: center;
  }

  .page-the-thao__strategy-image {
    max-width: 80%;
    margin-bottom: 30px;
  }

  .page-the-thao__strategy-list {
    max-width: 80%;
  }
}

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

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

  /* Hero Section */
  .page-the-thao__hero-section {
    padding-top: 10px;
  }

  .page-the-thao__hero-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

  .page-the-thao__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  /* General Section Titles and Descriptions */
  .page-the-thao__section-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
    margin-bottom: 15px;
  }

  .page-the-thao__section-description {
    font-size: 0.9em;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  /* Buttons - Mobile specific */
  .page-the-thao__btn-primary,
  .page-the-thao__btn-secondary,
  .page-the-thao__btn-tertiary,
  .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;
    padding-right: 15px;
  }

  .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;
    flex-direction: column;
  }

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

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

  .page-the-thao__benefit-title {
    font-size: 1.2em;
  }

  .page-the-thao__benefit-text {
    font-size: 0.9em;
  }

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

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

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

  .page-the-thao__step-title {
    font-size: 1.1em;
  }

  .page-the-thao__step-text {
    font-size: 0.85em;
  }

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

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

  .page-the-thao__strategy-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 20px;
  }

  .page-the-thao__strategy-list {
    max-width: 100%;
  }

  .page-the-thao__strategy-item {
    padding: 20px;
  }

  .page-the-thao__strategy-item-title {
    font-size: 1.1em;
  }

  .page-the-thao__strategy-item-text {
    font-size: 0.85em;
  }

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

  details.page-the-thao__faq-item summary.page-the-thao__faq-question {
    padding: 15px 20px;
  }

  .page-the-thao__faq-qtext {
    font-size: 1em;
  }

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

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

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

  /* Generic image rules for content area */
  .page-the-thao img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-the-thao__benefits-grid,
  .page-the-thao__guide-steps {
    overflow-x: hidden;
  }
}