/* Vesper 暮色编辑部：独立视觉系统与核心页面布局 */
:root {
    --vs-bg: #0b1118;
    --vs-bg-deep: #080d13;
    --vs-surface-1: #111923;
    --vs-surface-2: #17212c;
    --vs-surface-3: #202c38;
    --vs-line: #2b3743;
    --vs-line-soft: #202b35;
    --vs-text: #f3eadf;
    --vs-text-soft: #c8c0b7;
    --vs-text-muted: #939da8;
    --vs-accent: #ef6a5b;
    --vs-accent-strong: #ff7b69;
    --vs-accent-ink: #2a0e0b;
    --vs-success: #7fb58e;
    --vs-warning: #e6b66a;
    --vs-danger: #ef6a5b;
    --vs-shell: 1440px;
    --vs-gutter: clamp(12px, 3vw, 40px);
    --vs-radius-sm: 8px;
    --vs-radius-md: 14px;
    --vs-radius-lg: 22px;
    --vs-radius-xl: 30px;
    --vs-shadow-lg: 0 30px 80px rgba(3, 7, 11, .42);
    --vs-display: "Noto Serif SC", "Source Han Serif SC", "Songti SC", STSong, serif;
    --vs-body: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    --vs-ease: cubic-bezier(.16, 1, .3, 1);
}

@supports (color: oklch(50% 0.1 20)) {
    :root {
        --vs-bg: oklch(17% .018 248);
        --vs-bg-deep: oklch(13.5% .015 248);
        --vs-surface-1: oklch(20.5% .021 248);
        --vs-surface-2: oklch(24.5% .025 248);
        --vs-surface-3: oklch(30% .027 248);
        --vs-line: oklch(36% .024 248);
        --vs-line-soft: oklch(30% .021 248);
        --vs-text: oklch(94% .022 70);
        --vs-text-soft: oklch(80% .018 70);
        --vs-text-muted: oklch(68% .024 248);
        --vs-accent: oklch(67% .17 27);
        --vs-accent-strong: oklch(73% .16 28);
        --vs-accent-ink: oklch(20% .06 27);
    }
}

* { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    background: var(--vs-bg);
    color: var(--vs-text);
    font-family: var(--vs-body);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
}
body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 12% -8%, rgba(239, 106, 91, .09), transparent 34%),
        linear-gradient(115deg, transparent 0 72%, rgba(243, 234, 223, .018) 72% 72.2%, transparent 72.2%);
    content: "";
    pointer-events: none;
}
body.vs-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
svg { display: block; width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
::selection { background: var(--vs-accent); color: var(--vs-accent-ink); }
:focus-visible { outline: 2px solid var(--vs-accent-strong); outline-offset: 3px; }

.vs-shell, .vs-wrap {
    width: min(calc(100% - (var(--vs-gutter) * 2)), var(--vs-shell));
    margin-inline: auto;
}
/* 公共双层导航 */
.vs-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid var(--vs-line-soft);
    background: rgba(11, 17, 24, .94);
    transition: box-shadow .25s var(--vs-ease), background .25s ease;
}
.vs-header.is-scrolled { background: rgba(11, 17, 24, .985); box-shadow: 0 14px 36px rgba(3, 7, 11, .3); }
.vs-header__primary-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; min-height: 64px; gap: 12px; }
.vs-brand { display: inline-flex; min-width: 0; align-items: center; justify-self: start; }
.vs-brand__logo { display: block; max-width: 148px; max-height: 46px; object-fit: contain; }
.vs-brand__fallback { display: inline-flex; min-width: 0; align-items: center; gap: 10px; }
.vs-brand__mark {
    display: grid;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid var(--vs-accent);
    color: var(--vs-accent-strong);
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    transform: rotate(-3deg);
}
.vs-brand__copy { display: grid; min-width: 0; line-height: 1.15; }
.vs-brand__copy strong { max-width: 150px; overflow: hidden; font-family: var(--vs-display); font-size: 1.02rem; text-overflow: ellipsis; white-space: nowrap; }
.vs-brand__copy small { margin-top: 3px; color: var(--vs-text-muted); font-size: .64rem; letter-spacing: .18em; }
.vs-search { display: flex; align-items: center; border: 1px solid var(--vs-line); background: var(--vs-surface-1); }
.vs-search svg { flex: 0 0 auto; margin-left: 15px; color: var(--vs-text-muted); }
.vs-search input { min-width: 0; border: 0; outline: 0; background: transparent; color: var(--vs-text); }
.vs-search input::placeholder { color: var(--vs-text-muted); opacity: 1; }
.vs-search button { min-width: 64px; align-self: stretch; border: 0; background: var(--vs-accent); color: var(--vs-accent-ink); cursor: pointer; font-weight: 800; }
.vs-search--header { display: none; width: min(46vw, 560px); height: 44px; border-radius: 999px; overflow: hidden; }
.vs-search--header input { flex: 1; height: 100%; padding: 0 12px; }
.vs-search--drawer { width: 100%; min-height: 48px; margin-bottom: 18px; border-radius: 10px; overflow: hidden; }
.vs-search--drawer input { flex: 1; width: 100%; padding: 0 10px; }
.vs-header__actions { display: flex; align-items: center; gap: 6px; }
.vs-icon-action, .vs-menu-btn {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--vs-text-soft);
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}
.vs-icon-action:hover, .vs-menu-btn:hover { background: var(--vs-surface-2); color: var(--vs-accent-strong); }
.vs-icon-action--rank { display: none; }
.vs-header__channels { height: 0; }
.vs-header__channels-inner { height: 100%; }
.vs-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 92;
    display: flex;
    width: min(88vw, 380px);
    padding: max(20px, env(safe-area-inset-top)) 18px max(28px, env(safe-area-inset-bottom));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    border-left: 1px solid var(--vs-line);
    background: var(--vs-bg-deep);
    box-shadow: -30px 0 80px rgba(3, 7, 11, .5);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .35s var(--vs-ease), visibility .35s;
}
.vs-nav.is-open { transform: translateX(0); visibility: visible; }
.vs-nav__drawer-head { display: flex; min-height: 48px; margin-bottom: 14px; align-items: center; justify-content: space-between; }
.vs-nav__drawer-head strong { font-family: var(--vs-display); font-size: 1.35rem; }
.vs-nav__drawer-head button { display: grid; width: 44px; height: 44px; place-items: center; border: 0; border-radius: 50%; background: var(--vs-surface-2); cursor: pointer; }
.vs-nav > a, .vs-nav__link { display: flex; min-height: 46px; align-items: center; padding: 0 12px; border-radius: 8px; color: var(--vs-text-soft); font-weight: 700; }
.vs-nav > a.active, .vs-nav > a:hover, .vs-nav__item.is-active .vs-nav__link { background: var(--vs-surface-2); color: var(--vs-accent-strong); }
.vs-nav__row { display: flex; align-items: center; }
.vs-nav__row .vs-nav__link { flex: 1; }
.vs-nav__toggle { display: grid; flex: 0 0 44px; width: 44px; height: 44px; place-items: center; border: 0; background: transparent; cursor: pointer; }
.vs-nav__toggle svg { transition: transform .25s var(--vs-ease); }
.vs-nav__item.is-expanded .vs-nav__toggle svg { transform: rotate(90deg); }
.vs-nav__dropdown { display: none; padding: 6px 8px 12px 20px; }
.vs-nav__item.is-expanded .vs-nav__dropdown { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; }
.vs-nav__dropdown a { min-height: 40px; padding: 8px; color: var(--vs-text-muted); font-size: .875rem; }
.vs-nav__dropdown a:hover, .vs-nav__dropdown a.active { color: var(--vs-accent-strong); }
.vs-nav__divider { height: 1px; margin: 12px; background: var(--vs-line-soft); }
.vs-drawer-backdrop { position: fixed; inset: 0; z-index: 79; display: block; width: 100vw; height: 100dvh; padding: 0; border: 0; background: rgba(4, 8, 12, .72); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease, visibility .25s; }
.vs-drawer-backdrop.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.vs-mobile-dock {
    position: fixed;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    z-index: 78;
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    min-height: 60px;
    border: 1px solid var(--vs-line);
    border-radius: 16px;
    background: rgba(17, 25, 35, .98);
    box-shadow: 0 18px 50px rgba(3, 7, 11, .48);
}
.vs-mobile-dock a, .vs-mobile-dock button { display: grid; min-width: 0; min-height: 58px; place-content: center; justify-items: center; gap: 2px; border: 0; background: transparent; color: var(--vs-text-muted); cursor: pointer; font-size: .68rem; }
.vs-mobile-dock svg { font-size: 1.15rem; }
.vs-mobile-dock a.active { color: var(--vs-accent-strong); }

