.page-home {
  --home-line-soft: rgba(176, 184, 196, 0.14);
  background: #0A1F44;
  color: #F5F0E8;
  position: relative;
  overflow-x: hidden;
}

.page-home .container {
  position: relative;
  z-index: 1;
}

/* 通用局部面包屑 */
.page-home .home-section__crumb {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--color-mist);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(57, 255, 20, 0.35);
}

/* ============ 首屏 ============ */
.page-home .home-hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(57, 255, 20, 0.08) 0%, transparent 42%),
    linear-gradient(180deg, #0A1F44 0%, #081735 100%);
  overflow: hidden;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  right: -22vw;
  top: -18vh;
  width: 64vw;
  height: 130vh;
  background: repeating-linear-gradient(115deg, transparent 0 22px, rgba(57, 255, 20, 0.045) 22px 24px);
  transform: rotate(9deg);
  pointer-events: none;
}

.page-home .home-hero__inner {
  display: grid;
  gap: 30px;
  align-items: center;
  padding-top: calc(var(--header-h) + 14px);
  padding-bottom: 48px;
}

.page-home .home-hero__copy {
  position: relative;
  z-index: 2;
}

.page-home .home-hero__taxon {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--color-mist);
  margin: 0 0 18px;
}

.page-home .home-hero__taxon-num {
  color: var(--color-neon);
}

.page-home .home-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--color-cream);
  margin: 14px 0 16px;
}

.page-home .home-hero__lead {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-mist);
  max-width: 54ch;
  margin: 0 0 26px;
}

/* 两步动线 */
.page-home .step-flow {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
}

.page-home .step-flow__item {
  display: flex;
  align-items: stretch;
  gap: 12px;
  transition: transform 0.35s var(--ease);
}

.page-home .step-flow__item:hover {
  transform: translateY(-2px);
}

.page-home .step-flow__no {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-neon);
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.28);
  clip-path: polygon(0 0, 100% 0, 100% 74%, 74% 100%, 0 100%);
  transition: background 0.35s, border-color 0.35s, color 0.35s;
}

.page-home .step-flow__item:hover .step-flow__no {
  background: rgba(255, 109, 0, 0.14);
  border-color: rgba(255, 109, 0, 0.5);
  color: var(--color-signal);
}

.page-home .step-flow__box {
  flex: 1;
  background: rgba(28, 46, 74, 0.72);
  border-left: 2px solid var(--color-neon);
  padding: 11px 14px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.page-home .step-flow__item:first-child .step-flow__box {
  border-left-color: var(--color-signal);
}

.page-home .step-flow__label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-cream);
}

.page-home .step-flow__meta {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-mist);
  margin-top: 5px;
  line-height: 1.6;
}

.page-home .step-flow__arrow {
  color: var(--color-signal);
  width: 44px;
  margin-left: 42px;
}

.page-home .step-flow__arrow svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 首屏视觉 */
.page-home .home-hero__visual {
  position: relative;
  min-height: 300px;
  background: var(--color-rock);
  border: 1px solid rgba(57, 255, 20, 0.18);
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%, 0 6%);
  overflow: hidden;
}

.page-home .home-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.55) 0%, transparent 58%);
  pointer-events: none;
}

.page-home .home-hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .home-hero__maze {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  pointer-events: none;
}

.page-home .home-hero__maze-line {
  stroke: var(--color-neon);
  stroke-width: 2;
  stroke-linecap: square;
  fill: none;
  filter: drop-shadow(0 0 4px rgba(57, 255, 20, 0.7));
}

.page-home .home-hero__maze-line--dim {
  stroke: var(--color-signal);
  stroke-width: 1.4;
  stroke-dasharray: 6 8;
  fill: none;
  animation: homeMazeFlow 18s linear infinite;
}

.page-home .home-hero__maze-block {
  fill: rgba(57, 255, 20, 0.04);
  stroke: rgba(176, 184, 196, 0.4);
  stroke-width: 1;
}

.page-home .home-hero__maze-node {
  fill: var(--color-neon);
}

