.page-the-thao-bong-da__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small fixed top padding */
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #26A9E0 0%, #1A7BBF 100%);
}
.page-the-thao-bong-da__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.page-the-thao-bong-da__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Slightly darken the image to improve text readability */
}
.page-the-thao-bong-da__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
.page-the-thao-bong-da__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}
.page-the-thao-bong-da__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}
.page-the-thao-bong-da__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.page-the-thao-bong-da__btn-primary,
.page-the-thao-bong-da__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}
.page-the-thao-bong-da__btn-primary {
  background: #EA7C07;
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}
.page-the-thao-bong-da__btn-primary:hover {
  background: #C46600;
  border-color: #C46600;
}
.page-the-thao-bong-da__btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.page-the-thao-bong-da__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.page-the-thao-bong-da__section {
  padding: 60px 0;
}
.page-the-thao-bong-da__light-bg {
  background: #FFFFFF;
  color: #333333;
}
.page-the-thao-bong-da__dark-bg {
  background: #26A9E0;
  color: #FFFFFF;
}
.page-the-thao-bong-da__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-the-thao-bong-da__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
  color: inherit; /* Inherit color from section background */
}
.page-the-thao-bong-da__article-body {
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: justify;
  max-width: 100%;
}
.page-the-thao-bong-da__article-body p {
  margin-bottom: 1em;
}
.page-the-thao-bong-da__article-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: inherit;
}
.page-the-thao-bong-da__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 1em;
}
.page-the-thao-bong-da__list li {
  margin-bottom: 0.5em;
}
.page-the-thao-bong-da__numbered-list {
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
}
.page-the-thao-bong-da__numbered-list li {
  margin-bottom: 25px;
  position: relative;
  padding-left: 45px;
}
.page-the-thao-bong-da__numbered-list li h3 {
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 5px;
  color: inherit;
}
.page-the-thao-bong-da__numbered-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0px;
  width: 35px;
  height: 35px;
  background: #EA7C07;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.page-the-thao-bong-da__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.page-the-thao-bong-da__grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.page-the-thao-bong-da__grid-layout--reverse-on-mobile {
  grid-template-columns: 1fr 1fr;
}
.page-the-thao-bong-da__grid-layout .page-the-thao-bong-da__image-block {
  text-align: center;
}
.page-the-thao-bong-da__grid-layout .page-the-thao-bong-da__content-image {
  margin: 0 auto;
}

.page-the-thao-bong-da__btn-text {
  display: inline-block;
  color: #26A9E0; /* Brand color for text links */
  text-decoration: underline;
  font-weight: 600;
  margin-top: 10px;
  transition: color 0.3s ease;
}
.page-the-thao-bong-da__btn-text:hover {
  color: #1A7BBF;
}
.page-the-thao-bong-da__btn-margin-top {
  margin-top: 20px;
}

/* FAQ Section */
.page-the-thao-bong-da__faq-section {
  padding: 60px 0;
}
.page-the-thao-bong-da__faq-list {
  max-width: 900px;
  margin: 0 auto;
}
details.page-the-thao-bong-da__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
details.page-the-thao-bong-da__faq-item summary.page-the-thao-bong-da__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-the-thao-bong-da__faq-item summary.page-the-thao-bong-da__faq-question::-webkit-details-marker {
  display: none;
}
details.page-the-thao-bong-da__faq-item summary.page-the-thao-bong-da__faq-question:hover {
  background: rgba(255, 255, 255, 0.2);
}
.page-the-thao-bong-da__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFFFFF;
}
.page-the-thao-bong-da__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFFFFF;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-the-thao-bong-da__faq-item .page-the-thao-bong-da__faq-answer {
  padding: 0 20px 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0 0 5px 5px;
  color: #f0f0f0;
}