/* 首页首屏 */
.vs-hero { padding: clamp(14px, 3vw, 34px) 0 18px; }
.vs-hero__layout { display: grid; gap: 12px; }
.vs-hero__stage { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--vs-line-soft); border-radius: var(--vs-radius-lg); background: var(--vs-bg-deep); box-shadow: var(--vs-shadow-lg); }
.vs-hero__slides { position: relative; min-height: clamp(410px, 118vw, 560px); touch-action: pan-y; }
.vs-hero__slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .6s var(--vs-ease); }
.vs-hero__slide.is-active { z-index: 1; opacity: 1; pointer-events: auto; }
.vs-hero__media, .vs-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.vs-hero__media img { object-fit: cover; }
.vs-hero__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 12, 18, .97) 2%, rgba(7, 12, 18, .18) 68%), linear-gradient(90deg, rgba(7, 12, 18, .6), transparent 62%); }
.vs-hero__content { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; max-width: 780px; padding: 30px 20px 72px; }
.vs-hero h1 { max-width: 13ch; margin: 8px 0 10px; font-family: var(--vs-display); font-size: clamp(2.3rem, 9vw, 4.8rem); font-weight: 700; letter-spacing: -.05em; line-height: .98; }
.vs-hero h1 a { display: inline; }
.vs-hero__content > p { max-width: 58ch; margin: 0 0 14px; color: var(--vs-text-soft); display: -webkit-box; overflow: hidden; font-size: .92rem; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.vs-meta { display: flex; margin: 0 0 18px; flex-wrap: wrap; gap: 7px; color: var(--vs-text-soft); }
.vs-meta span, .vs-meta a, .vs-meta strong { display: inline-flex; min-height: 28px; align-items: center; padding: 2px 10px; border: 1px solid var(--vs-line); border-radius: 999px; background: rgba(17, 25, 35, .76); font-size: .78rem; font-style: normal; }
.vs-meta strong { border-color: rgba(239, 106, 91, .38); color: var(--vs-accent-strong); font-variant-numeric: tabular-nums; }
.vs-hero__actions { display: flex; flex-wrap: wrap; gap: 9px; }
.vs-btn { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; gap: 8px; padding: 0 17px; border: 1px solid transparent; border-radius: 999px; font-size: .88rem; font-weight: 800; }
.vs-btn--primary { background: var(--vs-accent); color: var(--vs-accent-ink); }
.vs-btn--ghost { border-color: var(--vs-line); background: rgba(17, 25, 35, .72); color: var(--vs-text); }
.vs-hero__controls { position: absolute; right: 18px; bottom: 20px; left: 20px; z-index: 4; display: flex; align-items: center; gap: 14px; }
.vs-hero__progress { height: 2px; overflow: hidden; flex: 1; background: rgba(243, 234, 223, .22); }
.vs-hero__progress span { display: block; width: 100%; height: 100%; background: var(--vs-accent); transform: scaleX(0); transform-origin: left; }
.vs-hero__progress span.is-running { animation: vs-hero-progress 6.2s linear both; }
.vs-hero__arrows { display: flex; gap: 6px; }
.vs-hero__arrows button { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--vs-line); border-radius: 50%; background: rgba(17, 25, 35, .78); cursor: pointer; }
@keyframes vs-hero-progress { to { transform: scaleX(1); } }
.vs-hero__queue { padding: 14px; border: 1px solid var(--vs-line-soft); border-radius: var(--vs-radius-lg); background: var(--vs-surface-1); }
.vs-hero__queue-list { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.vs-hero__queue-list::-webkit-scrollbar { display: none; }
.vs-hero__queue-item { display: grid; min-width: min(78vw, 265px); min-height: 76px; grid-template-columns: 30px 52px minmax(0, 1fr); align-items: center; gap: 9px; padding: 7px; border: 1px solid transparent; border-radius: 10px; background: transparent; color: var(--vs-text-soft); cursor: pointer; text-align: left; }
.vs-hero__queue-item.is-active { border-color: var(--vs-line); background: var(--vs-surface-2); }
.vs-hero__queue-index { color: var(--vs-text-muted); font-family: Georgia, serif; font-size: .75rem; font-variant-numeric: tabular-nums; }
.vs-hero__queue-item.is-active .vs-hero__queue-index { color: var(--vs-accent-strong); }
.vs-hero__queue-pic { height: 60px; overflow: hidden; border-radius: 7px; background: var(--vs-surface-3); }
.vs-hero__queue-pic img { width: 100%; height: 100%; object-fit: cover; }
.vs-hero__queue-copy { display: grid; min-width: 0; gap: 3px; }
.vs-hero__queue-copy strong, .vs-hero__queue-copy em { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vs-hero__queue-copy strong { font-size: .88rem; }
.vs-hero__queue-copy em { color: var(--vs-text-muted); font-size: .7rem; font-style: normal; }

/* 首页内容编排 */
.vs-channel-rail { border-block: 1px solid var(--vs-line-soft); background: var(--vs-bg-deep); }
.vs-channel-rail .vs-shell { display: flex; min-height: 74px; align-items: center; gap: 20px; overflow: visible; }
.vs-channel-rail__track { display: flex; min-width: 0; overflow-x: auto; flex: 1; gap: 12px; padding-block: 10px; scrollbar-width: none; scroll-padding-inline: 2px; }
.vs-channel-rail__track::-webkit-scrollbar { display: none; }
.vs-channel-rail a { display: inline-flex; min-width: 118px; min-height: 52px; align-items: center; justify-content: space-between; gap: 10px; padding: 0 14px; border: 1px solid var(--vs-line-soft); border-radius: 8px; font-family: var(--vs-display); font-size: 1.02rem; }
.vs-channel-rail a svg { color: var(--vs-accent); font-size: .9rem; transition: transform .2s var(--vs-ease); }
.vs-channel-rail a:hover svg { transform: translateX(3px); }
.vs-section { padding: clamp(38px, 7vw, 88px) 0; }
.vs-section + .vs-section { border-top: 1px solid var(--vs-line-soft); }
.vs-section__head { display: flex; margin-bottom: clamp(18px, 3vw, 30px); align-items: end; justify-content: space-between; gap: 16px; }
.vs-section__head h2 { margin: 0; font-family: var(--vs-display); font-size: clamp(1.7rem, 5vw, 3.1rem); font-weight: 700; letter-spacing: -.035em; line-height: 1.05; }
.vs-section__head > a { display: inline-flex; min-height: 44px; flex: 0 0 auto; align-items: center; gap: 8px; color: var(--vs-text-soft); font-size: .84rem; font-weight: 700; }
.vs-section__head > a span { color: var(--vs-accent-strong); }
.vs-shelf { padding-bottom: clamp(26px, 3vw, 44px); }
.vs-home-sections { padding-top: clamp(22px, 2.4vw, 36px); padding-bottom: clamp(28px, 3vw, 46px); }
.vs-trending__list { display: grid; gap: 8px; }
.vs-trending__item { position: relative; display: grid; min-width: 0; min-height: 78px; grid-template-columns: 48px minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--vs-line-soft); }
.vs-trending__pic { display: none; overflow: hidden; background: var(--vs-surface-2); }
.vs-trending__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--vs-ease); }
.vs-trending__rank { color: var(--vs-text-muted); font-family: Georgia, serif; font-size: 1.25rem; font-variant-numeric: tabular-nums; }
.vs-trending__copy { display: grid; min-width: 0; gap: 2px; }
.vs-trending__copy strong { overflow: hidden; font-family: var(--vs-display); font-size: 1rem; text-overflow: ellipsis; white-space: nowrap; }
.vs-trending__copy em { overflow: hidden; color: var(--vs-text-muted); font-size: .75rem; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.vs-trending__score { color: var(--vs-accent-strong); font-family: Georgia, serif; font-size: .95rem; font-variant-numeric: tabular-nums; }
.vs-vod-grid, .vs-card-grid, .vs-channel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(12px, 2vw, 20px) clamp(10px, 1.6vw, 18px); container-type: inline-size; }
.vs-vod-card { min-width: 0; }
.vs-vod-card > a { display: block; }
.vs-vod-card__pic { position: relative; display: block; aspect-ratio: 2 / 3; overflow: hidden; border-radius: var(--vs-radius-md); background: var(--vs-surface-2); }
.vs-vod-card__pic::after { position: absolute; inset: auto 0 0; height: 38%; background: linear-gradient(0deg, rgba(5, 9, 14, .76), transparent); content: ""; pointer-events: none; }
.vs-vod-card__pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--vs-ease), filter .3s ease; }
.vs-vod-card__note, .vs-vod-card__score { position: absolute; z-index: 2; display: inline-flex; min-height: 24px; align-items: center; padding: 2px 8px; border-radius: 999px; font-size: .7rem; font-style: normal; font-weight: 800; }
.vs-vod-card__note { right: 7px; bottom: 7px; left: 7px; width: fit-content; max-width: calc(100% - 14px); overflow: hidden; background: rgba(11, 17, 24, .84); color: var(--vs-text-soft); text-overflow: ellipsis; white-space: nowrap; }
.vs-vod-card__score { top: 7px; right: 7px; background: var(--vs-accent); color: var(--vs-accent-ink); }
.vs-vod-card__body { display: grid; padding-top: 10px; gap: 2px; }
.vs-vod-card h3 { margin: 0; overflow: hidden; font-family: var(--vs-display); font-size: .94rem; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.vs-vod-card p { margin: 0; overflow: hidden; color: var(--vs-text-muted); font-size: .74rem; text-overflow: ellipsis; white-space: nowrap; }
@container (min-width: 700px) {
    .vs-vod-card h3 { font-size: 1rem; }
    .vs-vod-card__body { padding-top: 11px; }
}
.vs-home-channel { padding: clamp(20px, 2vw, 30px) 0; border-top: 1px solid var(--vs-line-soft); }
.vs-home-channel:first-child { padding-top: 0; border-top: 0; }
.vs-home-channel .vs-section__head { margin-bottom: clamp(15px, 1.8vw, 22px); }
.vs-home-channel .vs-section__head h2 { font-size: clamp(1.5rem, 2.35vw, 2.2rem); }
.vs-home-channel__body { display: grid; gap: 22px; }
.vs-mini-rank { align-self: start; padding: 18px; border-top: 2px solid var(--vs-accent); background: var(--vs-surface-1); }
.vs-mini-rank h3 { margin: 0 0 12px; font-family: var(--vs-display); font-size: 1.12rem; }
.vs-mini-rank ol { display: grid; grid-template-columns: minmax(0, 1fr); margin: 0; padding: 0; gap: 0; list-style: none; }
.vs-mini-rank li a { display: grid; min-height: 45px; grid-template-columns: 26px minmax(0, 1fr) auto; align-items: center; gap: 8px; border-bottom: 1px solid var(--vs-line-soft); }
.vs-mini-rank li span { color: var(--vs-accent-strong); font-family: Georgia, serif; font-size: .76rem; }
.vs-mini-rank li strong { overflow: hidden; font-size: .84rem; text-overflow: ellipsis; white-space: nowrap; }
.vs-mini-rank li em { color: var(--vs-text-muted); font-size: .7rem; font-style: normal; }
.vs-home-journal__grid { display: grid; gap: 20px; }
.vs-home-journal__grid > a { display: grid; min-width: 0; gap: 12px; }
.vs-home-journal__pic { display: block; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--vs-radius-md); background: var(--vs-surface-2); }
.vs-home-journal__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--vs-ease); }
.vs-home-journal__copy { display: grid; gap: 6px; }
.vs-home-journal__copy em { color: var(--vs-accent-strong); font-size: .72rem; font-style: normal; }
.vs-home-journal__copy strong { font-family: var(--vs-display); font-size: 1.18rem; line-height: 1.35; }
.vs-home-journal__copy p { margin: 0; color: var(--vs-text-muted); display: -webkit-box; overflow: hidden; font-size: .83rem; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

/* 通用列表、筛选和分页 */
.vs-panel, .vs-filter, .vs-rank-card, .vs-art-side-card, .subsite-art-detail { border: 1px solid var(--vs-line-soft); background: var(--vs-surface-1); box-shadow: none; }
.vs-channel-page, .vs-catalog-page, .vs-search-page, .vs-latest-page, .vs-rank-page { min-height: 60vh; }
.vs-channel-page > .vs-section, .vs-catalog-page > .vs-section { padding-top: 10px; }
.vs-latest-page > .vs-section, .vs-rank-page > .vs-section { padding-top: 15px; }
.vs-channel-hero, .vs-search-hero, .vs-latest-hero, .vs-rank-hero { padding: clamp(32px, 6vw, 80px) 0 24px; border-bottom: 1px solid var(--vs-line-soft); background: var(--vs-bg-deep); }
.vs-rank-hero { padding-top: 15px; }
.vs-channel-hero h1, .vs-search-hero h1, .vs-latest-hero h1, .vs-rank-hero h1 { margin: 0; font-family: var(--vs-display); font-size: clamp(2rem, 6vw, 4rem); letter-spacing: -.04em; line-height: 1.05; }
.vs-filter { margin-bottom: 24px; padding: 14px; border-radius: var(--vs-radius-md); }
.vs-filter__mobile-toggle { display: flex; width: 100%; min-height: 46px; align-items: center; justify-content: space-between; padding: 0 4px; border: 0; background: transparent; cursor: pointer; font-weight: 800; }
.vs-filter__body { display: none; padding-top: 12px; }
.vs-filter.is-mobile-open .vs-filter__body { display: block; }
.vs-filter__row { display: grid; grid-template-columns: 72px minmax(0, 1fr); align-items: start; gap: 8px; padding: 8px 0; border-top: 1px solid var(--vs-line-soft); }
.vs-filter__row strong { min-height: 36px; padding-top: 6px; color: var(--vs-text-muted); font-size: .76rem; }
.vs-filter__items { display: flex; min-width: 0; overflow-x: auto; flex-wrap: nowrap; gap: 5px; scrollbar-width: none; }
.vs-filter__items::-webkit-scrollbar { display: none; }
.vs-filter__items a { display: inline-flex; min-height: 36px; flex: 0 0 auto; align-items: center; padding: 0 11px; border-radius: 999px; color: var(--vs-text-soft); font-size: .78rem; }
.vs-filter__items a:hover, .vs-filter__items a.active { background: var(--vs-accent); color: var(--vs-accent-ink); }
.vs-filter__toggle { min-height: 44px; margin-top: 10px; padding: 0 14px; border: 1px solid var(--vs-line); border-radius: 999px; background: transparent; color: var(--vs-text-soft); cursor: pointer; }
.vs-catalog-toolbar { display: flex; min-height: 58px; margin-bottom: 18px; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--vs-line-soft); }
.vs-catalog-toolbar h2 { margin: 0; font-family: var(--vs-display); font-size: 1.4rem; }
.vs-catalog-toolbar span { color: var(--vs-text-muted); font-size: .78rem; }
.vs-empty { padding: 64px 20px; text-align: center; }
.vs-pagination { display: flex; margin-top: 36px; justify-content: center; }
.vs-pagination__desktop, .vs-pagination__mobile { align-items: center; gap: 6px; }
.vs-pagination a, .vs-pagination span { display: inline-grid; min-width: 44px; min-height: 44px; place-items: center; padding: 0 10px; border: 1px solid var(--vs-line); border-radius: 9px; background: var(--vs-surface-1); }
.vs-pagination .active, .vs-pagination .current { border-color: var(--vs-accent); background: var(--vs-accent); color: var(--vs-accent-ink); }

