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

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

.page-the-thao__section-padding {
  padding: 60px 0;
}

.page-the-thao__dark-section {
  background-color: #111111; /* Card BG */
}

.page-the-thao__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Main Color */
  line-height: 1.2;
}

.page-the-thao__text-block {
  font-size: 17px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Gradient */
  color: #111111;
  border: none;
}

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

.page-the-thao__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow Color */
  border: 2px solid #3A2A12; /* Border Color */
}

.page-the-thao__btn-secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  transform: translateY(-2px);
}

.page-the-thao__btn-link {
  color: #FFD36B; /* Glow Color */
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-the-thao__btn-link:hover {
  color: #F2C14E; /* Main Color */
}

/* Hero Section */
.page-the-thao__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  padding-top: 10px; /* Small top padding */
  overflow: hidden;
}

.page-the-thao__hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 700px;
  overflow: hidden;
  z-index: 0;
}

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

.page-the-thao__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-sizing: border-box;
}

.page-the-thao__main-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #FFD36B; /* Glow Color */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-the-thao__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Intro Section */
.page-the-thao__intro-section .page-the-thao__text-block {
  margin-bottom: 0;
}

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

.page-the-thao__sport-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.page-the-thao__sport-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-the-thao__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #F2C14E; /* Main Color */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-the-thao__card-description {
  font-size: 16px;
  color: #FFF6D6;
  padding: 0 15px;
  flex-grow: 1;
}

/* Cockfighting Section */
.page-the-thao__cockfighting-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  align-items: center;
  justify-content: center;
}

.page-the-thao__cockfighting-gallery img {
  max-width: 100%;
  flex: 1 1 500px;
  height: auto;
  border-radius: 10px;
  border: 2px solid #F2C14E;
  object-fit: cover;
}

.page-the-thao__cockfighting-info {
  flex: 1 1 400px;
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-the-thao__info-title {
  font-size: 28px;
  font-weight: 700;
  color: #FFD36B; /* Glow Color */
}

/* Why Choose Us Section */
.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-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
}

.page-the-thao__feature-card .page-the-thao__card-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.page-the-thao__cta-bottom {
  margin-top: 50px;
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* How To Bet Section */
.page-the-thao__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-the-thao__step-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-the-thao__step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Gradient */
  color: #111111;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.page-the-thao__step-card .page-the-thao__card-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.page-the-thao__cta-download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 10px;
  padding: 40px;
  margin-top: 60px;
  justify-content: center;
}

.page-the-thao__cta-download img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.page-the-thao__download-content {
  flex: 1 1 400px;
  text-align: left;
}

.page-the-thao__download-title {
  font-size: 32px;
  font-weight: 700;
  color: #FFD36B; /* Glow Color */
  margin-bottom: 15px;
}

.page-the-thao__download-content p {
  font-size: 17px;
  margin-bottom: 25px;
}

/* News Analysis Section */
.page-the-thao__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-the-thao__news-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-the-thao__news-card a {
  text-decoration: none;
  color: inherit;
}

.page-the-thao__news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-the-thao__news-card .page-the-thao__card-title {
  font-size: 20px;
  text-align: left;
  padding: 0 15px;
  margin-bottom: 10px;
  color: #F2C14E; /* Main Color */
}

.page-the-thao__news-card .page-the-thao__card-title:hover {
  color: #FFD36B;
}