.page-home .home-hero__badge {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 9px 12px;
  clip-path: polygon(0 0, 100% 0, 100% 84%, 84% 100%, 0 100%);
  box-shadow: 0 8px 24px rgba(8, 23, 53, 0.5);
}

.page-home .home-hero__badge--neon {
  top: 7%;
  left: 5%;
  background: var(--color-neon);
  color: #081735;
  animation: homeFloat 4.5s ease-in-out infinite;
}

.page-home .home-hero__badge--signal {
  bottom: 7%;
  right: 5%;
  background: var(--color-signal);
  color: #0A1F44;
  animation: homeFloat 5.5s ease-in-out 0.8s infinite;
}

.page-home .home-hero__badge-value {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
}

.page-home .home-hero__badge-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============ 全站索引 ============ */
.page-home .home-index {
  position: relative;
  background: rgba(28, 46, 74, 0.22);
}

.page-home .home-index::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--color-neon), var(--color-signal));
}

.page-home .home-index__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 30px 0 4px;
}

.page-home .home-index__code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-neon);
}

.page-home .home-index__title {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--color-cream);
  margin: 0;
}

.page-home .home-index__grid {
  display: grid;
  gap: 14px;
  padding: 22px 0 40px;
}

.page-home .home-index__card {
  position: relative;
  display: block;
  padding: 20px 18px 18px;
  text-decoration: none;
  color: var(--color-cream);
  background: linear-gradient(135deg, rgba(28, 46, 74, 0.85), rgba(10, 31, 68, 0.9));
  border: 1px solid var(--home-line-soft);
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 0 100%);
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.page-home .home-index__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 3px;
  background: var(--color-neon);
  transition: width 0.35s var(--ease);
}

.page-home .home-index__card:hover,
.page-home .home-index__card:focus-visible {
  border-color: rgba(57, 255, 20, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(8, 23, 53, 0.65);
}

.page-home .home-index__card:hover::before {
  width: 100%;
}

.page-home .home-index__card--member::before {
  background: var(--color-signal);
}

.page-home .home-index__card--support::before {
  background: var(--color-moss);
}

.page-home .home-index__card--games::before {
  background: var(--color-terra);
}

.page-home .home-index__num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(176, 184, 196, 0.5);
}

.page-home .home-index__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-neon);
  border: 1px solid rgba(57, 255, 20, 0.35);
  background: rgba(57, 255, 20, 0.07);
  padding: 3px 8px;
  margin-top: 10px;
}

.page-home .home-index__card--member .home-index__tag {
  color: var(--color-signal);
  border-color: rgba(255, 109, 0, 0.4);
  background: rgba(255, 109, 0, 0.07);
}

.page-home .home-index__card--support .home-index__tag {
  color: #8fe07d;
  border-color: rgba(57, 255, 20, 0.3);
  background: rgba(45, 74, 34, 0.45);
}

.page-home .home-index__card--games .home-index__tag {
  color: #d08b66;
  border-color: rgba(182, 93, 58, 0.5);
  background: rgba(182, 93, 58, 0.12);
}

.page-home .home-index__card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-cream);
  margin: 12px 0 6px;
  line-height: 1.45;
}

.page-home .home-index__card-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-mist);
  margin: 0 0 14px;
}

.page-home .home-index__go {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-neon);
}

/* ============ 会员权益 ============ */
.page-home .home-membership {
  position: relative;
  padding: 50px 0 58px;
  background:
    radial-gradient(ellipse at 88% 6%, rgba(57, 255, 20, 0.07) 0%, transparent 46%),
    #0A1F44;
}

.page-home .home-membership__head {
  max-width: 680px;
  margin-bottom: 24px;
}

.page-home .home-membership__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 34px);
  margin: 6px 0 12px;
  color: var(--color-cream);
}

.page-home .home-membership__lead {
  color: var(--color-mist);
  line-height: 1.8;
  margin: 0;
  max-width: 56ch;
}

.page-home .home-membership__visual {
  position: relative;
  border: 1px solid rgba(57, 255, 20, 0.18);
  overflow: hidden;
  margin-bottom: 18px;
}

