        html.page-dsph * { margin: 0; padding: 0; box-sizing: border-box; }
        html.page-dsph, html.page-dsph body {
            width: 100%;
            height: 100%;
            min-height: 100%;
            min-height: 100vh;
            min-height: 100dvh;
            overflow: hidden;
            background: #000;
            color: #fff;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
            -webkit-tap-highlight-color: transparent;
            overscroll-behavior: none;
        }
        html.page-dsph .dsp-root {            position: fixed;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            height: 100vh;
            height: 100dvh;
            z-index: 0;
            overflow: hidden;
        }
        html.page-dsph .dsp-viewport {            position: absolute;
            inset: 0;
            overflow: hidden;
            touch-action: none;
            z-index: 1;
        }
        html.page-dsph .dsp-track {            display: flex;
            flex-direction: row;
            height: 100%;
            width: auto;
            will-change: transform;
        }
        html.page-dsph .dsp-page {            flex: 0 0 auto;
            position: relative;
            width: 100vw;
            max-width: 100dvw;
            height: 100%;
            background: #0a0a0a;
            overflow: hidden;
        }
        html.page-dsph .video-layer {            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
            pointer-events: auto;
        }
        /*
         * 竖屏：16:9 横片要「转 90° 铺满」——用长边=屏高-底栏、短边=屏宽 的矩形，再 translate 居中后 rotate(90deg)，
         * 与槽 (100vw × (100dvh-底栏)) 的轴对齐包围盒一致，减少黑边。
         * 横屏真机：不再做此套娃，直接贴边铺满槽。
         */
        html.page-dsph .video-layer {
            inset: auto;
            left: 50%;
            top: 50%;
            width: calc(100dvh - 55px - env(safe-area-inset-bottom, 0px));
            height: 100vw;
            transform: translate(-50%, -50%) rotate(90deg);
            transform-origin: center center;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        @media (orientation: landscape) {
            html.page-dsph .video-layer {
                left: 0;
                top: 0;
                right: 0;
                bottom: calc(55px + env(safe-area-inset-bottom, 0px));
                width: auto;
                height: auto;
                transform: none;
            }
        }
        html.page-dsph .video-layer video {            position: relative;
            z-index: 0;
            width: 100%;
            max-width: 100%;
            height: auto;
            max-height: 100%;
            object-fit: contain;
            pointer-events: none;
        }
        /* 画面随 .video-layer 一起转；在层内局部坐标中撑满（可裁边） */
        html.page-dsph .video-layer video {
            width: 100%;
            height: 100%;
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;
            object-position: center;
        }
        html.page-dsph .dsp-layer-cover {            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 2;
            opacity: 1;
            visibility: visible;
            pointer-events: none;
            -webkit-user-select: none;
            user-select: none;
            transition: opacity 0.2s ease, visibility 0.2s ease;
        }
        .video-layer.has-dsp-frame .dsp-layer-cover,
        html.page-dsph .dsp-prefetch-layer.has-dsp-frame .dsp-layer-cover {            opacity: 0;
            visibility: hidden;
        }
        html.page-dsph .video-layer--empty {            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 14px;
        }
        html.page-dsph .icon-play-center {            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 72px;
            height: 72px;
            z-index: 20;
            opacity: 0.95;
            display: none;
            pointer-events: auto;
            cursor: pointer;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
        }
        html.page-dsph .icon-play-center.is-show { display: block; }        /* 与 .video-layer 的竖屏 90° 转屏一致，播放按钮在视口里单独顺时针 90° */
        html.page-dsph .icon-play-center {
            transform: translate(-50%, -50%) rotate(90deg);
        }
        @media (orientation: landscape) {
            html.page-dsph .icon-play-center {
                transform: translate(-50%, -50%);
            }
        }
        /* 横滑引导：仅竖屏；与底栏上沿对齐的可视区居中，箭头朝右、文案竖排 */
        html.page-dsph .dsp-swipe-hint {            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: calc(55px + env(safe-area-inset-bottom, 0px));
            z-index: 950;
            display: none;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 20px 16px;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        html.page-dsph .dsp-swipe-hint.is-open {            display: flex;
        }
        html.page-dsph .dsp-swipe-hint__scrim {            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }
        html.page-dsph .dsp-swipe-hint__panel {            position: relative;
            z-index: 1;
            max-width: min(92vw, 400px);
            padding: 28px 32px 28px 28px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: linear-gradient(165deg, rgba(40, 24, 58, 0.92) 0%, rgba(12, 7, 16, 0.94) 100%);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            -webkit-backdrop-filter: blur(12px) saturate(150%);
            backdrop-filter: blur(12px) saturate(150%);
        }
        html.page-dsph .dsp-swipe-hint__close {            position: absolute;
            top: 6px;
            right: 6px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
        }
        html.page-dsph .dsp-swipe-hint__close:active {            background: rgba(255, 255, 255, 0.18);
        }
        html.page-dsph .dsp-swipe-hint__inner {            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 16px 20px;
        }
        html.page-dsph .dsp-swipe-hint__arrow {            display: block;
            flex: 0 0 auto;
            line-height: 0;
        }
        html.page-dsph .dsp-swipe-hint__arrow svg {            display: block;
            width: 48px;
            height: 48px;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
        }
        html.page-dsph .dsp-swipe-hint__text {            margin: 0;
            color: #f0e8ff;
            font-size: 17px;
            font-weight: 600;
            line-height: 1.5;
            letter-spacing: 0.12em;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
        }
        @media (orientation: landscape) {
            html.page-dsph .dsp-swipe-hint.is-open {                display: none !important;
            }
        }
        html.page-dsph .dsp-douyin-tabbar {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            max-width: none;
            z-index: 999;
            margin: 0;
            box-sizing: border-box;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-around;
            min-height: calc(55px + env(safe-area-inset-bottom, 0px));
            height: auto;
            padding-top: 0;
            padding-bottom: env(safe-area-inset-bottom, 0px);
            background: linear-gradient(180deg, rgba(30, 18, 45, 0.97) 0%, #100818 55%, #0c0710 100%);
            background-color: #0c0710;
            border-top: 1px solid rgba(148, 0, 211, 0.42);
            box-shadow: 0 -10px 40px rgba(148, 0, 211, 0.12), 0 -1px 0 rgba(255, 255, 255, 0.06) inset;
        }
        html.page-dsph .dsp-douyin-tabbar .tab-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #8a8794;
            text-decoration: none;
            font-size: 10px;
            line-height: 1.2;
            transition: color 0.2s ease, transform 0.2s ease;
            flex: 1;
            min-width: 0;
            padding: 0 1px;
            -webkit-tap-highlight-color: transparent;
        }
        html.page-dsph .dsp-douyin-tabbar .tab-item .tab-icon-svg {
            display: block;
            margin-bottom: 2px;
            line-height: 0;
            opacity: 0.85;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        html.page-dsph .dsp-douyin-tabbar .tab-item .tab-icon-svg svg {
            width: 20px;
            height: 20px;
            display: block;
            fill: currentColor;
        }
        html.page-dsph .dsp-douyin-tabbar .tab-item.active .tab-icon-svg {
            color: #c77dff;
            opacity: 1;
            transform: scale(1.06);
        }
        html.page-dsph .dsp-douyin-tabbar .tab-item.active {
            color: #e8d4ff;
            text-shadow: 0 0 18px rgba(199, 125, 255, 0.35);
        }
        html.page-dsph .dsp-douyin-tabbar .tab-item:active {
            opacity: 0.92;
        }
        /* 顶部分类：清透毛玻璃 + 空气感（上亮、下略收、轻阴影），亮视频下仍可读 */
        html.page-dsph .dsp-cat-tabs {            position: fixed;
            top: calc(10px + env(safe-area-inset-top, 0px));
            left: 50%;
            transform: translateX(-50%);
            z-index: 200;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            gap: 0;
            max-width: calc(100vw - 16px);
            box-sizing: border-box;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            border-radius: 999px;
            padding: 6px 5px;
            isolation: isolate;
            border: 1px solid rgba(255, 255, 255, 0.38);
            background: linear-gradient(
                165deg,
                rgba(255, 255, 255, 0.38) 0%,
                rgba(255, 255, 255, 0.14) 38%,
                rgba(255, 255, 255, 0.08) 58%,
                rgba(18, 14, 32, 0.2) 100%
            );
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.55) inset,
                0 -1px 0 rgba(0, 0, 0, 0.05) inset,
                0 0 0 0.5px rgba(255, 255, 255, 0.12),
                0 14px 36px rgba(0, 0, 0, 0.1),
                0 6px 16px rgba(0, 0, 0, 0.06);
            backdrop-filter: blur(26px) saturate(190%);
            -webkit-backdrop-filter: blur(26px) saturate(190%);
        }
        html.page-dsph .dsp-cat-tabs::before {            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            z-index: 0;
            background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.28) 0%,
                rgba(255, 255, 255, 0.04) 42%,
                transparent 72%
            );
        }
        html.page-dsph .dsp-cat-tabs::-webkit-scrollbar {            display: none;
        }
        @supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
            html.page-dsph .dsp-cat-tabs {                background: linear-gradient(
                    165deg,
                    rgba(72, 64, 96, 0.55) 0%,
                    rgba(36, 32, 52, 0.62) 100%
                );
                border-color: rgba(255, 255, 255, 0.28);
            }
            html.page-dsph .dsp-cat-tabs::before {                background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 55%);
            }
        }
        html.page-dsph .dsp-cat-tabs__btn {            position: relative;
            z-index: 1;
            border: 1px solid transparent;
            background: transparent;
            color: rgba(255, 255, 255, 0.98);
            font-size: 15px;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 999px;
            cursor: pointer;
            flex: 0 0 auto;
            white-space: nowrap;
            -webkit-tap-highlight-color: transparent;
            text-shadow:
                0 1px 2px rgba(0, 0, 0, 0.72),
                0 0 14px rgba(0, 0, 0, 0.22);
            transition: color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, text-shadow 0.22s ease,
                border-color 0.22s ease, backdrop-filter 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.02, 0.32, 1);
        }
        /* 选中态：清透水珠 + 细白边；无彩虹；不位移以便在导航条内垂直居中 */
        html.page-dsph .dsp-cat-tabs__btn.is-active {            z-index: 3;
            align-self: center;
            color: #ffffff;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.01em;
            transform: scale(1.02);
            text-shadow:
                0 1px 3px rgba(0, 0, 0, 0.8),
                0 0 14px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.52);
            background:
                radial-gradient(ellipse 118% 98% at 28% 15%, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.14) 26%, transparent 55%),
                radial-gradient(ellipse 150% 118% at 50% 112%, rgba(255, 255, 255, 0.14) 0%, transparent 46%);
            background-origin: border-box;
            background-clip: padding-box;
            box-shadow:
                0 10px 22px rgba(0, 0, 0, 0.14),
                0 4px 10px rgba(0, 0, 0, 0.08),
                0 2px 0 rgba(255, 255, 255, 0.2),
                0 0 12px rgba(255, 255, 255, 0.06),
                inset 0 2px 14px rgba(255, 255, 255, 0.3),
                inset 0 -7px 20px rgba(0, 0, 0, 0.16),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(18px) saturate(188%);
            -webkit-backdrop-filter: blur(18px) saturate(188%);
        }
        @supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
            html.page-dsph .dsp-cat-tabs__btn.is-active {                background:
                    radial-gradient(ellipse 118% 98% at 28% 15%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.1) 28%, transparent 56%),
                    radial-gradient(ellipse 150% 118% at 50% 112%, rgba(255, 255, 255, 0.1) 0%, transparent 46%);
                background-origin: border-box;
                background-clip: padding-box;
            }
        }
        /* 横滑页：精品/收藏 胶囊整体顺时针 90°，沿屏幕右侧竖放（与横屏 16:9 主视觉不抢顶栏中位） */
        html.page-dsph .dsp-cat-tabs--dsph-tr {
            left: auto;
            /* 右缘多留白，避免旋转后半个胶囊在屏外；上移到顶区更易点 */
            right: max(30px, calc(21px + env(safe-area-inset-right, 0px)));
            top: 50%;
            flex-direction: row;
            max-width: min(220px, calc(100vw - 24px));
            transform: translateY(calc(-50% - 18vh - 24px)) rotate(90deg);
            transform-origin: right center;
        }
        @media (orientation: portrait) {
            /* 旋转 90° 后沿右缘的「长边」= 未旋转时整条胶囊的宽度，竖屏可略加宽、加长 */
            html.page-dsph .dsp-cat-tabs--dsph-tr {
                max-width: min(300px, calc(100dvw - 16px));
                padding: 4px 7px;
            }
            html.page-dsph .dsp-cat-tabs--dsph-tr .dsp-cat-tabs__btn {
                padding: 5px 14px;
                font-size: 14px;
            }
            html.page-dsph .dsp-cat-tabs--dsph-tr .dsp-cat-tabs__btn.is-active {
                font-size: 14px;
            }
        }
        /* 收藏流为空时居中文案（不弹窗，与主内容同底到站内导航上沿） */
        html.page-dsph .dsph-fav-empty {            position: fixed;
            left: 0;
            right: 0;
            top: 0;
            bottom: calc(55px + env(safe-area-inset-bottom, 0px));
            z-index: 15;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 24px 20px 80px;
            box-sizing: border-box;
            pointer-events: none;
            text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
        }
        html.page-dsph .dsph-fav-empty__t {            margin: 0 0 8px;
            color: #f0e8ff;
            font-size: 16px;
            font-weight: 600;
        }
        html.page-dsph .dsph-fav-empty__sub {            margin: 0;
            color: rgba(255, 255, 255, 0.66);
            font-size: 13px;
            line-height: 1.45;
            max-width: 260px;
        }
        /* 收藏请求失败时轻提示（不阻塞） */
        html.page-dsph .dsph-fav-hint {            position: fixed;
            z-index: 220;
            right: max(8px, env(safe-area-inset-right, 0px));
            top: calc(12px + env(safe-area-inset-top, 0px));
            max-width: min(200px, 42vw);
            padding: 8px 10px;
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.16);
            color: #ffc9c9;
            font-size: 12px;
            line-height: 1.35;
            text-align: right;
            display: none;
            pointer-events: none;
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
        }
        html.page-dsph .dsph-fav-hint.is-show {            display: block;
        }
        @media (orientation: landscape) {
            html.page-dsph .dsp-cat-tabs--dsph-tr {
                top: env(safe-area-inset-top, 0px);
                right: max(22px, calc(11px + env(safe-area-inset-right, 0px)));
                left: auto;
                transform: none;
                max-width: min(220px, 50vw);
            }
        }
        /* 放在 .dsp-root 外可避免与全屏裁剪/变换叠加出问题；右下角竖排 */
        html.page-dsph .dsp-side-actions {            position: fixed;
            right: max(8px, env(safe-area-inset-right, 0px));
            bottom: calc(55px + env(safe-area-inset-bottom, 0px) + 16px);
            z-index: 70;
            display: none;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            pointer-events: none;
        }
        html.page-dsph .dsp-side-actions.is-visible {            display: flex;
        }
        html.page-dsph .dsp-side-actions__btn {            pointer-events: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            border: 0;
            background: transparent;
            color: #fff;
            font-size: 11px;
            line-height: 1.2;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
            padding: 2px 4px;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
            /* 原地顺时针 90°：锚在按钮几何中心，侧栏 right/bottom 不变 */
            transform: rotate(90deg);
            transform-origin: center center;
        }
        html.page-dsph .dsp-side-actions__icon {            display: block;
            line-height: 0;
        }
        html.page-dsph .dsp-side-actions__icon svg {            width: 34px;
            height: 34px;
            display: block;
            fill: currentColor;
            filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.55));
        }
        html.page-dsph .dsp-side-actions__btn.is-active--fav .dsp-side-actions__icon {            color: #ffd166;
        }
        html.page-dsph .dsp-side-actions__btn.is-muted .dsp-side-actions__icon {            color: rgba(255, 255, 255, 0.55);
        }
        html.page-dsph .dsp-side-actions__btn.is-hidden {            display: none !important;
        }
        html.page-dsph .video-meta {            position: fixed;
            left: 52px;
            right: 78px;
            bottom: calc(55px + env(safe-area-inset-bottom, 0px) + 16px);
            z-index: 60;
            pointer-events: none;
            text-shadow: 0 1px 4px rgba(0,0,0,0.8);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        /* 试看提示：横条；背景与顶部分类条一致的轻量毛玻璃 */
        html.page-dsph .dsp-vip-teaser {            display: none;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap: 10px 12px;
            width: 100%;
            max-width: min(100%, calc(100vw - 52px - 78px - 8px));
            padding: 10px 12px 10px 14px;
            border-radius: 999px;
            pointer-events: auto;
            box-sizing: border-box;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.22);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.12),
                0 1px 0 rgba(255, 255, 255, 0.35) inset;
            -webkit-backdrop-filter: blur(22px) saturate(180%);
            backdrop-filter: blur(22px) saturate(180%);
            isolation: isolate;
            transition: box-shadow 0.35s ease, border-color 0.35s ease;
        }
        @supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
            html.page-dsph .dsp-vip-teaser {                background: rgba(28, 28, 32, 0.72);
            }
        }
        html.page-dsph .dsp-vip-teaser.is-open {            display: flex;
        }
        html.page-dsph .dsp-vip-teaser__copy {            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        /* 主卖点：亮金色实填 + 单层描边式阴影，避免渐变透明字发糊、发黄黑脏边 */
        html.page-dsph .dsp-vip-teaser__line1 {            margin: 0;
            font-size: 15px;
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: 0.03em;
            color: #ffeb9a;
            text-shadow:
                0 1px 2px rgba(0, 0, 0, 0.72),
                0 0 14px rgba(255, 210, 100, 0.45);
        }
        /* 说明：略小但仍保证在毛玻璃上可读 */
        html.page-dsph .dsp-vip-teaser__line2 {            margin: 0;
            font-size: 11px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.66);
            line-height: 1.38;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 0 12px rgba(0, 0, 0, 0.2);
        }
        /* 播放误点：短促晃动 + 轻微缩放，比单纯放大更抢眼 */
        @keyframes dsp-vip-teaser-attn {
            0%,
            100% {
                transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
                box-shadow:
                    0 8px 32px rgba(0, 0, 0, 0.12),
                    0 1px 0 rgba(255, 255, 255, 0.35) inset;
                border-color: rgba(255, 255, 255, 0.22);
            }
            10% {
                transform: translate3d(-7px, 2px, 0) rotate(-2.5deg) scale(1.03);
                box-shadow:
                    0 10px 36px rgba(0, 0, 0, 0.14),
                    0 0 28px rgba(255, 255, 255, 0.12),
                    0 1px 0 rgba(255, 255, 255, 0.45) inset;
                border-color: rgba(255, 255, 255, 0.36);
            }
            22% {                transform: translate3d(8px, -2px, 0) rotate(2.8deg) scale(1.04);
            }
            34% {                transform: translate3d(-6px, 1px, 0) rotate(-2deg) scale(1.035);
            }
            46% {                transform: translate3d(5px, 2px, 0) rotate(1.6deg) scale(1.03);
            }
            58% {                transform: translate3d(-3px, -1px, 0) rotate(-1deg) scale(1.022);
            }
            72% {                transform: translate3d(2px, 0, 0) rotate(0.6deg) scale(1.014);
            }
            86% {                transform: translate3d(-1px, 0, 0) rotate(-0.3deg) scale(1.006);
            }
        }
        html.page-dsph .dsp-vip-teaser.is-attn-pulse {            animation: dsp-vip-teaser-attn 0.52s cubic-bezier(0.36, 0.07, 0.19, 1);
        }
        html.page-dsph .dsp-vip-teaser__btn {            flex-shrink: 0;
            align-self: center;
            border: none;
            border-radius: 999px;
            padding: 8px 14px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            color: #1a1028;
            background: linear-gradient(145deg, #ffe8b8 0%, #e8c066 45%, #c9a227 100%);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.26);
            white-space: nowrap;
            -webkit-tap-highlight-color: transparent;
        }
        html.page-dsph .dsp-vip-teaser__btn:active {            opacity: 0.92;
            transform: scale(0.98);
        }
        /* 横滑页：5 秒试看小卡片 — 在旋转标题右侧（与标题同 top、left 为标题占宽 + 间距） */
        html.page-dsph .dsp-vip-teaser {
            position: fixed;
            top: calc(54px + env(safe-area-inset-top, 0px));
            /* 与标题同字号推算旋转后水平占位：max-height 3.2em × line-height 1.45 × 14px */
            left: calc(52px + env(safe-area-inset-left, 0px) + (3.2 * 14px * 1.45) + 56px);
            right: auto;
            bottom: auto;
            z-index: 10042;
            width: auto;
            min-width: 0;
            max-width: min(92vw, 300px);
            max-height: min(78vh, 480px);
            flex-direction: column;
            align-items: stretch;
            justify-content: flex-start;
            gap: 10px;
            padding: 12px 14px;
            border-radius: 16px;
            transform: rotate(90deg);
            transform-origin: top left;
            box-sizing: border-box;
        }
        html.page-dsph .dsp-vip-teaser__copy {
            flex: 0 0 auto;
            align-items: center;
            text-align: center;
        }
        html.page-dsph .dsp-vip-teaser__line1,
        html.page-dsph .dsp-vip-teaser__line2 {
            text-align: center;
            max-width: 22em;
        }
        html.page-dsph .dsp-vip-teaser__btn {
            align-self: stretch;
            width: 100%;
            box-sizing: border-box;
        }
        @keyframes dsp-vip-teaser-attn-dsph {
            0%,
            100% {
                transform: translate3d(0, 0, 0) rotate(90deg) scale(1);
                box-shadow:
                    0 8px 32px rgba(0, 0, 0, 0.12),
                    0 1px 0 rgba(255, 255, 255, 0.35) inset;
                border-color: rgba(255, 255, 255, 0.22);
            }
            10% {
                transform: translate3d(-7px, 2px, 0) rotate(87.5deg) scale(1.03);
                box-shadow:
                    0 10px 36px rgba(0, 0, 0, 0.14),
                    0 0 28px rgba(255, 255, 255, 0.12),
                    0 1px 0 rgba(255, 255, 255, 0.45) inset;
                border-color: rgba(255, 255, 255, 0.36);
            }
            22% {                transform: translate3d(8px, -2px, 0) rotate(92.8deg) scale(1.04);
            }
            34% {                transform: translate3d(-6px, 1px, 0) rotate(88deg) scale(1.035);
            }
            46% {                transform: translate3d(5px, 2px, 0) rotate(91.6deg) scale(1.03);
            }
            58% {                transform: translate3d(-3px, -1px, 0) rotate(89deg) scale(1.022);
            }
            72% {                transform: translate3d(2px, 0, 0) rotate(90.6deg) scale(1.014);
            }
            86% {                transform: translate3d(-1px, 0, 0) rotate(89.7deg) scale(1.006);
            }
        }
        html.page-dsph .dsp-vip-teaser.is-attn-pulse {
            animation: dsp-vip-teaser-attn-dsph 0.52s cubic-bezier(0.36, 0.07, 0.19, 1);
        }
        /* 非 VIP 点「清晰度」：与试看小卡片同系毛玻璃，居中长方卡片 */
        html.page-dsph .dsp-vip-hdqual-tip {            position: fixed;
            inset: 0;
            z-index: 10045;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px 20px;
            box-sizing: border-box;
            pointer-events: none;
        }
        html.page-dsph .dsp-vip-hdqual-tip.is-open {            display: flex;
            pointer-events: auto;
        }
        html.page-dsph .dsp-vip-hdqual-tip__backdrop {            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.48);
            -webkit-tap-highlight-color: transparent;
        }
        html.page-dsph .dsp-vip-hdqual-tip__card {            position: relative;
            z-index: 1;
            width: 100%;
            max-width: min(100%, 320px);
            padding: 44px 18px 20px;
            border-radius: 16px;
            box-sizing: border-box;
            pointer-events: auto;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.22);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.12),
                0 1px 0 rgba(255, 255, 255, 0.35) inset;
            -webkit-backdrop-filter: blur(22px) saturate(180%);
            backdrop-filter: blur(22px) saturate(180%);
            isolation: isolate;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 18px;
        }
        @supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
            html.page-dsph .dsp-vip-hdqual-tip__card {                background: rgba(28, 28, 32, 0.88);
            }
        }
        html.page-dsph .dsp-vip-hdqual-tip__close {            position: absolute;
            top: 10px;
            right: 10px;
            width: 34px;
            height: 34px;
            border: none;
            padding: 0;
            margin: 0;
            border-radius: 50%;
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.92);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
            -webkit-tap-highlight-color: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        html.page-dsph .dsp-vip-hdqual-tip__close:active {            background: rgba(255, 255, 255, 0.2);
        }
        html.page-dsph .dsp-vip-hdqual-tip__text {            margin: 0;
            font-size: 15px;
            font-weight: 800;
            line-height: 1.45;
            letter-spacing: 0.02em;
            text-align: center;
            color: #ffeb9a;
            text-shadow:
                0 1px 2px rgba(0, 0, 0, 0.72),
                0 0 14px rgba(255, 210, 100, 0.45);
        }
        html.page-dsph .dsp-vip-hdqual-tip__btn {            align-self: center;
            border: none;
            border-radius: 999px;
            padding: 10px 28px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            color: #1a1028;
            background: linear-gradient(145deg, #ffe8b8 0%, #e8c066 45%, #c9a227 100%);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.26);
            white-space: nowrap;
            -webkit-tap-highlight-color: transparent;
        }
        html.page-dsph .dsp-vip-hdqual-tip__btn:active {            opacity: 0.92;
            transform: scale(0.98);
        }
        html.page-dsph .video-meta .title-line {            font-size: 14px;
            line-height: 1.45;
            color: rgba(255,255,255,0.92);
            max-height: 3.2em;
            overflow: hidden;
            min-height: 0;
            width: 100%;
        }
        /* 仅标题：左上角 + 顺时针 90°；试看条等仍在原 .video-meta 布局内 */
        html.page-dsph .video-meta .title-line {
            position: fixed;
            z-index: 66;
            top: calc(10px + env(safe-area-inset-top, 0px));
            left: calc(52px + env(safe-area-inset-left, 0px));
            right: auto;
            bottom: auto;
            width: max-content;
            max-width: min(92vw, 560px);
            max-height: 3.2em;
            margin: 0;
            transform: rotate(90deg);
            transform-origin: top left;
        }
        /* 左侧竖向进度条：自上而下为 0%→100%（与播放进度一致） */
        html.page-dsph .dsp-progress {            position: fixed;
            left: max(8px, env(safe-area-inset-left, 0px));
            top: calc(12px + env(safe-area-inset-top, 0px));
            bottom: calc(20px + env(safe-area-inset-bottom, 0px));
            width: 14px;
            z-index: 65;
            background: transparent;
            pointer-events: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: width 0.18s ease;
        }
        html.page-dsph .dsp-progress.is-dragging {            width: 26px;
        }
        html.page-dsph .dsp-progress.is-disabled {            opacity: 0.42;
        }
        .dsp-progress.is-buffering,
        html.page-dsph .dsp-progress.is-buffering.is-disabled {            opacity: 0.95;
        }
        html.page-dsph .dsp-progress:not(.is-disabled) {            pointer-events: auto;
        }
        html.page-dsph .dsp-progress__hint {            position: absolute;
            /* 紧贴竖条右侧，时间文案顺时针 90° 与左侧竖向轨道一致 */
            left: calc(100% + 2px);
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
            transform-origin: center center;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            font-variant-numeric: tabular-nums;
            color: rgba(255, 255, 255, 0.98);
            white-space: nowrap;
            background: rgba(0, 0, 0, 0.18);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 0, 0, 0.45);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.12s ease;
        }
        html.page-dsph .dsp-progress.is-dragging .dsp-progress__hint {            opacity: 1;
        }
        html.page-dsph .dsp-progress__track {            flex: 1;
            width: 3px;
            min-height: 0;
            background: rgba(255, 255, 255, 0.12);
            position: relative;
            border-radius: 2px;
            transition: width 0.18s ease;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
        }
        html.page-dsph .dsp-progress__track::before {            content: '';
            position: absolute;
            left: -14px;
            right: -14px;
            top: -10px;
            bottom: -10px;
        }
        html.page-dsph .dsp-progress.is-dragging .dsp-progress__track {            width: 8px;
        }
        html.page-dsph .dsp-progress__fill {            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            width: 100%;
            height: 0%;
            background: rgba(255, 255, 255, 0.78);
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.22);
            border-radius: 2px;
            pointer-events: none;
        }
        html.page-dsph .dsp-progress__buffer {            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            width: 100%;
            height: 50%;
            transform: translateY(-50%);
            transform-origin: center center;
            background: linear-gradient(180deg,
                rgba(255,255,255,0) 0%,
                rgba(255,255,255,0.55) 15%,
                rgba(255,255,255,0.9) 50%,
                rgba(255,255,255,0.55) 85%,
                rgba(255,255,255,0) 100%
            );
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
            border-radius: 2px;
            pointer-events: none;
            z-index: 1;
            opacity: 0;
            visibility: hidden;
        }
        html.page-dsph .dsp-progress.is-buffering .dsp-progress__buffer {            opacity: 1;
            visibility: visible;
            animation: dsp-buffer-breathe-v 1.15s ease-in-out infinite;
        }
        @keyframes dsp-buffer-breathe-v {
            0%,
            100% { height: 38%; }
            50% { height: 100%; }
        }
        html.page-dsph .empty-state {            position: fixed;
            inset: 0;
            z-index: 100;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #000;
            color: #aaa;
            padding: 24px;
            padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
            text-align: center;
            gap: 16px;
        }
        html.page-dsph .empty-state button {            padding: 10px 22px;
            border-radius: 999px;
            border: 1px solid #444;
            background: #1a1a1a;
            color: #fff;
            font-size: 14px;
        }
        /* 第 4 路：仅预缓冲 list[current+2]，不参与三屏滑动 */
        html.page-dsph .dsp-prefetch-layer {            position: fixed;
            left: -9999px;
            top: 0;
            width: 4px;
            height: 4px;
            overflow: hidden;
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
        }
        /* 非 VIP：试看 5 秒后暂停并弹出标题上方小卡片；点「立即开通」再打开本大卡片；大卡片可右上角关闭 */
        html.page-dsph .dsp-vip-gate {            position: fixed;
            inset: 0;
            z-index: 10050;
            display: none;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }
        html.page-dsph .dsp-vip-gate.is-open {            display: flex;
        }
        html.page-dsph .dsp-vip-gate__close {            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 4;
            width: 34px;
            height: 34px;
            border: none;
            padding: 0;
            margin: 0;
            border-radius: 50%;
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.92);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
            -webkit-tap-highlight-color: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        html.page-dsph .dsp-vip-gate__close:active {            background: rgba(255, 255, 255, 0.2);
        }
        html.page-dsph .dsp-vip-gate__panel {            position: relative;
            z-index: 1;
            pointer-events: auto;
            width: 75vw;
            max-width: 380px;
            height: calc(77vh * 1.05);
            max-height: 601px;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: flex-start;
            padding: 22px 18px 24px;
            overflow-x: hidden;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            box-sizing: border-box;
            text-align: center;
            color: #fff;
            background: rgba(18, 12, 32, 0.38);
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 20px;
            box-shadow:
                0 20px 48px rgba(0, 0, 0, 0.28),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
            -webkit-backdrop-filter: blur(22px) saturate(1.35);
            backdrop-filter: blur(22px) saturate(1.35);
        }
        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            html.page-dsph .dsp-vip-gate__panel {                background: rgba(22, 14, 38, 0.88);
            }
        }
        html.page-dsph .dsp-vip-gate__icon-wrap {            margin: 0 auto 12px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, rgba(255, 214, 120, 0.35) 0%, rgba(200, 120, 255, 0.2) 100%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }
        html.page-dsph .dsp-vip-gate__icon-wrap svg {            width: 28px;
            height: 28px;
            display: block;
            color: #ffe8a3;
        }
        html.page-dsph .dsp-vip-gate__kicker {            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.55);
            margin: 0 0 10px;
        }
        html.page-dsph .dsp-vip-gate__sr-only {            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        html.page-dsph .dsp-vip-gate__bullets {            list-style: none;
            margin: 0 0 16px;
            padding: 0 2px;
            text-align: left;
        }
        html.page-dsph .dsp-vip-gate__bullets li {            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 8px;
        }
        html.page-dsph .dsp-vip-gate__bullets li:last-child {            margin-bottom: 0;
        }
        html.page-dsph .dsp-vip-gate__icon-check {            flex-shrink: 0;
            width: 18px;
            height: 18px;
            margin-top: 2px;
            color: #9effc5;
        }
        html.page-dsph .dsp-vip-gate__pick {            display: flex;
            gap: 10px;
            margin: 0 0 12px;
        }
        html.page-dsph .dsp-vip-gate__pick-item {            flex: 1;
            position: relative;
            cursor: pointer;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            background: rgba(0, 0, 0, 0.15);
            min-height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: border-color 0.15s ease, background 0.15s ease;
        }
        html.page-dsph .dsp-vip-gate__pick-item input {            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }
        html.page-dsph .dsp-vip-gate__pick-item span {            text-align: center;
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }
        html.page-dsph .dsp-vip-gate__pick-item small {            display: block;
            font-size: 11px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 2px;
        }
        .dsp-vip-gate__pick-item:has(input:checked),
        html.page-dsph .dsp-vip-gate__pick-item.is-on {            border-color: rgba(255, 210, 120, 0.65);
            background: rgba(255, 200, 100, 0.12);
            box-shadow: 0 0 0 1px rgba(255, 200, 120, 0.25) inset;
        }
        html.page-dsph .dsp-vip-gate__pays {            display: flex;
            gap: 10px;
            margin-bottom: 4px;
        }
        html.page-dsph .dsp-vip-gate__pay {            flex: 1;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 10px;
            -webkit-tap-highlight-color: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        html.page-dsph .dsp-vip-gate__pay svg {            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        html.page-dsph .dsp-vip-gate__pay svg.dsp-vip-ic--stroke {            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        html.page-dsph .dsp-vip-gate__pay--alipay {            background: linear-gradient(180deg, #1677ff 0%, #0958d9 100%);
            box-shadow: 0 4px 12px rgba(22, 119, 255, 0.35);
        }
        html.page-dsph .dsp-vip-gate__pay--wx {            background: linear-gradient(180deg, #07c160 0%, #05a350 100%);
            box-shadow: 0 4px 12px rgba(7, 193, 96, 0.35);
        }
        html.page-dsph .dsp-vip-gate__pay:active {            transform: scale(0.98);
            opacity: 0.95;
        }
        html.page-dsph .dsp-vip-gate__acct-hint {            text-align: left;
            font-size: 12px;
            line-height: 1.5;
            color: rgba(255, 200, 160, 0.8);
            margin: 14px 0 8px;
            padding: 8px 10px;
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 200, 140, 0.15);
        }
        html.page-dsph .dsp-vip-gate__acct {            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        html.page-dsph .dsp-vip-gate__field label {            display: block;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 4px;
        }
        html.page-dsph .dsp-vip-gate__field input {            width: 100%;
            padding: 10px 12px;
            font-size: 15px;
            color: #fff;
            background: rgba(0, 0, 0, 0.22);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 10px;
            box-sizing: border-box;
        }
        html.page-dsph .dsp-vip-gate__field input:focus {            outline: none;
            border-color: rgba(200, 160, 255, 0.5);
        }
        html.page-dsph .dsp-vip-gate__save {            margin-top: 4px;
            width: 100%;
            min-height: 44px;
            font-size: 15px;
            font-weight: 700;
            color: #1a0d08;
            border: none;
            border-radius: 12px;
            background: linear-gradient(180deg, #e8e0ff 0%, #b8a0e8 100%);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
        }
        html.page-dsph .dsp-vip-gate__save:disabled {            opacity: 0.55;
        }
        html.page-dsph .dsp-vip-gate__save-msg {            min-height: 1.2em;
            font-size: 12px;
            text-align: center;
            margin: 6px 0 0;
        }
        html.page-dsph .dsp-vip-gate__save-msg.is-ok { color: #9effc5; }        html.page-dsph .dsp-vip-gate__save-msg.is-err { color: #ff9e9e; }        /* 充值成功：与 pay 页 vipCheck 配套 */
        html.page-dsph .dsp-vip-success {            display: none;
            position: fixed;
            inset: 0;
            z-index: 10100;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
            pointer-events: auto;
        }
        html.page-dsph .dsp-vip-success.is-open {            display: flex;
        }
        html.page-dsph .dsp-vip-success__dialog {            max-width: 340px;
            width: 100%;
            background: linear-gradient(165deg, #fffef8 0%, #f5f0e6 100%);
            border-radius: 24px;
            padding: 26px 20px 20px;
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.35) inset;
            text-align: center;
            color: #1e1e2a;
            position: relative;
        }
        html.page-dsph .dsp-vip-success__dialog h3 {            font-size: 20px;
            font-weight: 800;
            margin: 0 0 12px;
            background: linear-gradient(135deg, #b8860b, #d4af37);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        html.page-dsph .dsp-vip-success__dialog p {            font-size: 14px;
            line-height: 1.5;
            color: #3a3a4a;
            margin: 0 0 6px;
        }
        html.page-dsph .dsp-vip-success__expire {            font-weight: 700;
            color: #8b4513;
            font-size: 16px;
            margin: 10px 0 18px;
        }
        html.page-dsph .dsp-vip-success__ok {            width: 100%;
            border: none;
            padding: 13px 20px;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            background: linear-gradient(145deg, #d4af37, #b8860b);
            color: #fff;
            box-shadow: 0 8px 20px rgba(184, 134, 11, 0.35);
        }
        html.page-dsph .dsp-vip-success__close {            position: absolute;
            top: 10px;
            right: 12px;
            width: 32px;
            height: 32px;
            border: none;
            background: rgba(0, 0, 0, 0.06);
            border-radius: 50%;
            font-size: 20px;
            line-height: 1;
            cursor: pointer;
            color: #666;
        }
