/* ===== 首页专属样式 · 作用域 .page-home ===== */
.page-home {
  --home-glow-green: rgba(57, 255, 20, 0.16);
  --home-glow-gold: rgba(255, 215, 0, 0.18);
  --home-text-soft: rgba(230, 237, 245, 0.78);
  --home-text-mute: rgba(230, 237, 245, 0.55);
}

.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}

.page-home a {
  text-decoration: none;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

/* ===== 更新状态条 ===== */
.page-home .home-meta-strip {
  position: relative;
  z-index: 6;
  background: #081730;
  border-bottom: 1px solid rgba(139, 157, 195, 0.2);
}

.page-home .home-meta-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  min-height: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
}

.page-home .home-meta-strip__signal {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-green);
  box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.55);
  animation: homeSignalPulse 2s ease-out infinite;
}

.page-home .home-meta-strip__text {
  flex: 1 1 auto;
  min-width: 200px;
}

.page-home .home-meta-strip__badge {
  flex: none;
  font-weight: 700;
  color: var(--color-accent-green);
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.35);
  border-radius: 999px;
  padding: 2px 12px;
  font-size: 12px;
}

@keyframes homeSignalPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.5);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(57, 255, 20, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
  }
}

/* ===== 首屏 Hero ===== */
.page-home .home-hero {
  position: relative;
  padding: 56px 0 52px;
  overflow: hidden;
  background: var(--color-bg);
}

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

.page-home .home-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(11, 30, 63, 0.94) 0%, rgba(11, 30, 63, 0.78) 44%, rgba(18, 42, 79, 0.38) 100%);
}

.page-home .home-hero__shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(57, 255, 20, 0.035) 0 2px, transparent 2px 9px);
  pointer-events: none;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: stretch;
}

.page-home .home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .home-hero__eyebrow {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-accent-green);
}

.page-home .home-hero__title {
  margin: 0 0 20px;
  font-family: var(--font-headline);
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
}

.page-home .home-hero__lead {
  max-width: 31em;
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(230, 237, 245, 0.9);
}

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

.page-home .home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s, background 0.3s;
}

.page-home .home-btn--primary {
  background: var(--color-accent-green);
  color: #081730;
  box-shadow: 0 8px 28px rgba(57, 255, 20, 0.22);
}

.page-home .home-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(57, 255, 20, 0.32);
}

.page-home .home-btn--ghost {
  border: 2px solid rgba(139, 157, 195, 0.55);
  color: var(--color-text-light);
  background: rgba(11, 30, 63, 0.35);
}

.page-home .home-btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent-green);
  color: var(--color-accent-green);
}

.page-home .home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .home-hero__stats strong {
  display: block;
  font-family: var(--font-headline);
  font-size: 34px;
  line-height: 1.15;
  color: var(--color-accent-green);
}

.page-home .home-hero__stats span {
  display: block;
  font-size: 14px;
  color: var(--color-aux-blue);
}

.page-home .home-hero__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

/* 首屏计分牌 */
.page-home .home-scoreboard {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: rgba(18, 42, 79, 0.92);
  border: 1px solid rgba(57, 255, 20, 0.34);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.page-home .home-scoreboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(57, 255, 20, 0.045) 0 2px, transparent 2px 10px);
  pointer-events: none;
}

.page-home .home-scoreboard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.page-home .home-scoreboard__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent-green);
}

.page-home .home-scoreboard__round {
  flex: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent-orange);
  border: 1px solid rgba(255, 106, 0, 0.5);
  border-radius: 999px;
  padding: 3px 12px;
}

.page-home .home-scoreboard__match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.page-home .home-scoreboard__team {
  flex: 1;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-light);
}

.page-home .home-scoreboard__team:last-child {
  text-align: right;
}

.page-home .home-scoreboard__score {
  font-family: var(--font-headline);
  font-size: 38px;
  line-height: 1;
  color: var(--color-accent-green);
  white-space: nowrap;
}

.page-home .home-scoreboard__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-aux-blue);
}

.page-home .home-scoreboard__meta em {
  font-style: normal;
  opacity: 0.5;
}

.page-home .home-scoreboard__bar {
  height: 6px;
  margin: 18px 0 16px;
  border-radius: 999px;
  background: rgba(139, 157, 195, 0.22);
  overflow: hidden;
}

.page-home .home-scoreboard__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-accent-green), var(--color-accent-orange));
}

.page-home .home-scoreboard__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-light);
  transition: color 0.25s;
}