.page-home .home-membership__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 31, 68, 0.55), rgba(10, 31, 68, 0.05));
  pointer-events: none;
}

.page-home .home-membership__visual img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.page-home .home-membership__visual-tag {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-neon);
  border: 1px solid rgba(57, 255, 20, 0.5);
  background: rgba(10, 31, 68, 0.7);
  padding: 4px 8px;
}

.page-home .home-membership__table-scroll {
  overflow-x: auto;
  border: 1px solid var(--home-line-soft);
  background: rgba(28, 46, 74, 0.42);
}

.page-home .home-membership__table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
}

.page-home .home-membership__table th,
.page-home .home-membership__table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(176, 184, 196, 0.1);
  color: var(--color-cream);
}

.page-home .home-membership__table thead th {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  background: rgba(10, 31, 68, 0.7);
  color: var(--color-neon);
  border-bottom: 1px solid rgba(57, 255, 20, 0.35);
}

.page-home .home-membership__table tbody th {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-mist);
}

.page-home .home-membership__table tr:hover td {
  background: rgba(57, 255, 20, 0.02);
}

.page-home .home-membership__table tr:last-child th,
.page-home .home-membership__table tr:last-child td {
  border-bottom: 0;
}

.page-home .home-membership__col-prime {
  background: rgba(57, 255, 20, 0.05);
  box-shadow: inset 0 2px 0 var(--color-neon);
}

.page-home .home-membership__cell-prime {
  font-family: var(--font-head);
  font-weight: 600;
}

.page-home .home-membership__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* ============ 联系客服 ============ */
.page-home .home-contact {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid rgba(57, 255, 20, 0.16);
  background:
    linear-gradient(105deg, rgba(28, 46, 74, 0.42) 0%, transparent 42%),
    #0A1F44;
}

.page-home .home-contact__inner {
  display: grid;
  gap: 26px;
}

.page-home .home-contact__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 34px);
  margin: 6px 0 12px;
  color: var(--color-cream);
}

.page-home .home-contact__lead {
  color: var(--color-mist);
  line-height: 1.8;
  margin: 0 0 20px;
  max-width: 52ch;
}

.page-home .home-contact__tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.page-home .home-contact__tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(28, 46, 74, 0.55);
  border: 1px solid var(--home-line-soft);
  padding: 8px 10px;
  min-width: 0;
  transition: border-color 0.35s;
}

.page-home .home-contact__tag:hover {
  border-color: rgba(57, 255, 20, 0.6);
}

.page-home .home-contact__tag .tag {
  appearance: none;
  cursor: default;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-cream);
}

.page-home .home-contact__tag-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-mist);
  white-space: nowrap;
}

.page-home .home-contact__channels {
  display: grid;
  gap: 0;
  margin-bottom: 22px;
}

.page-home .home-contact__channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(176, 184, 196, 0.2);
}

.page-home .home-contact__channel-label {
  font-size: 13px;
  color: var(--color-mist);
}

.page-home .home-contact__channel-value {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-cream);
  word-break: break-all;
}

.page-home .home-contact__visual {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(57, 255, 20, 0.16);
  overflow: hidden;
}

.page-home .home-contact__visual img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-contact__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(10, 31, 68, 0.62) 0%, rgba(10, 31, 68, 0.15) 60%);
  pointer-events: none;
}

.page-home .home-contact__radar {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  pointer-events: none;
}

.page-home .home-contact__radar-ring {
  fill: none;
  stroke: rgba(57, 255, 20, 0.65);
  stroke-width: 1;
}

.page-home .home-contact__radar-line {
  stroke: rgba(255, 109, 0, 0.55);
  stroke-width: 0.8;
}

.page-home .home-contact__radar-core {
  fill: var(--color-neon);
}

/* ============ 玩法介绍 中国专区 ============ */
.page-home .home-games {
  position: relative;
  padding: 50px 0 58px;
  border-top: 1px solid var(--home-line-soft);
  background:
    linear-gradient(180deg, rgba(28, 46, 74, 0.34) 0%, transparent 28%),
    #0A1F44;
}