/* 详情与播放 */
.vs-detail-page { width: 100%; max-width: 100%; overflow: clip; }
.vs-detail-hero { position: relative; isolation: isolate; width: 100%; max-width: 100%; padding: clamp(22px, 3vw, 44px) 0 32px; overflow: hidden; }
.vs-detail-hero__backdrop { position: absolute; inset: 0; z-index: -2; }
.vs-detail-hero__backdrop::after { position: absolute; inset: 0; background: linear-gradient(0deg, var(--vs-bg) 2%, rgba(11, 17, 24, .45) 64%, rgba(11, 17, 24, .8)), linear-gradient(90deg, rgba(11, 17, 24, .95), rgba(11, 17, 24, .2)); content: ""; }
.vs-detail-hero__backdrop img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.76); }
.vs-detail-hero__grid { display: grid; min-width: 0; grid-template-areas: "poster body" "facts facts"; grid-template-columns: 108px minmax(0, 1fr); gap: 18px; align-items: start; }
.vs-detail-poster { grid-area: poster; position: relative; min-width: 0; align-self: start; overflow: hidden; border-radius: 12px; }
.vs-detail-poster img { display: block; width: 100%; aspect-ratio: 2 / 3; border-radius: 12px; object-fit: cover; box-shadow: 0 24px 60px rgba(3, 7, 11, .45); }
.vs-detail-poster > span { position: absolute; top: auto; right: 6px; bottom: 6px; left: auto; padding: 3px 8px; border-radius: 999px; background: var(--vs-accent); color: var(--vs-accent-ink); font-family: Georgia, serif; font-weight: 700; }
.vs-detail-body { grid-area: body; display: block; min-width: 0; align-self: center; }
.vs-detail-main { min-width: 0; }
.vs-detail-type { color: var(--vs-accent-strong); font-size: .73rem; font-weight: 800; letter-spacing: .12em; }
.vs-detail-heading { display: flex; min-width: 0; margin: 5px 0 9px; align-items: baseline; gap: 10px; }
.vs-detail-main h1 { min-width: 0; margin: 0; font-family: var(--vs-display); font-size: clamp(1.8rem, 6vw, 4.6rem); letter-spacing: -.045em; line-height: 1.02; }
.vs-detail-summary { display: flex; margin: -1px 0 12px; flex-wrap: wrap; gap: 6px 14px; color: var(--vs-text-soft); font-size: .82rem; }
.vs-detail-year, .vs-detail-origin { display: block; }
.vs-detail-year { flex: 0 0 auto; color: var(--vs-text-soft); font-size: 1rem; font-weight: 600; }
.vs-detail-year::before { content: "（"; }
.vs-detail-year::after { content: "）"; }
.vs-detail-main > p { margin: 0 0 16px; color: var(--vs-text-soft); display: -webkit-box; overflow: hidden; font-size: .88rem; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.vs-detail-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.vs-detail-facts { grid-area: facts; min-width: 0; padding: 16px 0 0; border-top: 1px solid rgba(243, 234, 223, .14); }
.vs-detail-facts dl { display: grid; grid-template-columns: max-content minmax(0, 1fr); margin: 0; gap: 8px 12px; }
.vs-detail-facts dt { color: var(--vs-text-muted); font-size: .76rem; }
.vs-detail-facts dd { min-width: 0; margin: 0; overflow-wrap: anywhere; color: var(--vs-text-soft); font-size: .8rem; }
.vs-detail-facts dd a { color: var(--vs-text); }
.vs-detail-side { display: none; }
.vs-detail-page > .vs-section { padding: clamp(24px, 3vw, 46px) 0; }
.vs-shell.vs-detail-stack { width: min(calc(100% - (var(--vs-gutter) * 2)), var(--vs-shell)); }
.vs-detail-stack { display: grid; min-width: 0; max-width: 100%; gap: 18px; }
.vs-detail-stack > *, .vs-panel { width: 100%; min-width: 0; max-width: 100%; }
.vs-panel { padding: clamp(18px, 3vw, 30px); border-radius: var(--vs-radius-lg); }
.vs-panel h2 { margin: 0 0 16px; font-family: var(--vs-display); font-size: clamp(1.35rem, 4vw, 2rem); }
.vs-panel h3 { margin: 20px 0 10px; color: var(--vs-text-soft); font-size: .88rem; }
.vs-copy { width: 100%; min-width: 0; max-width: none; overflow-wrap: anywhere; color: var(--vs-text-soft); font-size: 1rem; line-height: 1.95; }
.vs-play-list { display: flex; flex-wrap: wrap; gap: 8px; }
.vs-play-list a { display: inline-flex; min-width: 56px; min-height: 42px; align-items: center; justify-content: center; padding: 0 13px; border: 1px solid var(--vs-line); border-radius: 9px; background: var(--vs-surface-2); color: var(--vs-text-soft); }
.vs-play-list a:hover, .vs-play-list a.active { border-color: var(--vs-accent); background: var(--vs-accent); color: var(--vs-accent-ink); }
.vs-detail-recommend-rail { display: grid; min-width: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(12px, 2vw, 18px); }
.vs-detail-recommend-rail > * { min-width: 0; }
.vs-player-stage { padding: 12px 0 0; background: var(--vs-bg-deep); }
.vs-play-page > .vs-section { padding-top: 20px; }
.vs-player-layout { display: grid; gap: 14px; }
.vs-player-box { position: relative; width: 100%; min-height: 0; aspect-ratio: 16 / 9; overflow: hidden; background: #070b10; }
.vs-player-box iframe, .vs-player-box video { width: 100% !important; height: 100% !important; min-height: 0 !important; }
.vs-player-sidebar { border: 1px solid var(--vs-line-soft); background: var(--vs-surface-1); }
.vs-player-sidebar__head { display: flex; min-height: 58px; align-items: center; justify-content: space-between; padding: 0 16px; border-bottom: 1px solid var(--vs-line-soft); }
.vs-player-sidebar__head h2 { margin: 0; font-family: var(--vs-display); font-size: 1.15rem; }
.vs-player-sidebar__body { display: none; max-height: min(56vw, 620px); padding: 14px; overflow-y: auto; }
.vs-player-sidebar.is-open .vs-player-sidebar__body { display: block; }
.vs-episode-toggle { display: inline-flex; min-height: 44px; align-items: center; gap: 6px; border: 0; background: transparent; color: var(--vs-accent-strong); cursor: pointer; }
.vs-now-playing { padding-block: 20px; border-top: 2px solid var(--vs-accent); }
.vs-now-playing h1 { margin: 0 0 10px; font-family: var(--vs-display); font-size: clamp(1.5rem, 4vw, 2.5rem); }
.vs-play-stack { display: grid; gap: 18px; }

/* 资讯编辑排版 */
.subsite-art-page, .subsite-art-detail-page { min-height: 65vh; }
.subsite-art-page .vs-art-layout, .subsite-art-detail-page .vs-art-layout { padding-top: 10px; }
.vs-art-page-head { padding: clamp(34px, 7vw, 86px) 0 24px; border-bottom: 1px solid var(--vs-line-soft); background: var(--vs-bg-deep); }
.vs-art-page-head h1 { margin: 0 0 20px; font-family: var(--vs-display); font-size: clamp(2.2rem, 7vw, 4.8rem); letter-spacing: -.05em; line-height: 1; }
.vs-art-page-head nav { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.vs-art-page-head nav::-webkit-scrollbar { display: none; }
.vs-art-page-head nav a { display: inline-flex; min-height: 40px; flex: 0 0 auto; align-items: center; padding: 0 12px; border-bottom: 1px solid transparent; color: var(--vs-text-muted); font-size: .82rem; }
.vs-art-page-head nav a.active, .vs-art-page-head nav a:hover { border-color: var(--vs-accent); color: var(--vs-accent-strong); }
.vs-art-layout { display: grid; padding-block: clamp(28px, 5vw, 72px); gap: 28px; }
.vs-art-main { min-width: 0; }
.subsite-art-list .art-list { display: grid; margin: 0; padding: 0; gap: 0; list-style: none; }
.vs-art-card a { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 14px; padding: 16px 0; border: 0; border-bottom: 1px solid var(--vs-line-soft); border-radius: 0; background: transparent; }
.vs-art-card:first-child a { padding-top: 0; }
.vs-art-card__pic { display: block; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 9px; background: var(--vs-surface-2); }
.vs-art-card__pic img { width: 100%; height: 100%; object-fit: cover; }
.vs-art-card__body { display: grid; min-width: 0; align-content: center; gap: 5px; }
.vs-art-card__body strong { font-family: var(--vs-display); font-size: 1rem; line-height: 1.4; white-space: normal; }
.vs-art-card__body em { color: var(--vs-accent-strong); font-size: .7rem; font-style: normal; }
.vs-art-card__body p { margin: 0; color: var(--vs-text-muted); display: -webkit-box; overflow: hidden; font-size: .78rem; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.vs-art-sidebar { display: grid; align-self: start; gap: 16px; }
.vs-art-side-card { padding: 18px; border-radius: var(--vs-radius-md); }
.vs-art-side-card h2 { margin: 0 0 12px; font-family: var(--vs-display); font-size: 1.25rem; }
.vs-art-side-list { margin: 0; padding: 0; list-style: none; }
.vs-art-side-list li a { display: grid; min-height: 45px; grid-template-columns: 24px minmax(0, 1fr) auto; align-items: center; gap: 8px; border-bottom: 1px solid var(--vs-line-soft); }
.vs-art-side-list li span { color: var(--vs-accent-strong); font-family: Georgia, serif; }
.vs-art-side-list li strong { overflow: hidden; font-size: .8rem; text-overflow: ellipsis; white-space: nowrap; }
.vs-art-side-list li em { color: var(--vs-text-muted); font-size: .68rem; font-style: normal; }
.subsite-art-detail { padding: 10px clamp(20px, 3vw, 40px) clamp(20px, 3vw, 40px); border-radius: var(--vs-radius-lg); }
.subsite-art-detail__header { max-width: 760px; margin-inline: auto; }
.subsite-art-detail__header h1 { margin: 18px 0 12px; font-family: var(--vs-display); font-size: clamp(2rem, 6vw, 4rem); letter-spacing: -.045em; line-height: 1.13; }
.subsite-art-nav { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.subsite-art-nav a { min-height: 38px; flex: 0 0 auto; padding: 7px 11px; color: var(--vs-text-muted); }
.subsite-art-nav a.active, .subsite-art-nav a:hover { border-color: var(--vs-accent); background: var(--vs-accent); color: var(--vs-accent-ink); font-weight: 800; }
.subsite-art-detail__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--vs-text-muted); font-size: .76rem; }
.subsite-art-detail__content { max-width: none; margin: 36px 0 0; color: var(--vs-text-soft); font-size: 1rem; line-height: 2; }
.subsite-art-detail__content img { height: auto; border-radius: 8px; }
.subsite-art-detail__content h2, .subsite-art-detail__content h3 { color: var(--vs-text); font-family: var(--vs-display); }
.vs-art-neighbor, .vs-art-related { max-width: 760px; margin-inline: auto; }

/* 页脚与认证长尾 */
.vs-footer { margin-top: clamp(28px, 6vw, 80px); border-top: 1px solid var(--vs-line); background: var(--vs-bg-deep); }
.vs-footer__grid { display: grid; padding-block: 42px; gap: 28px; }
.vs-footer__brand strong { display: block; margin: 0 0 10px; font-family: var(--vs-display); font-size: 1.8rem; }
.vs-footer__brand p { max-width: 46ch; margin: 0; color: var(--vs-text-muted); font-size: .84rem; }
.vs-footer__links, .vs-footer__meta { display: grid; align-content: start; gap: 8px; color: var(--vs-text-muted); font-size: .8rem; }
.vs-footer__links strong, .vs-footer__meta strong { margin-bottom: 5px; color: var(--vs-text-soft); font-size: .78rem; letter-spacing: .08em; }
.vs-footer__links a:hover, .vs-footer__meta a:hover { color: var(--vs-accent-strong); }
.vs-footer__bottom { border-top: 1px solid var(--vs-line-soft); }
.vs-footer__bottom .vs-shell { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 20px; color: var(--vs-text-muted); font-size: .7rem; }
.vs-auth-page { min-height: 70vh; padding: clamp(24px, 6vw, 72px) 0; }
.vs-auth-shell { overflow: hidden; border: 1px solid var(--vs-line); border-radius: var(--vs-radius-xl); background: var(--vs-surface-1); }
.vs-auth-stage { background: var(--vs-bg-deep); }
.vs-auth-stage__copy h1, .vs-auth-panel h1 { font-family: var(--vs-display); }
.vs-auth-field input { border-color: var(--vs-line); background: var(--vs-surface-2); color: var(--vs-text); }
.vs-auth-submit, .vs-auth-send { min-height: 46px; border-radius: 999px; background: var(--vs-accent); color: var(--vs-accent-ink); font-weight: 800; }

@media (min-width: 480px) {
    .vs-vod-grid, .vs-card-grid, .vs-channel-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .vs-home-journal__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vs-detail-hero__grid { grid-template-columns: 138px minmax(0, 1fr); }
    .vs-detail-recommend-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
    body { padding-bottom: 0; }
    .vs-mobile-dock { display: none; }
    .vs-filter__mobile-toggle { display: none; }
    .vs-filter__body { display: block; padding-top: 0; }
    .vs-header__primary-inner { min-height: 72px; grid-template-columns: auto minmax(260px, 560px) auto; }
    .vs-search--header { display: flex; width: 100%; justify-self: center; }
    .vs-icon-action--rank { display: grid; }
    .vs-hero__slides { min-height: 560px; }
    .vs-hero__content { padding: 44px 38px 78px; }
    .vs-hero__controls { right: 30px; bottom: 24px; left: 38px; }
    .vs-vod-grid, .vs-card-grid, .vs-channel-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .vs-trending__list { grid-template-columns: minmax(0, 1.5fr) minmax(280px, .5fr); grid-template-rows: repeat(6, minmax(58px, auto)); gap: 0 24px; }
    .vs-trending__item:first-child { grid-row: 1 / 7; display: block; min-height: 520px; padding: 0; overflow: hidden; border: 0; border-radius: var(--vs-radius-lg); }
    .vs-trending__item:first-child .vs-trending__pic { position: absolute; inset: 0; display: block; }
    .vs-trending__item:first-child::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 12, 18, .96), transparent 68%); content: ""; }
    .vs-trending__item:first-child .vs-trending__rank { position: absolute; top: 18px; left: 18px; z-index: 2; color: var(--vs-accent-strong); font-size: 2.2rem; }
    .vs-trending__item:first-child .vs-trending__copy { position: absolute; right: 24px; bottom: 26px; left: 24px; z-index: 2; }
    .vs-trending__item:first-child .vs-trending__copy strong { font-family: var(--vs-display); font-size: 2rem; }
    .vs-trending__item:first-child .vs-trending__score { position: absolute; right: 20px; bottom: 28px; z-index: 2; }
    .vs-trending__item:not(:first-child) { grid-column: 2; }
    .vs-detail-hero__grid { grid-template-areas: "poster body" "poster facts"; grid-template-columns: 220px minmax(0, 1fr); gap: 22px 34px; }
    .vs-detail-body { display: block; align-self: end; }
    .vs-detail-facts { grid-area: facts; padding-top: 18px; }
    .vs-detail-facts dl { grid-template-columns: max-content minmax(0, 1fr); gap: 10px 18px; }
    .vs-detail-main > p { font-size: 1rem; -webkit-line-clamp: 3; }
    .vs-detail-recommend-rail { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .vs-art-card a { grid-template-columns: 190px minmax(0, 1fr); gap: 22px; padding: 20px 0; }
    .vs-art-card__body strong { font-size: 1.3rem; }
    .vs-art-card__body p { font-size: .86rem; }
    .subsite-art-list .art-list > .vs-art-card:first-child a { grid-template-columns: 1fr; padding-bottom: 28px; }
    .subsite-art-list .art-list > .vs-art-card:first-child .vs-art-card__pic { aspect-ratio: 16 / 7; border-radius: var(--vs-radius-lg); }
    .subsite-art-list .art-list > .vs-art-card:first-child .vs-art-card__body strong { font-size: clamp(1.65rem, 3vw, 2.35rem); }
    .vs-footer__grid { grid-template-columns: minmax(0, 1.8fr) minmax(150px, .6fr) minmax(210px, .7fr); padding-block: 64px; }
}

@media (min-width: 1024px) {
    .vs-header__primary-inner { min-height: 76px; }
    .vs-menu-btn, .vs-nav__drawer-head, .vs-search--drawer, .vs-drawer-backdrop { display: none; }
    .vs-header__channels { height: 48px; border-top: 1px solid var(--vs-line-soft); }
    .vs-nav { position: static; display: flex; width: 100%; height: 100%; padding: 0; overflow: visible; flex-direction: row; align-items: center; gap: 1px; border: 0; background: transparent; box-shadow: none; transform: none; visibility: visible; }
    .vs-nav > a, .vs-nav__link { min-height: 47px; padding: 0 13px; border-radius: 0; font-size: .82rem; }
    .vs-nav > a.active, .vs-nav > a:hover, .vs-nav__item.is-active .vs-nav__link { background: transparent; box-shadow: inset 0 -2px var(--vs-accent); }
    .vs-nav__row { height: 48px; }
    .vs-nav__toggle { width: 28px; height: 44px; flex-basis: 28px; }
    .vs-nav__toggle svg { width: .9em; height: .9em; transform: rotate(90deg); }
    .vs-nav__item { position: relative; }
    .vs-nav__dropdown { position: absolute; top: calc(100% - 1px); left: 0; display: grid; width: 260px; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 10px; border: 1px solid var(--vs-line); border-radius: 0 0 12px 12px; background: var(--vs-surface-1); box-shadow: var(--vs-shadow-lg); opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .2s ease, transform .25s var(--vs-ease); }
    .vs-nav__item:hover .vs-nav__dropdown, .vs-nav__item:focus-within .vs-nav__dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .vs-nav__divider { width: 1px; height: 20px; margin: 0 8px; }
    .vs-hero__layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 16px; align-items: stretch; }
    .vs-hero__stage, .vs-hero__queue { min-height: 590px; }
    .vs-hero__slides { min-height: 588px; }
    .vs-hero__queue { display: flex; flex-direction: column; padding: 16px; }
    .vs-hero__queue-list { display: grid; overflow: visible; flex: 1; gap: 5px; }
    .vs-hero__queue-item { min-width: 0; min-height: 0; grid-template-columns: 28px 58px minmax(0, 1fr); }
    .vs-hero__queue-pic { height: 66px; }
    .vs-vod-grid, .vs-card-grid, .vs-channel-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .vs-home-channel__body { grid-template-columns: minmax(0, 1fr) 300px; }
    .vs-home-journal__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .vs-detail-facts dl { grid-template-columns: max-content minmax(0, 1fr) max-content minmax(0, 1fr); gap: 10px 20px; }
    .vs-detail-recommend-rail { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .vs-player-layout { grid-template-columns: minmax(0, 1fr) 340px; align-items: stretch; }
    .vs-player-sidebar { position: relative; min-height: 0; overflow: hidden; }
    .vs-player-sidebar__head { position: absolute; top: 0; right: 0; left: 0; min-height: 62px; }
    .vs-player-sidebar__body { position: absolute; top: 62px; right: 0; bottom: 0; left: 0; display: block; min-height: 0; max-height: none; overflow-y: auto; }
    .vs-episode-toggle { display: none; }
    .vs-art-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 44px; }
    .vs-art-sidebar { position: sticky; top: 148px; }
}