.page-the-thao__news-date {
  font-size: 14px;
  color: #FFD36B;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-the-thao__news-card .page-the-thao__card-description {
  font-size: 15px;
  text-align: left;
  padding: 0 15px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-the-thao__read-more {
  display: inline-block;
  padding: 0 15px 15px;
  color: #FFD36B; /* Glow Color */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-the-thao__read-more:hover {
  color: #F2C14E; /* Main Color */
}

.page-the-thao__view-all-buttons {
  margin-top: 50px;
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ Section */
details.page-the-thao__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Border Color */
  overflow: hidden;
  background: #111111; /* Card BG */
}
details.page-the-thao__faq-item summary.page-the-thao__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__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: rgba(255, 211, 107, 0.05);
}
.page-the-thao__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E; /* Main Color */
}
.page-the-thao__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B; /* Glow Color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-the-thao__faq-item .page-the-thao__faq-answer {
  padding: 0 20px 20px;
  background: rgba(255, 211, 107, 0.02);
  border-radius: 0 0 5px 5px;
  font-size: 16px;
  color: #FFF6D6;
}

.page-the-thao__contact-cta {
  margin-top: 60px;
  text-align: center;
}

.page-the-thao__contact-cta p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #FFF6D6;
}

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

/* Media Queries */
@media (max-width: 1024px) {
  .page-the-thao__hero-section {
    min-height: 500px;
  }
  .page-the-thao__hero-content {
    max-width: 700px;
  }
  .page-the-thao__main-title {
    font-size: clamp(30px, 4.5vw, 48px);
  }
  .page-the-thao__hero-description {
    font-size: 18px;
  }
  .page-the-thao__section-title {
    font-size: clamp(26px, 3.5vw, 36px);
  }
  .page-the-thao__cockfighting-gallery img {
    flex: 1 1 400px;
  }
  .page-the-thao__cockfighting-info {
    flex: 1 1 350px;
  }
  .page-the-thao__download-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .page-the-thao__section-padding {
    padding: 40px 0;
  }
  .page-the-thao__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* HERO 主图区域 */
  .page-the-thao__hero-section {
    min-height: auto;
    padding-top: 10px; /* Small top padding */
    flex-direction: column;
  }
  .page-the-thao__hero-image {
    position: relative;
    height: 250px;
    max-height: 300px;
  }
  .page-the-thao__hero-image img {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset;
    width: 100% !important;
    height: auto !important;
  }
  .page-the-thao__hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    background: none;
    padding: 20px 15px;
    width: 100%;
    max-width: 100%;
  }
  .page-the-thao__main-title {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 10px;
  }
  .page-the-thao__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-the-thao__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* 通用图片与容器 */
  .page-the-thao img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-the-thao__sport-card img,
  .page-the-thao__news-card img {
     /* Adjust height for mobile cards */
  }

  /* 按钮与按钮容器 */
  .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;
    padding-right: 15px;
  }
  .page-the-thao__hero-cta-buttons,
  .page-the-thao__cta-bottom,
  .page-the-thao__view-all-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 15px;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-the-thao__section-title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 25px;
  }
  .page-the-thao__text-block {
    font-size: 15px;
    margin-bottom: 20px;
    text-align: left;
    padding: 0 10px;
  }

  /* Cockfighting Section */
  .page-the-thao__cockfighting-gallery {
    flex-direction: column;
    gap: 20px;
  }
  .page-the-thao__cockfighting-gallery img {
    flex: none;
    width: 100%;
  }
  .page-the-thao__cockfighting-info {
    flex: none;
    width: 100%;
    padding: 20px;
  }
  .page-the-thao__info-title {
    font-size: 24px;
  }

  /* How To Bet Section */
  .page-the-thao__steps-grid {
    gap: 20px;
  }
  .page-the-thao__step-card {
    padding: 20px;
  }
  .page-the-thao__cta-download {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .page-the-thao__download-content {
    text-align: center;
  }
  .page-the-thao__download-title {
    font-size: 26px;
  }
  .page-the-thao__download-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  /* News Analysis Section */
  .page-the-thao__news-grid {
    gap: 20px;
  }
  .page-the-thao__news-card .page-the-thao__card-title {
    font-size: 18px;
  }
  .page-the-thao__news-card .page-the-thao__card-description {
    font-size: 14px;
  }

  /* FAQ Section */
  details.page-the-thao__faq-item summary.page-the-thao__faq-question {
    padding: 15px;
  }
  .page-the-thao__faq-qtext {
    font-size: 16px;
  }
  details.page-the-thao__faq-item .page-the-thao__faq-answer {
    padding: 0 15px 15px;
  }
  .page-the-thao__contact-cta p {
    font-size: 16px;
  }
}