.page-home .home-scoreboard__link b {
  display: inline-block;
  margin-left: 4px;
  color: var(--color-accent-orange);
  transition: transform 0.25s;
}

.page-home .home-scoreboard__link:hover {
  color: var(--color-accent-green);
}

.page-home .home-scoreboard__link:hover b {
  transform: translateX(5px);
}

/* 首屏快速索引 */
.page-home .home-quick {
  padding: 18px 20px;
  background: rgba(8, 23, 48, 0.72);
  border: 1px solid rgba(139, 157, 195, 0.18);
  border-radius: var(--radius-md);
}

.page-home .home-quick__label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-aux-blue);
}

.page-home .home-quick__link {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  color: var(--color-text-light);
  border-bottom: 1px dashed rgba(139, 157, 195, 0.18);
  transition: color 0.25s, padding-left 0.3s;
}

.page-home .home-quick__link:last-child {
  border-bottom: 0;
}

.page-home .home-quick__link:hover {
  color: var(--color-accent-green);
  padding-left: 6px;
}

/* ===== 赛事规则速览 ===== */
.page-home .home-rules {
  position: relative;
  background: var(--color-bg);
}

.page-home .home-rules::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.5), transparent);
}

.page-home .home-rules__head {
  margin-bottom: 36px;
}

.page-home .home-rules__grid {
  --grid-gap: 16px;
}

.page-home .home-rule-card {
  height: 100%;
  padding: 28px 24px;
  background: var(--color-surface);
  border: 1px solid rgba(139, 157, 195, 0.15);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.page-home .home-rule-card:hover {
  transform: translateY(-5px);
  border-color: rgba(57, 255, 20, 0.6);
  box-shadow: 0 16px 34px rgba(11, 30, 63, 0.45);
}

.page-home .home-rule-card__icon {
  display: block;
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1;
}

.page-home .home-rule-card__title {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--color-text-light);
}

.page-home .home-rule-card__text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-aux-blue);
}

.page-home .home-rule-card__more {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent-green);
}

.page-home .home-rule-card__more b {
  display: inline-block;
  transition: transform 0.25s;
}

.page-home .home-rule-card__more:hover b {
  transform: translateX(5px);
}

/* 规则图文组合 */
.page-home .home-rules__feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding: 20px;
  background: var(--color-surface);
  border: 1px solid rgba(139, 157, 195, 0.12);
  border-radius: var(--radius-lg);
}

.page-home .home-rules__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-bg);
}

.page-home .home-rules__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-home .home-rules__media figcaption {
  padding: 10px 4px 0;
  font-size: 13px;
  color: var(--color-aux-blue);
}

.page-home .home-rules__feature-copy {
  padding: 6px 4px;
}

.page-home .home-rules__feature-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent-orange);
}

.page-home .home-rules__feature-title {
  margin: 14px 0 12px;
  font-size: 24px;
  line-height: 1.35;
  color: var(--color-text-light);
}

.page-home .home-rules__feature-text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-aux-blue);
}

.page-home .home-rules__feature-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent-green);
}

.page-home .home-rules__feature-link:hover {
  color: var(--color-accent-orange);
}

/* ===== 赛后复盘时间线 ===== */
.page-home .home-review {
  position: relative;
  background: var(--color-light-surface);
  clip-path: polygon(0 42px, 100% 0, 100% 100%, 0 100%);
  padding-top: 84px;
}

.page-home .home-review__head {
  margin-bottom: 40px;
}

.page-home .home-review .chapter-label {
  color: var(--color-accent-orange);
}

.page-home .home-review .section-title {
  color: var(--color-text-dark);
}

.page-home .home-review .section-desc {
  color: #5a6b86;
}

.page-home .home-review__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.page-home .home-review__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.page-home .home-review-item {
  position: relative;
}

.page-home .home-review-item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent-green), rgba(57, 255, 20, 0.1));
}

.page-home .home-review-item:last-child::before {
  display: none;
}

.page-home .home-review-item__line {
  position: absolute;
  left: 7px;
  top: 10px;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-light-surface);
  border: 3px solid var(--color-accent-green);
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.15), 0 0 12px rgba(57, 255, 20, 0.35);
}

.page-home .home-review-item__body {
  margin-left: 32px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 26px rgba(11, 30, 63, 0.06);
  border: 1px solid rgba(11, 30, 63, 0.05);
  transition: box-shadow 0.35s var(--ease-out), border-color 0.35s;
}

