/* style/tai-xiu.css */
.page-tai-xiu {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #212529;
  background-color: #FFFFFF;
  line-height: 1.7;
}
.page-tai-xiu * {
  box-sizing: border-box;
}
.page-tai-xiu__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-tai-xiu__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 40px;
  background: linear-gradient(180deg, #EAF7FD 0%, #FFFFFF 100%);
}
.page-tai-xiu__hero-image-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.page-tai-xiu__hero-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(38, 169, 224, 0.25);
}
.page-tai-xiu__hero-content {
  width: 100%;
  max-width: 900px;
  margin: 28px auto 0;
  text-align: center;
}
.page-tai-xiu__hero-title {
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.2px;
  color: #0B4F6C;
  margin: 0 0 16px;
}
.page-tai-xiu__hero-desc {
  font-size: 1.05rem;
  color: #343A40;
  margin: 0 0 24px;
}
.page-tai-xiu__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.page-tai-xiu__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 100%;
}
.page-tai-xiu__btn--primary {
  background-color: #EA7C07;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(234, 124, 7, 0.35);
}
.page-tai-xiu__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(234, 124, 7, 0.45);
}
.page-tai-xiu__btn--secondary {
  background-color: #26A9E0;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(38, 169, 224, 0.3);
}
.page-tai-xiu__btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(38, 169, 224, 0.4);
}
.page-tai-xiu__intro-section,
.page-tai-xiu__why-section,
.page-tai-xiu__guide-section,
.page-tai-xiu__tips-section,
.page-tai-xiu__games-section,
.page-tai-xiu__trial-section,
.page-tai-xiu__faq-section {
  padding: 60px 0;
}
.page-tai-xiu__intro-section {
  background-color: #FFFFFF;
}
.page-tai-xiu__why-section {
  background-color: #F5FBFE;
}
.page-tai-xiu__guide-section {
  background-color: #FFFFFF;
}
.page-tai-xiu__tips-section {
  background-color: #F5FBFE;
}
.page-tai-xiu__games-section {
  background-color: #FFFFFF;
}
.page-tai-xiu__trial-section {
  background-color: #F5FBFE;
}
.page-tai-xiu__faq-section {
  background-color: #FFFFFF;
}
.page-tai-xiu__section-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0B4F6C;
  text-align: center;
  margin: 0 0 28px;
  line-height: 1.35;
}
.page-tai-xiu__text {
  font-size: 1.02rem;
  color: #343A40;
  margin: 0 0 18px;
}
.page-tai-xiu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.page-tai-xiu__card {
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(11, 79, 108, 0.08);
  border: 1px solid #E3F2FA;
  display: flex;
  flex-direction: column;
}
.page-tai-xiu__card-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.page-tai-xiu__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0B4F6C;
  margin: 18px 18px 10px;
  line-height: 1.4;
}
.page-tai-xiu__card-text {
  font-size: 0.96rem;
  color: #343A40;
  margin: 0 18px 20px;
}
.page-tai-xiu__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  counter-reset: step;
}
.page-tai-xiu__step {
  background-color: #F5FBFE;
  border-left: 5px solid #26A9E0;
  border-radius: 12px;
  padding: 22px 24px;
  counter-increment: step;
  box-shadow: 0 4px 14px rgba(38, 169, 224, 0.1);
}
.page-tai-xiu__step-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0B4F6C;
  margin: 0 0 10px;
}
.page-tai-xiu__step-title::before {
  content: counter(step) '. ';
  color: #EA7C07;
  font-weight: 800;
}
.page-tai-xiu__step-text {
  font-size: 0.95rem;
  color: #343A40;
  margin: 0;
}
.page-tai-xiu__tips-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.page-tai-xiu__tip {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #E3F2FA;
  box-shadow: 0 4px 14px rgba(11, 79, 108, 0.06);
}
.page-tai-xiu__tip-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #26A9E0;
  margin: 0 0 10px;
}
.page-tai-xiu__tip-text {
  font-size: 0.95rem;
  color: #343A40;
  margin: 0;
}
.page-tai-xiu__game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.page-tai-xiu__game-card {
  display: block;
  text-decoration: none;
  background-color: #F5FBFE;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #E3F2FA;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-tai-xiu__game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(38, 169, 224, 0.2);
}
.page-tai-xiu__game-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.page-tai-xiu__game-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0B4F6C;
  margin: 0;
  padding: 16px 16px 18px;
  text-align: center;
}
.page-tai-xiu__trial-frame-wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 26px;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(11, 79, 108, 0.18);
  background-color: #0B4F6C;
}
.page-tai-xiu__trial-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.page-tai-xiu__trial-cta {
  text-align: center;
}
.page-tai-xiu__faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.page-tai-xiu__faq-item {
  background-color: #F5FBFE;
  border-radius: 12px;
  padding: 22px 24px;
  border: 1px solid #E3F2FA;
}
.page-tai-xiu__faq-question {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0B4F6C;
  margin: 0 0 10px;
}
.page-tai-xiu__faq-answer {
  font-size: 0.95rem;
  color: #343A40;
  margin: 0;
}
.page-tai-xiu__cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #26A9E0 0%, #0B4F6C 100%);
}
.page-tai-xiu__cta-inner {
  text-align: center;
}
.page-tai-xiu__cta-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 16px;
  line-height: 1.35;
}
.page-tai-xiu__cta-text {
  font-size: 1.02rem;
  color: #EAF7FD;
  margin: 0 0 26px;
}
.page-tai-xiu__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.page-tai-xiu__cta-section .page-tai-xiu__btn--secondary {
  background-color: #FFFFFF;
  color: #0B4F6C;
}
.page-tai-xiu__cta-section .page-tai-xiu__btn--secondary:hover {
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.35);
}
@media (max-width: 1024px) {
  .page-tai-xiu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-tai-xiu__game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .page-tai-xiu {
    max-width: 100%;
    overflow-x: hidden;
  }
  .page-tai-xiu img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-tai-xiu__hero-section {
    padding: 10px 14px 30px;
  }
  .page-tai-xiu__hero-title {
    margin-bottom: 12px;
  }
  .page-tai-xiu__hero-desc {
    font-size: 0.98rem;
  }
  .page-tai-xiu__hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-tai-xiu__btn {
    width: 100%;
    max-width: 100%;
  }
  .page-tai-xiu__intro-section,
  .page-tai-xiu__why-section,
  .page-tai-xiu__guide-section,
  .page-tai-xiu__tips-section,
  .page-tai-xiu__games-section,
  .page-tai-xiu__trial-section,
  .page-tai-xiu__faq-section,
  .page-tai-xiu__cta-section {
    padding: 40px 0;
  }
  .page-tai-xiu__section-title {
    font-size: 1.35rem;
    margin-bottom: 20px;
  }
  .page-tai-xiu__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .page-tai-xiu__steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .page-tai-xiu__tips-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .page-tai-xiu__game-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .page-tai-xiu__faq-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .page-tai-xiu__cta-title {
    font-size: 1.35rem;
  }
  .page-tai-xiu__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-tai-xiu__trial-frame-wrap {
    border-radius: 12px;
  }
}