  html, body { height: 100%; overflow: hidden; }
  .scroller {
    height: 100vh; height: 100dvh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .scroller::-webkit-scrollbar { display: none; }

  .panel {
    position: relative;
    height: 100vh; height: 100dvh;
    scroll-snap-align: start;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 0 26px 168px;
    overflow: hidden;
  }

  /* —— 首屏 背景：logo 后柔光气泡 —— */
  .hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
  .hero-bg > * { position: absolute; border-radius: 50%; will-change: transform; }
  /* logo 后主光晕：轻轻缩放 + 不规则漂移，气泡感 */
  .glow { width: 440px; height: 440px; top: 4%; left: 50%; margin-left: -220px; filter: blur(52px);
    background: radial-gradient(circle, rgba(255,227,0,.45), transparent 68%); animation: bubble 9s ease-in-out infinite; }
  @keyframes bubble {
    0%,100% { transform: translate(0,0);      opacity: .8; }
    30%     { transform: translate(-14px,16px); opacity: 1; }
    60%     { transform: translate(12px,-10px); opacity: .9; }
  }
  /* 首屏海报杂志背景（与二合一页同款漂移）*/
  .hero-grid { position: absolute; top: 50%; left: 50%; width: 165%; border-radius: 0 !important;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 6px;
    transform: translate(-50%,-50%) rotate(-8deg) scale(1.3); will-change: transform;
    animation: heroDrift 30s linear infinite alternate; }
  .hero-grid img { width: 100%; aspect-ratio: 16/9; object-fit: cover; opacity: .32; display: block; border-radius: 3px; }
  @keyframes heroDrift {
    0% { transform: translate(calc(-50% - 8vw),calc(-50% - 8vh)) rotate(-8deg) scale(1.3); }
    100% { transform: translate(calc(-50% + 8vw),calc(-50% + 8vh)) rotate(-8deg) scale(1.3); }
  }
  .hero-veil { position: absolute; inset: 0; border-radius: 0 !important;
    background: linear-gradient(180deg, rgba(10,10,12,.5) 0%, rgba(10,10,12,.62) 48%, rgba(10,10,12,.8) 100%); }
  .hero-logo { width: 112px; height: 112px; border-radius: 26px; box-shadow: var(--glow); position: relative; z-index: 2;
    animation: heroLogoBob 3.5s ease-in-out infinite; }
  @keyframes heroLogoBob { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-9px); } }
  .p-hero h1 { position: relative; z-index: 2; font-size: 30px; margin: 28px 0 14px; line-height: 1.3; }
  .p-hero h1 .hl { color: var(--gold); }
  .p-hero .lead { position: relative; z-index: 2; color: var(--text-2); font-size: 16px; line-height: 1.7; max-width: 460px; margin: 0; }
  .stats { position: relative; z-index: 2; display: flex; gap: 24px; margin-top: 34px; }
  .stat { text-align: center; min-width: 72px; position: relative; }
  .p-hero .stat + .stat::before { content:""; position:absolute; left:-10px; top:25%; height:50%; width:1px; background:rgba(255,255,255,.16); }
  .stat b { display: block; font-size: 26px; line-height: 1.2; color: var(--gold); }
  .stat span { font-size: 12px; color: var(--text-2); }

  /* —— 功能屏：全屏截图槽 —— */
  .p-feat { padding: 0; justify-content: flex-end; }
  .p-feat .shot { position: absolute; inset: 0; z-index: 0; }
  .p-feat .veil { position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(10,10,12,.35) 0%, rgba(10,10,12,.15) 40%, rgba(10,10,12,.92) 100%); }
  .p-feat .ct { position: relative; z-index: 2; width: 100%; padding: 0 28px 200px; text-align: left; }
  .p-feat .badge { display: inline-block; font-size: 12px; letter-spacing: 2px; color: var(--gold);
    border: 1px solid var(--line-2); background: rgba(10,10,12,.55); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
  .p-feat h2 { font-size: 32px; margin: 0 0 12px; line-height: 1.22; }
  .p-feat h2 .hl { color: var(--gold); }
  .p-feat p { color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.7; margin: 0 0 16px; max-width: 460px; }
  .chips { display: flex; gap: 8px; flex-wrap: wrap; }
  .chips span { font-size: 12px; padding: 6px 13px; border-radius: 999px; background: rgba(20,20,26,.82);
    border: 1px solid rgba(255,255,255,.12); }

  /* CSS 拟真界面占位（无截图时显示） */
  .shot-css { display: flex; flex-direction: column; }
  .m-top { padding: 26px 18px 14px; }
  .m-pills { display: flex; gap: 8px; }
  .m-pills i { height: 26px; border-radius: 999px; background: var(--bg-active); flex: 0 0 auto; padding: 0 16px; display: grid; place-items: center; font-style: normal; font-size: 11px; color: var(--text-2); }
  .m-pills i.on { background: var(--grad-gold); color: #1a1400; font-weight: 800; }
  .m-grid { flex: 1; display: grid; gap: 10px; padding: 14px 16px; align-content: start; }
  .m-grid.c2 { grid-template-columns: 1fr 1fr; }
  .m-grid.c3 { grid-template-columns: 1fr 1fr 1fr; }
  .m-tile { border-radius: 12px; background: linear-gradient(135deg,#23232c,#15151b); position: relative; overflow: hidden; }
  .m-tile.tall { height: 168px; } .m-tile.med { height: 120px; }
  .m-tile::after { content: attr(data-i); position: absolute; inset: 0; display: grid; place-items: center; font-size: 30px; opacity: .5; }
  .sc-feed { background: linear-gradient(160deg,#1c1c24,#0c0c10); }
  /* 短视频：中间一张大图 + 右侧两张小图，均为 9:16，且只占上半区不压底部文案 */
  .feed-stage { display: flex; gap: 10px; padding: 6px 16px 14px; align-items: flex-start; }
  .fv { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 9 / 16;
    background: linear-gradient(135deg,#23232c,#15151b); }
  .fv::after { content: attr(data-i); position: absolute; inset: 0; display: grid; place-items: center; font-size: 26px; opacity: .5; }
  .fv.big { flex: 0 0 62%; }
  .fv.big::after { font-size: 46px; }
  .fv-col { flex: 1; display: flex; flex-direction: column; gap: 10px; }
  .fv-col .fv::after { font-size: 20px; }
  .fv img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
  /* 竖向上滑轮播（第2屏格子 + 第3屏大竖图通用）*/
  .fv .reel, .bp .reel { position: absolute; inset: 0; display: flex; flex-direction: column; z-index: 1; }
  .fv .slide, .bp .slide { position: relative; flex: 0 0 100%; }
  /* 中心播放按钮：毛玻璃圆底 + 白三角 */
  .fv-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2; pointer-events: none;
    width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(255,255,255,.22);
    box-shadow: 0 4px 14px rgba(0,0,0,.42), 0 2px 6px rgba(0,0,0,.3), 0 0 0 1px rgba(0,0,0,.06); }
  .fv-play svg { display: block; width: 37px; height: 37px; margin-left: 2px; filter: drop-shadow(0 1px 1.5px rgba(0,0,0,.28)); }
  .fv-col .fv .fv-play { width: 31px; height: 31px; }
  .fv-col .fv .fv-play svg { width: 25px; height: 25px; }
  /* 短视频操作图标：右下角 喜欢/收藏/分享 */
  .fv-acts { position: absolute; right: 6px; bottom: 8px; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 11px; }
  .fv-acts svg { width: 22px; height: 22px; filter: drop-shadow(0 1px 3px rgba(0,0,0,.7)); }
  .fv.big .fv-acts svg { width: 25px; height: 25px; }
  .fv-col .fv .fv-acts { right: 4px; bottom: 5px; gap: 7px; }
  .fv-col .fv .fv-acts svg { width: 15px; height: 15px; }
  /* 短视频屏：背景加深，保证文字清晰 */
  .p-sv .veil { background: linear-gradient(180deg, rgba(10,10,12,.18) 0%, rgba(10,10,12,.30) 42%, rgba(10,10,12,.9) 72%, rgba(10,10,12,.98) 100%); }

  /* 第2屏标题：沉→浸→式 逐字上滑入场（每次滑入本屏重播一次），金色尾词随后跟上 */
  .cup i, .cup-tail { display: inline-block; opacity: 0; transform: translateY(.55em); }
  .cup i { font-style: normal; }
  .cup-h.play .cup i { animation: charUp .5s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: var(--d); }
  .cup-h.play .cup-tail { animation: charUp .5s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: .45s; }
  @keyframes charUp { to { opacity: 1; transform: translateY(0); } }

  /* 第3屏：照片墙——多列瓦片错向自动滚动，营造"海量很全" */
  .wall { display: flex; align-items: flex-start; gap: 8px; padding: 6px 12px 0; flex: 0 0 50vh; min-height: 0; overflow: hidden;
    -webkit-mask: linear-gradient(180deg, transparent 0, #000 12%, #000 68%, transparent 94%);
    mask: linear-gradient(180deg, transparent 0, #000 12%, #000 68%, transparent 94%); }
  .wall-col { flex: 1; display: flex; flex-direction: column; gap: 8px; }
  .wall-col.up { animation: wallUp 24s linear infinite; }
  .wall-col.down { animation: wallDown 28s linear infinite; }
  .wt { position: relative; flex: 0 0 auto; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg,#241a2e,#0e0a14); }
  .wt.a { aspect-ratio: 16 / 10; } .wt.b { aspect-ratio: 16 / 9; } .wt.c { aspect-ratio: 16 / 6; }
  .wt::after { content: attr(data-i); position: absolute; inset: 0; display: grid; place-items: center; font-size: 18px; opacity: .4; }
  .wt img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  @keyframes wallUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
  @keyframes wallDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

  /* 第3屏：照片堆叠——中间几张大图，底下叠很多散落小图 */
  .stack { position: relative; flex: 1; min-height: 0; margin: 4px 6px 0; }
  .sp, .bp { position: absolute; left: var(--x); top: var(--y); border-radius: 10px; overflow: hidden;
    transform: translate(-50%,-50%) rotate(var(--r)); background: linear-gradient(135deg,#241a2e,#0e0a14); }
  .sp { width: 106px; aspect-ratio: 16/9; z-index: 1; opacity: .9; box-shadow: 0 6px 16px rgba(0,0,0,.5); }
  .bp { width: 148px; aspect-ratio: 9/16; z-index: 3; border: 2px solid rgba(255,255,255,.1); box-shadow: 0 14px 34px rgba(0,0,0,.6); }
  .bp::after { content: attr(data-i); position: absolute; inset: 0; display: grid; place-items: center; font-size: 28px; opacity: .55; }
  /* 后两张竖屏压暗，凸显最顶部那张 */
  .bp-dim::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.45); z-index: 2; border-radius: inherit; }
  .sp img, .bp img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

  .p-stack .veil, .p-wall .veil { background: linear-gradient(180deg, rgba(10,10,12,.18) 0%, rgba(10,10,12,.30) 42%, rgba(10,10,12,.9) 72%, rgba(10,10,12,.98) 100%); }
  .sc-game { background: linear-gradient(160deg,#241a2e,#0e0a14); }
  .sc-vip  { background: linear-gradient(160deg,#121c33,#0a0c16); }
  .sc-pay  { background: linear-gradient(160deg,#10241a,#0a140e); }
  .sc-act  { background: linear-gradient(160deg,#2a1416,#140a0b); }

  /* —— 评价 / 信任屏 —— */
  .p-trust { gap: 0; background: linear-gradient(160deg,#15151b,#0a0a0c); }
  .p-trust > .k, .p-trust > h2, .p-trust > .reviews-vp { position: relative; z-index: 1; }
  .p-trust .k { font-size: 12px; letter-spacing: 3px; color: var(--gold); }
  .p-trust h2 { font-size: 28px; margin: 12px 0 22px; }
  .reviews { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 460px; }
  .review { background: var(--bg-card); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; text-align: left; }
  .review .r-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
  .review .av { width: 34px; height: 34px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; font-weight: 800; color: #1a1400; }
  .review .nm { font-size: 14px; font-weight: 700; }
  .review .st { margin-left: auto; color: var(--gold); font-size: 13px; }
  .review p { margin: 0; color: var(--text-2); font-size: 13px; line-height: 1.6; }
  .trust-badges { display: flex; gap: 18px; margin-top: 24px; }
  .tb { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--text-2); font-size: 12px; }
  .tb .i { font-size: 24px; }

  /* —— 右侧进度点 —— */
  .dots { position: fixed; right: 12px; top: 50%; transform: translateY(-50%); z-index: 50; display: flex; flex-direction: column; gap: 11px; }
  .dots i { width: 6px; height: 6px; border-radius: 999px; background: rgba(255,255,255,.3); transition: all .3s; }
  .dots i.on { height: 26px; background: var(--gold); }

  /* —— 底部固定下载 —— */
  .dock {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 16px 24px calc(18px + max(env(safe-area-inset-bottom), 12px));
    background: linear-gradient(180deg, transparent, rgba(10,10,12,.94) 36%);
  }
  .dock .proof { text-align: center; color: var(--text-2); font-size: 12px; margin: 0 0 10px; }
  .dock .proof b { color: var(--gold); }
  .dock .btn-gold { width: 100%; height: 56px; font-size: 18px; }
  .dock .row2 { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 11px; }

  .scroll-cue { position: absolute; bottom: 158px; left: 0; right: 0; text-align: center; color: var(--gold); font-size: 12px; z-index: 2; animation: cue 1.6s infinite; }
  @keyframes cue { 0%,100%{opacity:.3;transform:translateY(0)} 50%{opacity:1;transform:translateY(6px)} }
  /* 后续每屏停留 >5s 出现的「上滑了解更多」（共享固定提示）*/
  .late-cue { position: fixed; left: 0; right: 0; bottom: 158px; max-width: 480px; margin: 0 auto;
    text-align: center; color: var(--gold); font-size: 12px; z-index: 55; pointer-events: none;
    opacity: 0; transition: opacity .35s ease; }
  .late-cue.on { animation: cue 1.6s infinite; }

  /* 性能：非当前屏暂停动画，切屏更顺 */
  .panel:not(.vis) *, .panel:not(.vis)::before, .panel:not(.vis)::after { animation-play-state: paused !important; }

  /* 入场 */
  .rise { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  .panel.seen .rise { opacity: 1; transform: none; }
  .panel.seen .rise:nth-child(2){transition-delay:.06s}.panel.seen .rise:nth-child(3){transition-delay:.12s}
  .panel.seen .rise:nth-child(4){transition-delay:.18s}.panel.seen .rise:nth-child(5){transition-delay:.24s}

  /* 客服浮标上移，避免压住底部 dock 的下载按钮；已有心跳动画，去掉多余光晕 */
  .kefu { bottom: calc(150px + env(safe-area-inset-bottom)); box-shadow: none; }

  /* —— 首屏 CTA & 实时热度 —— */
  .p-hero .stats { gap: 20px; }
  .p-hero .stat { min-width: 64px; }
  .p-hero .stat b { white-space: nowrap; }
  /* —— 画质逐级跃升 —— */
  .stat b.res-max { animation: resPop .42s ease; }
  @keyframes resPop { 0%{transform:scale(1.28)} 100%{transform:scale(1)} }

  /* —— 20+ 智能线路（动态信号条卡片）—— */
  .line-feat { display: inline-flex; align-items: center; gap: 14px; margin-top: 26px; position: relative; z-index: 2;
    padding: 13px 20px; border-radius: 16px; text-align: left;
    background: linear-gradient(135deg, rgba(255,227,0,.13), rgba(255,184,0,.04));
    border: 1px solid var(--line-2); box-shadow: 0 6px 22px rgba(255,227,0,.08); }
  .line-feat .bars { display: flex; align-items: flex-end; gap: 3px; height: 20px; }
  .line-feat .bars i { width: 4px; border-radius: 2px; background: var(--gold); transform-origin: bottom;
    animation: barFlow 1.05s ease-in-out infinite; }
  .line-feat .bars i:nth-child(1){ height: 8px;  animation-delay: 0s; }
  .line-feat .bars i:nth-child(2){ height: 13px; animation-delay: .14s; }
  .line-feat .bars i:nth-child(3){ height: 20px; animation-delay: .28s; }
  .line-feat .bars i:nth-child(4){ height: 11px; animation-delay: .42s; }
  @keyframes barFlow { 0%,100%{ transform: scaleY(.38); opacity:.5; } 50%{ transform: scaleY(1); opacity:1; } }
  .line-feat .l1 { font-size: 15px; color: var(--text); font-weight: 600; white-space: nowrap; }
  .line-feat .l1 b { color: var(--gold); font-size: 20px; font-weight: 800; margin-right: 2px; }
  .line-feat .lat { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700;
    color: #1a1400; background: var(--grad-gold); padding: 4px 11px; border-radius: 999px; white-space: nowrap;
    box-shadow: 0 0 14px rgba(255,227,0,.35); }
  .line-feat .lat svg { width: 12px; height: 12px; }

  .live-ticker { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; position: relative; z-index: 2;
    font-size: 12px; color: var(--text-2); background: rgba(255,255,255,.05);
    border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; }
  .live-ticker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success);
    box-shadow: 0 0 8px var(--success); animation: blink 1.3s ease-in-out infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

  /* —— 下载按钮呼吸光 —— */
  .dock .btn-gold { position: relative; isolation: isolate; }
  .dock .btn-gold::before { content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
    box-shadow: 0 0 30px rgba(255,227,0,.5); animation: glowFade 3.2s ease-in-out infinite; }
  @keyframes glowFade { 0%,100%{ opacity: .4; } 50%{ opacity: 1; } }

  /* —— 评价无缝跑马 —— */
  .reviews-vp { width: 100%; overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
  .reviews-track { display: flex; gap: 12px; width: max-content; animation: marquee 30s linear infinite; }
  .reviews-track:active { animation-play-state: paused; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .reviews-track .review { flex: 0 0 270px; }
  .reviews-track.rev { animation-duration: 34s; animation-direction: reverse; }

  /* —— 首页预览 · 小窗播放屏 —— */
  .sc-prev { background: linear-gradient(160deg,#2a2410,#14110a); }
  .p-prev .veil { background: linear-gradient(180deg, rgba(10,10,12,.14) 0%, rgba(10,10,12,.24) 46%, rgba(10,10,12,.9) 72%, rgba(10,10,12,.98) 100%); }
  .prev-vp { position: relative; height: 416px; margin: 6px 14px 0; overflow: hidden; }
  .prev-track { display: flex; flex-direction: column; gap: 8px; will-change: transform; }
  .prow { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .prev-vp .pc { position: relative; aspect-ratio: 16/10; border-radius: 7px; overflow: hidden; background: linear-gradient(135deg,#23232c,#15151b); }
  .prev-vp .pc img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s ease; }
  /* 流光霓虹边框（对齐 App/H5 .thumb-outer.is-previewing） */
  .thumb-outer { position: relative; border-radius: 8px; padding: 2px; }
  .thumb-outer.is-previewing {
    background: conic-gradient(from var(--neon-angle, 0deg),
      #ffe300 0%, transparent 20%, #ff8c00 40%, transparent 60%, #ffff80 80%, transparent 95%, #ffe300 100%);
    animation: neon-spin 2.5s linear infinite, neon-breath 2s ease-in-out infinite;
  }
  @keyframes neon-breath { 0%,100%{ box-shadow: 0 0 4px rgba(255,227,0,.3); } 50%{ box-shadow: 0 0 14px rgba(255,227,0,.6); } }
  @property --neon-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
  @keyframes neon-spin { to { --neon-angle: 360deg; } }
  /* 预览触发黄条（对齐 App/H5 .preview-trigger-hint），放第一行左右两侧中点，top 由 JS 设为行中心 */
  .preview-trigger-hint { position: absolute; top: 56px; width: 3px; height: 14px; z-index: 10; pointer-events: none;
    background: rgba(255,227,0,.2); transform: translateY(-50%);
    transition: transform .4s cubic-bezier(.4,0,.2,1), background .3s, box-shadow .3s; }
  .preview-trigger-left { left: 0; border-radius: 0 3px 3px 0; transform-origin: top left; }
  .preview-trigger-right { right: 0; border-radius: 3px 0 0 3px; transform-origin: top right; }
  .preview-trigger-left.triggered { transform: translateY(-50%) rotate(-90deg); background: rgba(255,227,0,.7); box-shadow: 0 0 6px rgba(255,227,0,.5); animation: trigger-glow 1.5s ease-in-out infinite; }
  .preview-trigger-right.triggered { transform: translateY(-50%) rotate(90deg); background: rgba(255,227,0,.7); box-shadow: 0 0 6px rgba(255,227,0,.5); animation: trigger-glow 1.5s ease-in-out infinite; }
  @keyframes trigger-glow { 0%,100%{ background: rgba(255,227,0,.5); box-shadow: 0 0 4px rgba(255,227,0,.3); } 50%{ background: rgba(255,227,0,.9); box-shadow: 0 0 10px rgba(255,227,0,.7); } }
  /* 喷水水滴（对齐 App/H5 spawnDroplets） */
  .prev-droplet { position: absolute; border-radius: 50%; background: rgba(255,227,0,.5); opacity: .8; pointer-events: none; z-index: 11;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94), opacity .5s ease-out; }
  /* 悬浮小窗播放器 */
  .mini-player { position: absolute; right: 16px; top: 168px; width: 142px; border-radius: 13px; overflow: hidden;
    background: #14141a; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 16px 36px rgba(0,0,0,.62);
    z-index: 4; }
  .mp-grab { display: flex; justify-content: center; gap: 4px; padding: 5px 0 3px; background: rgba(255,255,255,.07); }
  .mp-grab i { width: 15px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.28); }
  .mp-video { position: relative; aspect-ratio: 16/9; }
  .mp-video img { width: 100%; height: 100%; object-fit: cover; }
  .mp-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 34px; height: 34px;
    border-radius: 50%; background: rgba(255,255,255,.22); display: grid; place-items: center; box-shadow: 0 3px 9px rgba(0,0,0,.45); }
  .mp-play svg { width: 25px; height: 25px; margin-left: 2px; }
  .mp-bar { position: absolute; left: 8px; right: 8px; bottom: 7px; height: 3px; border-radius: 999px; background: rgba(255,255,255,.28); overflow: hidden; }
  .mp-bar i { display: block; height: 100%; width: 45%; border-radius: 999px; background: var(--gold); animation: mpProg 5s linear infinite; }
  .mp-cap { font-size: 11px; font-weight: 600; color: var(--gold); text-align: center; padding: 5px 0 7px; background: rgba(255,227,0,.07); }
  @keyframes mpFloat { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-7px); } }
  @keyframes mpProg { 0%{ width: 8%; } 100%{ width: 92%; } }

  /* —— 第6屏：主次分层（线路加速重点 + 伪装/模糊弱化）—— */
  .sc-line { background: linear-gradient(160deg,#0f242a,#0a1014); }
  .p-line .veil { background: linear-gradient(180deg, rgba(10,10,12,.12) 0%, rgba(10,10,12,.2) 52%, rgba(10,10,12,.82) 80%, rgba(10,10,12,.97) 100%); }
  .lf-wrap { padding: 12px 14px; display: flex; flex-direction: column; gap: 11px; }
  .lf-h { display: flex; align-items: center; gap: 8px; }
  .lf-i { font-size: 18px; line-height: 1; }
  .lf-h b { font-size: 14.5px; }

  /* 主卡：线路加速 — 金色描边 + 微光，视觉重 */
  .lf-hero { background: linear-gradient(160deg, rgba(255,227,0,.1), rgba(18,24,30,.75)); border: 1px solid var(--line-2);
    border-radius: 16px; padding: 14px 15px; box-shadow: 0 8px 26px rgba(255,227,0,.09); }
  .lf-hero p { margin: 7px 0 0; font-size: 12px; line-height: 1.55; color: var(--text-2); }
  .lf-hero .lf-tag { margin-left: auto; font-size: 10px; font-weight: 800; color: #1a1400; background: var(--grad-gold);
    padding: 2px 9px; border-radius: 999px; box-shadow: 0 0 12px rgba(255,227,0,.4); white-space: nowrap; }
  .lf-hero .lf-tag.flash { animation: tagFlash .6s ease; }
  @keyframes tagFlash { 0%{ transform: scale(1); } 35%{ transform: scale(1.14); box-shadow: 0 0 20px rgba(255,227,0,.85); } 100%{ transform: scale(1); } }
  /* 四条普通线路实时竞速；当前最快的一行高亮黄底 + 缩放(.sel/.pop) */
  .race { margin-top: 12px; display: flex; flex-direction: column; gap: 7px; }
  .lane { display: flex; align-items: center; gap: 9px; padding: 4px 7px; border-radius: 9px; transition: background .35s ease; }
  .lane .ln { width: 62px; flex: 0 0 auto; font-size: 11px; color: var(--text-2); transition: color .3s; }
  .lane .track { position: relative; flex: 1; height: 6px; border-radius: 999px; background: rgba(255,255,255,.07); overflow: hidden; transition: background .3s; }
  .lane .track i { position: absolute; top: 0; left: 0; height: 100%; width: 42%; border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--text-3)); animation: comet 2.4s linear infinite; }
  .lane b { width: 46px; flex: 0 0 auto; text-align: right; font-size: 11px; font-weight: 800;
    color: var(--text-2); font-variant-numeric: tabular-nums; transition: color .3s; }
  /* 被选中(最快)那一行：黄底 + 金字 + 缩放脉冲 */
  .lane.sel { background: rgba(255,227,0,.16); }
  .lane.sel .ln { color: var(--gold); font-weight: 700; }
  .lane.sel .track { background: rgba(255,227,0,.14); }
  .lane.sel .track i { background: linear-gradient(90deg, transparent, var(--gold)); box-shadow: 0 0 8px var(--gold); animation-duration: 1.1s; }
  .lane.sel b { color: var(--gold); }
  .lane.pop { animation: selPop .5s ease; }
  @keyframes selPop { 0%{ transform: scale(1); } 40%{ transform: scale(1.05); } 100%{ transform: scale(1); } }
  @keyframes comet { from { transform: translateX(-120%); } to { transform: translateX(320%); } }

  /* 次卡：伪装 / 模糊 — 暗、小、灰，视觉弱 */
  .lf-mini-row { display: flex; gap: 10px; }
  .lf-mini { flex: 1; min-width: 0; background: rgba(16,20,26,.55); border: 1px solid var(--line); border-radius: 13px; padding: 11px 12px; }
  .lf-mini .lf-h b { font-size: 13px; }
  .lf-mini p { margin: 9px 0 0; font-size: 11px; line-height: 1.45; color: var(--text-3); }
  /* 伪装图标：左侧排队 → 从左滑到 app logo 上覆盖 → 向右移出 → 下一张进。每图带白色圆底(透明图兜底) */
  .icon-stage { height: 54px; margin: 10px auto 0; display: flex; align-items: center; justify-content: center; gap: 11px; }
  .iwrap { background: #26262d; border-radius: 11px; overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,.4); }
  .iwrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
  /* 左:下一个排队  右:刚移除的（同样大小） */
  .iqi { width: 22px; height: 22px; border-radius: 7px; opacity: .5; box-shadow: none; flex: 0 0 auto; }
  /* 本 app 图标居中 */
  .islot { position: relative; width: 50px; height: 50px; flex: 0 0 auto; overflow: hidden; border-radius: 12px; }
  .islot .iwrap { position: absolute; inset: 0; width: 50px; height: 50px; }
  .islot .ibase { z-index: 1; }
  /* 覆盖图比本 app 大 2px(每边)，确保完全盖住不露边 */
  .islot .icover { z-index: 2; width: 54px; height: 54px; inset: -2px; border-radius: 13px;
    transform: translateX(-185%); opacity: 0; transition: transform .42s cubic-bezier(.3,.85,.3,1), opacity .42s ease; }
  .islot .icover.in { transform: translateX(0); opacity: 1; }
  .islot .icover.out { transform: translateX(185%); opacity: 0; }
  /* 后台模糊：从清晰逐渐模糊，2 秒一循环 */
  .lf-blur { position: relative; border-radius: 9px; overflow: hidden; }
  .lf-blur.sm { margin-top: 10px; height: 56px; }
  .lf-blur img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); }
  .lf-blur.blur-cycle img { animation: blurCycle 2s ease-in-out infinite; }
  @keyframes blurCycle { 0%{ filter: blur(0) brightness(.9); } 60%{ filter: blur(10px) brightness(.6); } 100%{ filter: blur(10px) brightness(.6); } }