.page-home .home-review-item__body:hover {
  box-shadow: 0 18px 36px rgba(11, 30, 63, 0.1);
  border-color: rgba(57, 255, 20, 0.5);
}

.page-home .home-review-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.page-home .home-review-item__round {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent-green);
  background: var(--color-bg);
  border-radius: 999px;
  padding: 4px 14px;
}

.page-home .home-review-item__tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent-orange);
  border: 1px solid rgba(255, 106, 0, 0.55);
  border-radius: 999px;
  padding: 3px 12px;
}

.page-home .home-review-item__title {
  margin: 0 0 16px;
  font-size: 21px;
  line-height: 1.4;
  color: var(--color-text-dark);
}

.page-home .home-review-item__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.page-home .home-review-item__stats li {
  font-size: 14px;
  color: #5a6b86;
}

.page-home .home-review-item__stats b {
  font-family: var(--font-headline);
  font-size: 18px;
  color: var(--color-text-dark);
}

.page-home .home-review-item__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #6b7a94;
}

.page-home .home-review__more {
  margin-top: 8px;
  padding-left: 32px;
}

/* 复盘侧栏 */
.page-home .home-review__media-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .home-review__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(11, 30, 63, 0.12);
}

.page-home .home-review__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-home .home-review__banner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  padding: 22px 24px;
  background: var(--color-bg);
  border-left: 5px solid var(--color-accent-green);
  border-radius: var(--radius-md);
}

.page-home .home-review__banner-num {
  font-family: var(--font-headline);
  font-size: 38px;
  line-height: 1;
  color: var(--color-accent-green);
}

.page-home .home-review__banner-text {
  font-size: 14px;
  color: var(--color-aux-blue);
}

/* ===== 会员权益 ===== */
.page-home .home-vip {
  position: relative;
  padding: clamp(60px, 7vw, 88px) 0;
  overflow: hidden;
  background: var(--color-wine);
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%);
  padding-top: clamp(76px, 9vw, 104px);
}

.page-home .home-vip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 20%, rgba(255, 215, 0, 0.09), transparent 46%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 16px);
  pointer-events: none;
}

.page-home .home-vip__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

.page-home .home-vip .section-title {
  color: #fff;
}

.page-home .home-vip__desc {
  margin: 18px 0 30px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--home-text-soft);
}

.page-home .home-vip__benefits {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.page-home .home-vip__benefit {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.page-home .home-vip__benefit-mark {
  flex: none;
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-gold);
}

.page-home .home-vip__benefit b {
  color: #fff;
  font-size: 17px;
}

.page-home .home-vip__benefit p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--home-text-mute);
}

.page-home .home-vip__cta {
  display: inline-flex;
}

.page-home .home-vip__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .home-vip__card {
  padding: 42px 30px;
  text-align: center;
  background: rgba(11, 30, 63, 0.58);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.4deg);
}

.page-home .home-vip__card-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.page-home .home-vip__card-title {
  display: block;
  margin: 12px 0 6px;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
}

.page-home .home-vip__card-num {
  display: block;
  font-family: var(--font-headline);
  font-size: 58px;
  line-height: 1.05;
  color: var(--color-gold);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.35);
}

.page-home .home-vip__card-note {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--home-text-mute);
}

.page-home .home-vip__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 26px;
}

.page-home .home-vip__tags span {
  padding: 6px 15px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent-orange);
  border: 1px solid rgba(255, 106, 0, 0.6);
  border-radius: 999px;
}

.page-home .home-vip__note {
  margin: 20px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--home-text-mute);
}

/* ===== iOS 帮助文档 ===== */
.page-home .home-ios {
  position: relative;
  padding: clamp(60px, 7vw, 88px) 0;
  overflow: hidden;
  background: var(--color-indigo);
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding-top: clamp(76px, 9vw, 104px);
}

.page-home .home-ios::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 82%, rgba(57, 255, 20, 0.07), transparent 44%);
  pointer-events: none;
}

.page-home .home-ios__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.page-home .home-ios__visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(139, 157, 195, 0.22);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  box-shadow: var(--shadow-lg);
}

.page-home .home-ios__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.page-home .home-ios__version {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent-green);
  background: rgba(11, 30, 63, 0.88);
  border: 1px solid rgba(57, 255, 20, 0.4);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.page-home .home-ios .section-title {
  color: #fff;
}

.page-home .home-ios__desc {
  margin: 18px 0 30px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--home-text-soft);
}

