/* Base styles for the Thể Thao page */
.page-the-thao {
  font-family: Arial, sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
}

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

.page-the-thao__section-title {
  font-size: clamp(28px, 4vw, 38px);
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

/* Hero Section */
.page-the-thao__hero-section {
  padding-top: 10px; /* Small top padding if shared.css handles body padding-top */
  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;
  gap: 40px;
  padding: 40px 16px;
}

.page-the-thao__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
  order: 2; /* Image below content on mobile, above on desktop */
}

.page-the-thao__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.2);
  display: block;
}

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

.page-the-thao__main-title {
  font-size: clamp(32px, 5vw, 50px);
  color: #2F6BFF; /* Primary Color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-the-thao__description {
  font-size: 18px;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
}

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

.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;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-the-thao__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-the-thao__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 15px rgba(111, 163, 255, 0.2);
}

.page-the-thao__btn-secondary:hover {
  background: #2F6BFF;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(111, 163, 255, 0.4);
}

/* Intro Section */
.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;
  margin-top: 40px;
}

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

.page-the-thao__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-the-thao__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #D6E2FF; /* Border */
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-the-thao__feature-title {
  font-size: 24px;
  color: #2F6BFF; /* Primary Color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-the-thao__feature-text {
  font-size: 16px;
  color: #1F2D3D; /* Text Main */
}

/* Sports Betting Section */
.page-the-thao__sports-betting-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

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

.page-the-thao__betting-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-the-thao__card-title {
  font-size: 22px;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
  padding: 0 20px;
  font-weight: bold;
}

.page-the-thao__card-text {
  font-size: 15px;
  color: #1F2D3D; /* Text Main */
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-the-thao__btn-tertiary {
  background: #6FA3FF; /* Secondary Color */
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 15px;
  margin: 0 auto;
}

.page-the-thao__btn-tertiary:hover {
  background: #2F6BFF; /* Primary Color */
}

/* Guide Section */
.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(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-the-thao__step-item {
  text-align: center;
  padding: 25px;
  background-color: #F4F7FB;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.page-the-thao__step-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #D6E2FF; /* Border color as background */
}

.page-the-thao__step-icon img {
  max-width: 80%;
  max-height: 80%;
  height: auto;
  display: block;
  border-radius: 50%; /* Ensure images maintain circular shape if needed */
}

.page-the-thao__step-title {
  font-size: 20px;
  color: #2F6BFF; /* Primary Color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-the-thao__step-text {
  font-size: 15px;
  color: #1F2D3D; /* Text Main */
}

.page-the-thao__center-cta {
  text-align: center;
  margin-top: 50px;
}

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

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

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

.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #000000; /* Custom Color_1776249996415 */
  cursor: pointer;
  background-color: #ffffff;
  position: relative;
  list-style: none;
}

.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: #2F6BFF;
}

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

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

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

.page-the-thao__faq-answer a {
  color: #2F6BFF;
  text-decoration: underline;
}

/* CTA Bottom Section */
.page-the-thao__cta-bottom-section {
  background: linear-gradient(90deg, #2F6BFF 0%, #6FA3FF 100%);
  padding: 60px 0;
  text-align: center;
}

.page-the-thao__cta-bottom-content .page-the-thao__section-title,
.page-the-thao__cta-bottom-content .page-the-thao__section-description {
  color: #ffffff;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-the-thao__hero-container {
    flex-direction: column;
    text-align: center;
  }
  .page-the-thao__hero-image {
    order: 1;
  }
  .page-the-thao__hero-content {
    order: 2;
  }
  .page-the-thao__cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Universal Mobile Content Area Padding & Box Sizing */
  .page-the-thao__container,
  .page-the-thao__hero-container,
  .page-the-thao__cta-buttons,
  .page-the-thao__features-grid,
  .page-the-thao__betting-grid,
  .page-the-thao__guide-steps,
  .page-the-thao__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Hero Section */
  .page-the-thao__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }
  .page-the-thao__main-title {
    font-size: clamp(28px, 8vw, 36px) !important;
    margin-bottom: 15px !important;
  }
  .page-the-thao__description {
    font-size: 16px !important;
    margin-bottom: 25px !important;
  }

  /* Buttons */
  .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: 12px 20px !important;
    font-size: 15px !important;
  }
  .page-the-thao__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
  }

  /* Images */
  .page-the-thao img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* Module 1 (Intro) - Feature Icons (Circles) */
  .page-the-thao__icon-box-media {
    width: 150px !important;
    height: 150px !important;
    margin-bottom: 15px !important;
  }
  .page-the-thao__icon-box-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Sections */
  .page-the-thao__section-title {
    font-size: clamp(24px, 7vw, 32px) !important;
    margin-bottom: 15px !important;
  }
  .page-the-thao__section-description {
    font-size: 15px !important;
    margin-bottom: 30px !important;
  }
  .page-the-thao__intro-section,
  .page-the-thao__sports-betting-section,
  .page-the-thao__guide-section,
  .page-the-thao__faq-section,
  .page-the-thao__cta-bottom-section {
    padding: 40px 0 !important;
  }

  /* Betting Grid */
  .page-the-thao__betting-card {
    padding-bottom: 20px !important;
  }
  .page-the-thao__card-image {
    height: 180px !important;
    margin-bottom: 15px !important;
  }
  .page-the-thao__card-title {
    font-size: 20px !important;
    padding: 0 15px !important;
  }
  .page-the-thao__card-text {
    font-size: 14px !important;
    padding: 0 15px !important;
    margin-bottom: 15px !important;
  }

  /* Guide Steps */
  .page-the-thao__step-item {
    padding: 20px !important;
  }
  .page-the-thao__step-icon {
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 15px !important;
  }
  .page-the-thao__step-title {
    font-size: 18px !important;
  }
  .page-the-thao__step-text {
    font-size: 14px !important;
  }
  .page-the-thao__center-cta {
    margin-top: 30px !important;
  }

  /* FAQ */
  .page-the-thao__faq-question {
    padding: 15px !important;
    font-size: 16px !important;
  }
  .page-the-thao__faq-toggle {
    font-size: 20px !important;
  }
  .page-the-thao__faq-answer {
    padding: 0 15px 15px !important;
    font-size: 15px !important;
  }

  /* CTA Bottom */
  .page-the-thao__cta-bottom-section {
    padding: 40px 0 !important;
  }
}