@media (min-width: 1280px) {
    .vs-brand__logo { max-width: 180px; }
    .vs-brand__copy strong { max-width: 190px; font-size: 1.12rem; }
    .vs-nav > a, .vs-nav__link { padding-inline: 17px; }
    .vs-hero__layout { grid-template-columns: minmax(0, 1fr) 360px; }
    .vs-vod-grid, .vs-card-grid, .vs-channel-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); }
    .vs-vod-grid--compact { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .vs-home-channel__body { grid-template-columns: minmax(0, 1fr) 320px; }
    .vs-player-layout { grid-template-columns: minmax(0, 1fr) 380px; }
    .vs-detail-hero__grid { grid-template-columns: 280px minmax(0, 1fr); column-gap: 46px; }
}

@media (max-width: 1023.98px) {
    .vs-header { overflow: visible; -webkit-backdrop-filter: none; backdrop-filter: none; }
    .vs-header__channels, .vs-header__channels-inner { height: 0; }
    .vs-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 92;
        display: flex;
        width: min(88vw, 380px);
        min-width: 0;
        max-height: none;
        margin: 0;
        padding: max(20px, env(safe-area-inset-top)) 18px max(28px, env(safe-area-inset-bottom));
        overflow-x: hidden;
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        border: 0;
        border-left: 1px solid var(--vs-line);
        border-radius: 0;
        background: var(--vs-bg-deep);
        box-shadow: -30px 0 80px rgba(3, 7, 11, .5);
        transform: translate3d(105%, 0, 0);
        visibility: hidden;
        pointer-events: none;
    }
    .vs-nav.is-open {
        display: flex;
        transform: translate3d(0, 0, 0);
        visibility: visible;
        pointer-events: auto;
    }
    .vs-drawer-backdrop {
        position: fixed;
        inset: 0;
        z-index: 79;
        width: 100vw;
        height: 100dvh;
        margin: 0;
        border-radius: 0;
    }
}