.page-home .home-games__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 34px);
  margin: 6px 0 12px;
  color: var(--color-cream);
}

.page-home .home-games__lead {
  color: var(--color-mist);
  line-height: 1.8;
  margin: 0;
  max-width: 60ch;
}

.page-home .home-games__grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.page-home .home-games__feature {
  display: flex;
  flex-direction: column;
  background: rgba(28, 46, 74, 0.62);
  border: 1px solid var(--home-line-soft);
  transition: border-color 0.35s, transform 0.35s var(--ease);
}

.page-home .home-games__feature:hover {
  border-color: rgba(57, 255, 20, 0.4);
  transform: translateY(-3px);
}

.page-home .home-games__feature--main img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(57, 255, 20, 0.16);
}

.page-home .home-games__feature-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .home-games__feature-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--color-neon);
  background: rgba(57, 255, 20, 0.07);
  border: 1px solid rgba(57, 255, 20, 0.28);
  padding: 4px 8px;
}

.page-home .home-games__feature--main .home-games__feature-tag {
  color: var(--color-signal);
  border-color: rgba(255, 109, 0, 0.35);
  background: rgba(255, 109, 0, 0.06);
}

.page-home .home-games__feature--libo .home-games__feature-tag {
  color: #d08b66;
  border-color: rgba(182, 93, 58, 0.5);
  background: rgba(182, 93, 58, 0.12);
}

.page-home .home-games__feature-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-cream);
  margin: 12px 0 8px;
}

.page-home .home-games__feature-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-mist);
  margin: 0;
}

.page-home .home-games__feature-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-signal);
  text-decoration: none;
  font-weight: 600;
}

/* 活动周期倒计时模块 */
.page-home .home-games__timer {
  position: relative;
  margin-top: 24px;
  background:
    linear-gradient(110deg, rgba(57, 255, 20, 0.09) 0%, transparent 52%),
    rgba(10, 31, 68, 0.85);
  border: 1px solid rgba(57, 255, 20, 0.24);
  padding: 22px 18px;
  text-align: center;
  overflow: hidden;
}

.page-home .home-games__timer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-neon), var(--color-signal), var(--color-neon));
  background-size: 200% 100%;
  animation: homeScan 3s linear infinite;
}

.page-home .home-games__timer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(57, 255, 20, 0.025) 3px 4px);
  pointer-events: none;
}

.page-home .home-games__timer > * {
  position: relative;
  z-index: 1;
}

.page-home .home-games__timer-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--color-neon);
}

.page-home .home-games__timer-title {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--color-cream);
  margin: 6px 0 0;
}

.page-home .home-games__timer-digits {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  margin: 18px 0 12px;
}

.page-home .home-games__timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  background: #081735;
  border: 1px solid rgba(57, 255, 20, 0.3);
  padding: 10px 12px;
}

.page-home .home-games__timer-num {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-neon);
  animation: homeTimerPulse 2.2s ease-in-out infinite;
}

.page-home .home-games__timer-unit em {
  font-style: normal;
  font-size: 11px;
  color: var(--color-mist);
  margin-top: 5px;
}

.page-home .home-games__timer-sep {
  align-self: center;
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--color-signal);
}

.page-home .home-games__timer-note {
  font-size: 13px;
  color: var(--color-mist);
  line-height: 1.7;
  margin: 10px auto 14px;
  max-width: 48ch;
}

/* ============ 品牌档案带 ============ */
.page-home .home-trust {
  padding: 44px 0 56px;
  border-top: 1px solid rgba(57, 255, 20, 0.18);
  background: rgba(28, 46, 74, 0.28);
}

.page-home .home-trust__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.page-home .home-trust__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--color-cream);
  margin: 6px 0 0;
}

.page-home .home-trust__more {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-neon);
  text-decoration: none;
  transition: color 0.35s;
}

.page-home .home-trust__more:hover {
  color: var(--color-signal);
}

.page-home .home-trust__grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.page-home .home-trust__heading {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-signal);
  margin-bottom: 12px;
}

