.page-the-thao {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D;
  background-color: #F4F7FB;
}

.page-the-thao__hero-section {
  padding-top: 10px; /* Adjusted for shared header offset */
  padding-bottom: 60px;
  background-color: #F4F7FB;
}

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

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

.page-the-thao__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1F2D3D; /* Text Main */
}

.page-the-thao__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

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

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

.page-the-thao__hero-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-the-thao__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
}

.page-the-thao__section-description {
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #1F2D3D;
}

.page-the-thao__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
}

.page-the-thao__content-area--center {
  text-align: center;
}

.page-the-thao__intro-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-the-thao__feature-item {
  background-color: #F4F7FB;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-the-thao__feature-item:hover {
  transform: translateY(-5px);
}

.page-the-thao__icon-box-media {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #D6E2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
}

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

.page-the-thao__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-the-thao__feature-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-the-thao__sports-categories-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

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

.page-the-thao__sport-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-the-thao__sport-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-the-thao__sport-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 20px 20px 10px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-the-thao__sport-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0 20px 20px;
  flex-grow: 1;
  color: #1F2D3D;
}

.page-the-thao__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  margin: 0 20px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  background-color: #6FA3FF; /* Auxiliary color */
  color: #FFFFFF;
  transition: background-color 0.3s ease;
}

.page-the-thao__btn-tertiary:hover {
  background-color: #4A8BFF;
}

.page-the-thao__live-betting-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

.page-the-thao__live-betting-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #1F2D3D;
}

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

.page-the-thao__live-betting-image img {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-the-thao__promotions-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

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

.page-the-thao__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-the-thao__promo-card img {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-the-thao__promo-title {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 20px 20px 10px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-the-thao__promo-text {
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0 20px 20px;
  flex-grow: 1;
  color: #1F2D3D;
}

.page-the-thao__guide-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-the-thao__step-item {
  background-color: #F4F7FB;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-the-thao__step-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #D6E2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
}

.page-the-thao__step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-the-thao__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-the-thao__step-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #1F2D3D;
}

.page-the-thao__btn-link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  background-color: transparent;
  color: #2F6BFF; /* Primary color */
  border: 1px solid #2F6BFF;
  transition: all 0.3s ease;
}

.page-the-thao__btn-link:hover {
  background-color: #2F6BFF;
  color: #FFFFFF;
}

.page-the-thao__guide-footer-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
  color: #1F2D3D;
}

.page-the-thao__guide-footer-text a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
}

.page-the-thao__guide-footer-text a:hover {
  text-decoration: underline;
}

.page-the-thao__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

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

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

.page-the-thao__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  cursor: pointer;
  list-style: none;
  outline: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.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.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF;
}

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

.page-the-thao__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

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

.page-the-thao__faq-answer a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
}

.page-the-thao__faq-answer a:hover {
  text-decoration: underline;
}

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

.page-the-thao__cta-section {
  padding: 60px 0;
  background-color: #2F6BFF; /* Primary color */
  color: #FFFFFF;
  text-align: center;
}

.page-the-thao__cta-section .page-the-thao__section-title,
.page-the-thao__cta-section .page-the-thao__section-description {
  color: #FFFFFF;
}

.page-the-thao__cta-section .page-the-thao__section-title {
  margin-bottom: 20px;
}

.page-the-thao__cta-section .page-the-thao__section-description {
  margin-bottom: 40px;
}

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

.page-the-thao__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-the-thao__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-the-thao__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background-color: #FFFFFF;
  color: #2F6BFF; /* Primary color */
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid #2F6BFF;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-the-thao__btn-secondary:hover {
  background-color: #2F6BFF;
  color: #FFFFFF;
}

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

/* Mobile 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__hero-cta-buttons {
    justify-content: center;
  }

  .page-the-thao__live-betting-content {
    flex-direction: column;
  }

  .page-the-thao__live-betting-text {
    text-align: center;
  }

  .page-the-thao__live-betting-text .page-the-thao__btn-primary {
    margin: 0 auto;
  }
}

@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: 20px 15px;
    gap: 20px;
  }

  .page-the-thao__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-the-thao__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

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

  .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: 12px 15px;
    font-size: 1rem;
  }

  .page-the-thao__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-the-thao__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-the-thao__section-description {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .page-the-thao__content-area {
    padding: 30px 15px;
  }

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

  .page-the-thao__icon-box-media {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .page-the-thao__feature-title {
    font-size: 1.2rem;
  }

  /* Sports Categories Section */
  .page-the-thao__sports-categories-section {
    padding: 40px 0;
  }

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

  .page-the-thao__sport-card img {
    
  }

  .page-the-thao__btn-tertiary {
    max-width: calc(100% - 40px) !important; /* Account for horizontal padding */
    width: calc(100% - 40px) !important;
    margin-left: 20px;
    margin-right: 20px;
    padding: 10px 15px;
    font-size: 0.95rem;
  }

  /* Live Betting Section */
  .page-the-thao__live-betting-section {
    padding: 40px 0;
  }

  .page-the-thao__live-betting-content {
    gap: 30px;
  }

  .page-the-thao__live-betting-text {
    text-align: center;
  }

  .page-the-thao__live-betting-text .page-the-thao__btn-primary {
    margin: 0 auto;
  }

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

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

  .page-the-thao__promo-card img {
    
  }

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

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

  .page-the-thao__step-icon {
    width: 80px;
    height: 80px;
  }

  .page-the-thao__btn-link {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

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

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

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

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

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

  /* Universal Image Responsiveness */
  .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,
  .page-the-thao__hero-section,
  .page-the-thao__intro-section,
  .page-the-thao__sports-categories-section,
  .page-the-thao__live-betting-section,
  .page-the-thao__promotions-section,
  .page-the-thao__guide-section,
  .page-the-thao__faq-section,
  .page-the-thao__cta-section,
  .page-the-thao__feature-item,
  .page-the-thao__sport-card,
  .page-the-thao__promo-card,
  .page-the-thao__step-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Specific override for round images to maintain aspect ratio */
  .page-the-thao__icon-box-media {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover;
  }

  .page-the-thao__step-icon {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
  }

  /* Button containers */
  .page-the-thao__hero-cta-buttons,
  .page-the-thao__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}