.page-home .home-ios__steps {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.page-home .home-ios__step {
  position: relative;
  min-height: 54px;
  padding: 0 0 22px 70px;
}

.page-home .home-ios__step::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(139, 157, 195, 0.28);
}

.page-home .home-ios__step:last-child::before {
  display: none;
}

.page-home .home-ios__step-num {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-family: var(--font-headline);
  font-size: 15px;
  color: var(--color-accent-green);
  background: var(--color-surface);
  border: 1px solid rgba(57, 255, 20, 0.4);
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.14);
}

.page-home .home-ios__step b {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
  color: #fff;
}

.page-home .home-ios__step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--home-text-mute);
}

.page-home .home-ios__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.page-home .home-ios__actions .btn-outline {
  border-color: var(--color-accent-orange);
  color: var(--color-accent-orange);
}

.page-home .home-ios__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent-green);
}

.page-home .home-ios__link:hover {
  color: #fff;
}

/* ===== 收藏引导 ===== */
.page-home .home-save {
  position: relative;
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--color-bg);
}

.page-home .home-save__card {
  position: relative;
  overflow: hidden;
  padding: 58px 30px;
  text-align: center;
  background: linear-gradient(140deg, var(--color-surface), #0f2541);
  border: 1px solid rgba(57, 255, 20, 0.28);
  border-radius: var(--radius-lg);
}

.page-home .home-save__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(230, 237, 245, 0.03) 0 1px, transparent 1px 12px);
  pointer-events: none;
}

.page-home .home-save__glow {
  position: absolute;
  top: -42%;
  right: -8%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.15), transparent 65%);
  pointer-events: none;
}

.page-home .home-save__kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-accent-green);
}

.page-home .home-save__title {
  position: relative;
  margin: 18px auto 16px;
  max-width: 15em;
  font-family: var(--font-headline);
  font-size: clamp(26px, 4.4vw, 40px);
  line-height: 1.2;
  color: #fff;
}

.page-home .home-save__text {
  position: relative;
  margin: 0 auto 30px;
  max-width: 46em;
  font-size: 16px;
  line-height: 1.7;
  color: var(--home-text-soft);
}

.page-home .home-save__btn {
  position: relative;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
}

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

.page-home .home-save__note {
  position: relative;
  margin: 16px 0 0;
  font-size: 13px;
  color: rgba(139, 157, 195, 0.8);
}

.page-home .home-save__links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 30px;
}

.page-home .home-save__links a {
  font-size: 14px;
  color: var(--color-aux-blue);
  border-bottom: 1px dashed var(--color-aux-blue);
  transition: color 0.25s, border-color 0.25s;
}

.page-home .home-save__links a:hover {
  color: var(--color-accent-green);
  border-color: var(--color-accent-green);
}

/* ===== 动效减少适配 ===== */
@media (prefers-reduced-motion: reduce) {
  .page-home .home-meta-strip__signal {
    animation: none;
  }

  .page-home .home-btn,
  .page-home .home-scoreboard__link b,
  .page-home .home-rule-card,
  .page-home .home-rule-card__more b,
  .page-home .home-vip__card,
  .page-home .home-quick__link {
    transition: none;
  }
}

/* ===== 响应式布局 ===== */
@media (min-width: 768px) {
  .page-home .home-hero__inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .home-hero {
    padding: 72px 0 68px;
  }

  .page-home .home-hero__title {
    font-size: clamp(52px, 7vw, 72px);
  }

  .page-home .home-rules__feature {
    grid-template-columns: 1fr 1fr;
    padding: 28px;
  }

  .page-home .home-review__layout {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 32px;
  }

  .page-home .home-vip__inner,
  .page-home .home-ios__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero__inner {
    min-height: 88vh;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 72px;
    padding: 64px 0;
  }

  .page-home .home-hero {
    padding: 0;
  }

  .page-home .home-hero__stats strong {
    font-size: 40px;
  }

  .page-home .home-rules__grid {
    --grid-gap: 20px;
  }

  .page-home .home-rule-card {
    padding: 32px 28px;
  }

  .page-home .home-rules__feature {
    gap: 48px;
    padding: 32px;
  }

  .page-home .home-rules__feature-title {
    font-size: 28px;
  }

  .page-home .home-review__layout {
    gap: 60px;
  }

  .page-home .home-review-item__body {
    padding: 28px;
  }

  .page-home .home-vip__inner,
  .page-home .home-ios__inner {
    gap: 80px;
  }

  .page-home .home-save__card {
    padding: 72px 48px;
  }
}