.page-home .home-trust__timeline-list,
.page-home .home-trust__update-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .home-trust__timeline-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: rgba(10, 31, 68, 0.5);
  border-left: 2px solid var(--color-neon);
  padding: 9px 12px;
}

.page-home .home-trust__timeline-list b {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-neon);
}

.page-home .home-trust__timeline-list span {
  font-size: 13px;
  color: var(--color-cream);
}

.page-home .home-trust__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0;
}

.page-home .home-trust__stat {
  background: rgba(10, 31, 68, 0.5);
  border: 1px solid var(--home-line-soft);
  padding: 10px 12px;
}

.page-home .home-trust__stat dt {
  font-size: 12px;
  color: var(--color-mist);
}

.page-home .home-trust__stat dd {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--color-cream);
  margin: 4px 0 0;
}

.page-home .home-trust__update-list a {
  display: block;
  background: rgba(10, 31, 68, 0.5);
  border: 1px solid var(--home-line-soft);
  color: var(--color-cream);
  text-decoration: none;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.5;
  transition: border-color 0.35s, color 0.35s;
}

.page-home .home-trust__update-list a:hover,
.page-home .home-trust__update-list a:focus-visible {
  border-color: var(--color-neon);
  color: var(--color-neon);
}

.page-home .home-trust__honor,
.page-home .home-trust__partner,
.page-home .home-trust__base {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-mist);
}

.page-home .home-trust__partner {
  color: #d08b66;
}

/* ============ 动效 ============ */
@keyframes homeMazeFlow {
  to {
    stroke-dashoffset: 100;
  }
}

@keyframes homeTimerPulse {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 0 transparent;
  }
  32% {
    opacity: 0.68;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.6);
  }
}

@keyframes homeScan {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes homeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ============ 中间断点 ============ */
@media (min-width: 560px) {
  .page-home .home-index__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-contact__tags {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-games__feature--main img {
    height: 260px;
  }
}

/* ============ 桌面断点 ============ */
@media (min-width: 820px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 44px;
    min-height: calc(100vh - var(--header-h));
    padding-top: var(--header-h);
    padding-bottom: 64px;
  }

  .page-home .home-hero__visual {
    min-height: 560px;
    align-self: stretch;
  }

  .page-home .home-hero__lead {
    font-size: 16px;
  }

  .page-home .step-flow {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  .page-home .step-flow__arrow {
    margin-left: 0;
    width: 52px;
  }

  .page-home .home-index__grid {
    grid-template-columns: repeat(4, 1fr);
    padding-top: 26px;
  }

  .page-home .home-membership {
    padding: 64px 0 70px;
  }

  .page-home .home-membership__visual img {
    height: 300px;
  }

  .page-home .home-membership__table th,
  .page-home .home-membership__table td {
    padding: 16px 18px;
  }

  .page-home .home-contact {
    padding: 64px 0;
  }

  .page-home .home-contact__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 44px;
    align-items: center;
  }

  .page-home .home-contact__tags {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .page-home .home-contact__tag {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .page-home .home-games {
    padding: 64px 0 70px;
  }

  .page-home .home-games__grid {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
  }

  .page-home .home-games__feature--main {
    grid-row: 1 / span 2;
  }

  .page-home .home-games__feature--main img {
    height: 100%;
    min-height: 320px;
  }

  .page-home .home-games__feature-body {
    padding: 20px;
  }

  .page-home .home-games__timer {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 18px;
    text-align: left;
    padding: 24px 26px;
  }

  .page-home .home-games__timer-head {
    min-width: 180px;
  }

  .page-home .home-games__timer-digits {
    margin: 0;
  }

  .page-home .home-games__timer-note {
    margin: 0;
  }

  .page-home .home-games__timer .btn {
    justify-self: end;
  }

  .page-home .home-trust {
    padding: 56px 0 64px;
  }

  .page-home .home-trust__grid {
    grid-template-columns: 0.9fr 1fr 1.1fr;
    gap: 24px;
    margin-top: 32px;
  }
}