/* All images general responsive styles */
.page-the-thao-bong-da img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* All buttons general responsive styles */
.page-the-thao-bong-da__cta-button,
.page-the-thao-bong-da__btn-primary,
.page-the-thao-bong-da__btn-secondary,
.page-the-thao-bong-da a[class*="button"],
.page-the-thao-bong-da a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* All button containers general responsive styles */
.page-the-thao-bong-da__cta-buttons,
.page-the-thao-bong-da__button-group,
.page-the-thao-bong-da__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Media Queries */
@media (max-width: 1024px) {
  .page-the-thao-bong-da__hero-content {
    padding: 15px;
  }
  .page-the-thao-bong-da__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-the-thao-bong-da__hero-description {
    font-size: 1rem;
  }
  .page-the-thao-bong-da__btn-primary,
  .page-the-thao-bong-da__btn-secondary {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-the-thao-bong-da__section {
    padding: 40px 0;
  }
  .page-the-thao-bong-da__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 30px;
  }
  .page-the-thao-bong-da__article-body {
    font-size: 1rem;
  }
  .page-the-thao-bong-da__grid-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-the-thao-bong-da__grid-layout--reverse-on-mobile {
    grid-template-areas: "image-block" "text-block";
  }
  .page-the-thao-bong-da__grid-layout--reverse-on-mobile .page-the-thao-bong-da__image-block {
    grid-area: image-block;
  }
  .page-the-thao-bong-da__grid-layout--reverse-on-mobile .page-the-thao-bong-da__text-block {
    grid-area: text-block;
  }
  .page-the-thao-bong-da__numbered-list li {
    padding-left: 40px;
  }
  .page-the-thao-bong-da__numbered-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .page-the-thao-bong-da__faq-qtext {
    font-size: 1rem;
  }
  .page-the-thao-bong-da__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 849px) {
  .page-the-thao-bong-da__hero-image img {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-the-thao-bong-da__hero-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .page-the-thao-bong-da__hero-image img {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important;
  }
  .page-the-thao-bong-da__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-the-thao-bong-da__hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .page-the-thao-bong-da__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* 产品展示图区域 (Not applicable, this page is not homepage and no gameshow) */
  /* This page does not have a products grid section, so no specific rule is needed for it. */
  
  /* 装饰主标题 + 长文 SEO 区 */
  .page-the-thao-bong-da__section {
    padding: 30px 0;
  }
  .page-the-thao-bong-da__container {
    padding: 0 15px;
  }
  .page-the-thao-bong-da__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 25px;
  }
  .page-the-thao-bong-da__article-body {
    font-size: 0.9rem;
    text-align: left;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-the-thao-bong-da__article-body p {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-the-thao-bong-da__article-body h3 {
    font-size: 1.2rem;
  }
  .page-the-thao-bong-da__content-image {
    margin: 20px auto !important;
  }
  .page-the-thao-bong-da__grid-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-the-thao-bong-da__grid-layout--reverse-on-mobile {
    grid-template-areas: "image-block" "text-block"; /* Ensure order is consistent with desktop or reversed as specified */
  }
  .page-the-thao-bong-da__list {
    margin-left: 15px;
  }
  .page-the-thao-bong-da__numbered-list li {
    padding-left: 35px;
  }
  .page-the-thao-bong-da__numbered-list li::before {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    top: 2px;
  }
  
  /* 通用图片与容器 */
  .page-the-thao-bong-da img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-the-thao-bong-da__section,
  .page-the-thao-bong-da__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 按钮与按钮容器 */
  .page-the-thao-bong-da__btn-primary,
  .page-the-thao-bong-da__btn-secondary,
  .page-the-thao-bong-da a[class*="button"],
  .page-the-thao-bong-da 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-bong-da__cta-buttons,
  .page-the-thao-bong-da__button-group,
  .page-the-thao-bong-da__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-bong-da__cta-buttons {
    display: flex;
    flex-direction: column; /* Ensure vertical stacking on mobile */
  }

  /* FAQ */
  details.page-the-thao-bong-da__faq-item summary.page-the-thao-bong-da__faq-question {
    padding: 15px;
  }
  .page-the-thao-bong-da__faq-qtext {
    font-size: 0.95rem;
  }
  .page-the-thao-bong-da__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
    margin-left: 10px;
  }
  details.page-the-thao-bong-da__faq-item .page-the-thao-bong-da__faq-answer {
    padding: 0 15px 15px;
  }
}