@media (max-width: 767.98px) {
    .vs-hero { padding-top: 12px; }
    .vs-hero__layout { gap: 0; }
    .vs-hero__stage { min-height: 0; border-radius: 16px; }
    .vs-hero__slides { height: clamp(290px, 78vw, 380px); min-height: 0; }
    .vs-hero__queue { display: none; }
    .vs-hero__content { padding: 22px 16px 64px; }
    .vs-hero h1 { max-width: 12ch; margin: 0 0 10px; font-size: clamp(2rem, 9vw, 2.7rem); line-height: 1; }
    .vs-hero__content > p { display: none; }
    .vs-meta { margin-bottom: 14px; gap: 5px; }
    .vs-meta span, .vs-meta a, .vs-meta strong { min-height: 26px; padding-inline: 8px; font-size: .72rem; }
    .vs-hero__actions { gap: 7px; }
    .vs-btn { min-height: 42px; padding-inline: 14px; }
    .vs-hero__controls { right: 14px; bottom: 12px; left: 16px; gap: 10px; }
    .vs-hero__arrows button { width: 40px; height: 40px; }
    .vs-channel-rail .vs-shell { min-height: 70px; }
    .vs-channel-rail__track { gap: 10px; padding-block: 9px; }
    .vs-channel-rail a { width: max-content; min-width: 0; min-height: 50px; flex: 0 0 auto; justify-content: flex-start; gap: 8px; padding-inline: 12px; white-space: nowrap; }
    .vs-detail-page > .vs-section { padding: 18px 0 28px; }
    .vs-detail-hero { padding: 20px 0 24px; }
    .vs-detail-hero__grid { gap: 16px 14px; }
    .vs-detail-body { align-self: start; }
    .vs-detail-main { display: grid; align-content: start; gap: 6px; }
    .vs-detail-type { width: max-content; min-height: 0; padding: 0; border: 0; border-radius: 0; background: transparent; line-height: 1.4; }
    .vs-detail-heading { display: contents; }
    .vs-detail-main h1 { margin: 0; font-size: clamp(1.65rem, 7vw, 2.15rem); line-height: 1.08; }
    .vs-detail-year { font-size: .95rem; line-height: 1.45; }
    .vs-detail-year::before, .vs-detail-year::after { content: none; }
    .vs-detail-summary { display: grid; margin: 0; gap: 3px; font-size: .92rem; line-height: 1.45; }
    .vs-detail-main > p { display: none; }
    .vs-detail-facts dl { grid-template-columns: minmax(68px, max-content) minmax(0, 1fr); gap: 8px 10px; }
    .vs-detail-stack { gap: 14px; }
    .vs-detail-stack .vs-panel { overflow: hidden; padding: 16px; border-radius: 14px; }
    .vs-detail-stack .vs-panel h2 { margin-bottom: 13px; font-size: 1.35rem; }
    .vs-source-panel h2 > span:last-child { min-width: 0; overflow-wrap: anywhere; }
    .vs-copy { font-size: .94rem; line-height: 1.8; }
}

@media (max-width: 420px) {
    .vs-hero__slides { height: 300px; }
    .vs-hero__content { padding-right: 12px; padding-left: 12px; }
    .vs-hero__actions .vs-btn--ghost { display: none; }
}

@media (hover: hover) and (pointer: fine) {
    .vs-vod-card:hover .vs-vod-card__pic img, .vs-home-journal__grid > a:hover img, .vs-trending__item:hover .vs-trending__pic img { transform: scale(1.045); }
    .vs-vod-card:hover h3, .vs-home-journal__grid > a:hover strong { color: var(--vs-accent-strong); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
