/* Videos page — prefix: v- */

#page-videos {
    --v-red: var(--red); --v-red-dark: var(--red-dark); --v-red-deep: #520003;
    --v-ink: var(--ink); --v-ink-2: #030813;
    --v-gm: #737373; --v-g-1: #5C5C5C; --v-g-2: #A8A8A8; --v-g-3: #DFDFDF; --v-g-4: #EDEDED;
    --v-cream: #FBF7F3; --v-white: #fff;
    --v-serif: var(--font-serif);
    --v-sans: var(--font-sans);
    color: var(--v-ink);
    font-family: var(--v-sans);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
#page-videos a { text-decoration: none; }
#page-videos a:not(.v-h-btn):not(.v-player-icon):not(.v-show-card):not(.v-cw):not(.v-un):not(.v-tr):not(.v-wl) { color: inherit; }
#page-videos img { display: block; max-width: 100%; }
#page-videos button { font-family: var(--v-sans); cursor: pointer; }

/* Shared wraps */
.v-hero-wrap,
.v-wrap { max-width: 1440px; margin: 0 auto; padding: 0 38px; }

.v-eyebrow {
    font-size: 11px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--v-red);
    display: inline-flex; align-items: center; gap: 10px;
}
.v-eyebrow::before { content: ""; display: block; width: 24px; height: 1px; background: var(--v-red); }

/* badge */
#page-videos .badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 4px 9px; border-radius: 999px;
}
#page-videos .badge--new { background: var(--v-red); color: #fff; }
#page-videos .badge--live { background: #fff; color: var(--v-red); box-shadow: 0 0 0 1px var(--v-red) inset; }
#page-videos .badge--live::before {
    content: ""; width: 6px; height: 6px;
    background: var(--v-red); border-radius: 50%;
    animation: vLivepulse 1.4s ease-in-out infinite;
}
@keyframes vLivepulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.8); } }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.v-hero {
    background: var(--v-ink);
    color: #fff;
    position: relative;
    overflow: hidden;
    border-bottom: 6px solid var(--v-red);
}
.v-hero-bgword {
    position: absolute;
    left: -40px; top: 30px;
    font-family: var(--v-serif);
    font-weight: 700;
    font-size: clamp(180px, 24vw, 360px);
    line-height: .85;
    color: rgba(255,255,255,.035);
    letter-spacing: -.04em;
    pointer-events: none;
    white-space: nowrap;
    font-style: italic;
}
.v-hero-in {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    padding: 48px 0 56px;
}
.v-player {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
    display: block;
}
.v-player-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    animation: vKenburns 18s ease-in-out infinite alternate;
    opacity: .95;
}
@keyframes vKenburns { 0% { transform: scale(1); } 100% { transform: scale(1.08) translate(-2%, -1%); } }
.v-player-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    background: #000;
    display: block;
    cursor: pointer;
}
.v-player::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7));
    pointer-events: none;
    transition: opacity .25s;
}
.v-player.is-playing::after { opacity: 0; }
.v-player.is-playing .v-player-top { opacity: 0; transition: opacity .25s; }
.v-player.is-playing:hover::after { opacity: 1; }
.v-player.is-playing:hover .v-player-top { opacity: 1; }
.v-player .v-player-top { transition: opacity .25s; }

/* loading spinner overlay */
.v-player-loading {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    display: none;
    z-index: 4;
}
.v-player-loading.show { display: block; }
.v-player-loading span {
    display: block;
    width: 40px; height: 40px;
    border: 3px solid rgba(255,255,255,.18);
    border-top-color: var(--v-red);
    border-radius: 50%;
    animation: vSpin .8s linear infinite;
}
@keyframes vSpin { to { transform: rotate(360deg); } }
.v-player-top {
    position: absolute; top: 18px; left: 18px; right: 18px;
    display: flex; justify-content: space-between;
    z-index: 2;
}
.v-player-tags { display: flex; gap: 8px; }
.v-player-play {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 84px; height: 84px;
    background: rgba(255,255,255,.16);
    border: 2px solid rgba(255,255,255,.7);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(10px);
    transition: transform .2s, background .2s;
    z-index: 2;
    text-decoration: none;
}
.v-player-play:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--v-red); border-color: var(--v-red); }
.v-player-play::before {
    content: ""; position: absolute; inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    animation: vHalo 2.4s ease-out infinite;
}
@keyframes vHalo { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }

/* cinema mode toggle */
.v-player-cinema {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--v-sans);
    font-size: 11px;
    color: rgba(255,255,255,.8);
    background: rgba(0,0,0,.4);
    padding: 6px 10px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.12);
    transition: background .15s, color .15s;
    cursor: pointer;
}
.v-player-cinema:hover { background: rgba(0,0,0,.65); color: #fff; }
.v-player-cinema svg { flex-shrink: 0; }
.v-player-quality {
    display: inline-flex; align-items: center;
    font-size: 10px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(0,0,0,.55);
    color: #fff;
    backdrop-filter: blur(6px);
}

/* bottom controls */
.v-player-bot {
    position: absolute;
    left: 24px; right: 24px; bottom: 18px;
    z-index: 2;
}
.v-player-bar {
    height: 4px;
    background: rgba(255,255,255,.18);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
    cursor: pointer;
}
.v-player-bar-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0%;
    background: var(--v-red);
    border-radius: 99px;
    transition: width .12s linear;
}
.v-player-bar-buf {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 18%;
    background: rgba(255,255,255,.28);
    border-radius: 99px;
}
.v-player-ctrls {
    display: flex; align-items: center;
    gap: 14px;
    font-size: 12px;
    color: rgba(255,255,255,.85);
    font-variant-numeric: tabular-nums;
}
.v-player-ctrls .v-play-mini {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .15s;
    backdrop-filter: blur(4px);
    border: none;
    cursor: pointer;
    padding: 0;
}
.v-player-ctrls .v-play-mini:hover { background: var(--v-red); }
.v-player-ctrls-spacer { flex: 1; }
.v-player-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    transition: color .15s, background .15s;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}
.v-player-icon:hover { color: #fff; background: rgba(255,255,255,.12); }

/* cinema mode — dim everything except hero */
body.v-cinema .util,
body.v-cinema header.mish-header,
body.v-cinema .v-shows-sec,
body.v-cinema .v-cw-sec,
body.v-cinema .v-fbar,
body.v-cinema .v-main,
body.v-cinema footer.mish-footer {
    filter: brightness(.35);
    transition: filter .3s;
    pointer-events: none;
}
body.v-cinema .v-hero {
    position: relative;
    z-index: 200;
}
body.v-cinema .v-player {
    box-shadow: 0 30px 100px -10px rgba(222,28,34,.4), 0 0 0 1px rgba(255,255,255,.1);
}

.v-hero-meta { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.v-hero-eye {
    font-size: 11px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: #fff;
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 4px;
    opacity: .85;
}
.v-hero-eye::before { content: ""; width: 32px; height: 1px; background: var(--v-red); }
.v-hero-h {
    font-family: var(--v-serif);
    font-weight: 600;
    font-size: clamp(36px, 4.2vw, 60px);
    line-height: 1.02;
    letter-spacing: -.02em;
    margin-bottom: 14px;
    color: #fff;
}
.v-hero-h em {
    font-style: italic; color: #fff;
    background: linear-gradient(180deg, #fff 0%, #fff 64%, var(--v-red) 64%, var(--v-red) 72%, #fff 72%, #fff 100%);
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.v-hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    max-width: 440px;
    margin-bottom: 14px;
}
.v-hero-by {
    display: flex; align-items: center; gap: 14px;
    font-size: 13px; color: rgba(255,255,255,.55);
    margin-bottom: 8px;
}
.v-hero-by-av {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #520003, #DE1C22);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--v-serif);
    font-weight: 600;
    color: #fff; font-size: 14px;
    flex-shrink: 0;
}
.v-hero-by-name { color: #fff; font-weight: 500; }
.v-hero-stats {
    display: flex; align-items: center; gap: 18px;
    font-size: 12px;
    color: rgba(255,255,255,.5);
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.v-hero-stats strong { color: rgba(255,255,255,.85); font-weight: 500; }
.v-hero-stats .v-stat-dot { width: 3px; height: 3px; background: rgba(255,255,255,.3); border-radius: 50%; }
.v-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.v-h-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500;
    padding: 11px 16px;
    border-radius: 8px;
    transition: background .15s, border-color .15s, transform .15s;
    border: none;
}
.v-h-btn--p { background: #fff; color: var(--v-ink); }
.v-h-btn--p:hover { background: var(--v-red); color: #fff; transform: translateY(-1px); }
.v-h-btn--g { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.16); }
.v-h-btn--g:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); }
.v-h-btn--g.is-saved { background: rgba(222,28,34,.16); border-color: var(--v-red); color: #fff; }
.v-h-btn--g.is-saved svg { fill: var(--v-red); stroke: var(--v-red); }

/* ── SHOWS SECTION ────────────────────────────────────────────────────────── */
.v-shows-sec { padding: 64px 0 48px; background: var(--v-cream); }
.v-sec-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; margin-bottom: 28px;
    flex-wrap: wrap;
}
.v-sec-h {
    font-family: var(--v-serif);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.015em;
    margin-top: 12px;
}
.v-sec-sub { font-size: 14px; color: var(--v-g-1); max-width: 420px; margin-top: 8px; }

.v-shows-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.v-show-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1.05/1;
    background: #000;
    transition: transform .25s;
    border: 0;
    padding: 0;
    text-align: left;
    color: #fff;
}
.v-show-card:hover { transform: translateY(-3px); }
.v-show-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .55;
    transition: opacity .3s, transform .5s;
}
.v-show-card:hover img { opacity: .8; transform: scale(1.06); }
.v-show-card::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.85));
    pointer-events: none;
}
.v-show-card-body {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 16px; z-index: 2; color: #fff;
}
.v-show-card-stripe {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--v-red);
    z-index: 3;
}
.v-show-card-name {
    font-family: var(--v-serif);
    font-size: 18px; font-weight: 600;
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -.01em;
}
.v-show-card-stats {
    font-size: 11px;
    color: rgba(255,255,255,.6);
    font-weight: 500;
}
.v-show-card.is-active {
    outline: 3px solid var(--v-red);
    outline-offset: -3px;
    box-shadow: 0 12px 30px -10px rgba(222,28,34,.45);
    transform: translateY(-3px);
}
.v-show-card.is-active .v-show-card-stripe { width: 6px; background: var(--v-red); }
.v-show-card.is-active::before {
    content: "Active";
    position: absolute;
    top: 10px; right: 10px;
    background: var(--v-red); color: #fff;
    font-size: 10px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 4px 8px; border-radius: 999px;
    z-index: 2;
}

/* ── CONTINUE WATCHING ────────────────────────────────────────────────────── */
.v-cw-sec { padding: 48px 0; background: var(--v-cream); border-top: 1px solid var(--v-g-3); }
.v-cw-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; margin-bottom: 20px;
}
.v-cw-greet { font-size: 13px; color: var(--v-gm); display: flex; align-items: center; gap: 8px; }
.v-cw-greet strong { color: var(--v-ink); font-weight: 600; }
.v-cw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.v-cw {
    display: flex; gap: 12px; align-items: center;
    background: #fff;
    border: 1px solid var(--v-g-3);
    border-radius: 10px;
    padding: 10px;
    transition: box-shadow .15s, border-color .15s, transform .15s;
    position: relative;
}
.v-cw:hover { box-shadow: 0 6px 18px -8px rgba(0,0,0,.12); border-color: var(--v-g-2); transform: translateY(-1px); }
.v-cw-th {
    position: relative; flex-shrink: 0;
    width: 88px; height: 54px;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
}
.v-cw-th img { width: 100%; height: 100%; object-fit: cover; }
.v-cw-prog {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,.25);
}
.v-cw-prog-bar { height: 100%; background: var(--v-red); }
.v-cw-resume {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .15s;
    color: #fff;
}
.v-cw:hover .v-cw-resume { opacity: 1; }
.v-cw-body { min-width: 0; flex: 1; }
.v-cw-show {
    font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .09em;
    color: var(--v-red); margin-bottom: 2px;
}
.v-cw-ttl {
    font-size: 13px; font-weight: 600;
    line-height: 1.3;
    color: var(--v-ink);
    margin-bottom: 4px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.v-cw-time { font-size: 11px; color: var(--v-gm); }

/* ── FILTER BAR ───────────────────────────────────────────────────────────── */
.v-fbar {
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid var(--v-g-3);
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: saturate(140%) blur(8px);
}
.v-fbar-in {
    display: flex; align-items: center; gap: 16px;
    height: 60px;
}
.v-ftabs {
    display: flex; gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
    align-items: center;
}
.v-ftabs::-webkit-scrollbar { display: none; }
.v-ftab {
    font-family: var(--v-sans);
    font-size: 13px; font-weight: 500;
    color: var(--v-g-1);
    padding: 9px 14px;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: color .15s, background .15s;
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    border: none;
}
.v-ftab:hover { color: var(--v-ink); background: var(--v-cream); }
.v-ftab.active { color: #fff; background: var(--v-ink); }
.v-ftab .count { font-size: 11px; opacity: .5; }
.v-ftab.active .count { opacity: .6; }

.v-fsearch { position: relative; flex-shrink: 0; }
.v-fsbox {
    display: flex; align-items: center; gap: 8px;
    background: var(--v-cream);
    border: 1.5px solid var(--v-g-3);
    border-radius: 999px;
    padding: 8px 14px;
    transition: border-color .15s, background .15s;
    cursor: text;
    min-width: 220px;
}
.v-fsbox:focus-within { border-color: var(--v-ink); background: #fff; }
.v-fsbox svg { flex-shrink: 0; color: var(--v-gm); }
.v-fsinp {
    flex: 1; border: none; outline: none;
    background: transparent;
    color: var(--v-ink);
    font-size: 13px;
    font-family: var(--v-sans);
    min-width: 0;
}
.v-fsinp::placeholder { color: var(--v-gm); }
.v-fsdd {
    position: absolute;
    top: calc(100% + 8px); right: 0;
    background: #fff;
    border: 1px solid var(--v-g-3);
    border-radius: 10px;
    min-width: 280px;
    max-height: 360px;
    overflow-y: auto;
    box-shadow: 0 16px 40px -12px rgba(0,0,0,.18);
    display: none;
    z-index: 200;
}
.v-fsdd.open { display: block; }
.v-fsdd-h {
    font-size: 10px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--v-gm);
    padding: 12px 14px 8px;
}
.v-fsdd-empty {
    padding: 14px 14px 16px;
    font-size: 12px; color: var(--v-gm);
    font-style: italic;
}
.v-fsdd-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background .12s;
}
.v-fsdd-item:hover { background: var(--v-cream); }
.v-fsdd-av {
    width: 34px; height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--v-cream), var(--v-g-4));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--v-serif); font-weight: 600;
    color: var(--v-red); font-size: 14px;
}
.v-fsdd-name { font-size: 13px; font-weight: 600; color: var(--v-ink); line-height: 1.2; }
.v-fchip {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 500;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(222,28,34,.1);
    color: var(--v-red);
    margin-left: 8px;
}
.v-fchip-x {
    cursor: pointer; width: 14px; height: 14px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(222,28,34,.2);
    font-size: 11px; line-height: 1;
}
.v-fchip-x:hover { background: var(--v-red); color: #fff; }
.v-fviews {
    display: inline-flex; gap: 0;
    border: 1px solid var(--v-g-3);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.v-fview {
    padding: 9px 11px;
    color: var(--v-gm);
    transition: color .15s, background .15s;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    border: none;
}
.v-fview.active { background: var(--v-ink); color: #fff; }
.v-fview + .v-fview { border-left: 1px solid var(--v-g-3); }

/* ── MAIN + SIDEBAR ───────────────────────────────────────────────────────── */
.v-main { padding: 48px 0 80px; }
.v-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: flex-start;
}

.v-grid-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
}
.v-grid-h {
    font-family: var(--v-serif);
    font-size: 24px; font-weight: 600;
    letter-spacing: -.01em;
}
.v-grid-count { font-size: 12px; color: var(--v-gm); margin-top: 4px; }

/* Sort dropdown */
.v-grid-sort-wrap { position: relative; flex-shrink: 0; }
.v-grid-sort {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff;
    border: 1.5px solid var(--v-g-3);
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 13px; font-weight: 500;
    color: var(--v-ink);
    cursor: pointer;
    transition: border-color .15s, background .15s;
    white-space: nowrap;
}
.v-grid-sort:hover { border-color: var(--v-ink); }
.v-grid-sort svg { transition: transform .15s; }
.v-grid-sort-wrap.open .v-grid-sort svg { transform: rotate(180deg); }
.v-grid-sort-menu {
    position: absolute; right: 0; top: calc(100% + 6px);
    min-width: 180px;
    background: #fff;
    border: 1px solid var(--v-g-3);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    padding: 6px;
    display: none;
    z-index: 30;
}
.v-grid-sort-wrap.open .v-grid-sort-menu { display: block; }
.v-sort-opt {
    display: block; width: 100%; text-align: left;
    background: transparent; border: none;
    padding: 9px 12px;
    font-size: 13px; color: var(--v-ink);
    border-radius: 8px;
    cursor: pointer;
}
.v-sort-opt:hover { background: var(--v-cream); }
.v-sort-opt.is-active { background: var(--v-ink); color: #fff; }

/* Mosaic */
.v-vgrid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px 18px;
    margin-bottom: 32px;
}
.vcard {
    grid-column: span 2;
    display: flex; flex-direction: column;
    position: relative;
    text-decoration: none;
}
.vcard--feat { grid-column: span 4; grid-row: span 2; }
.vcard--wide { grid-column: span 3; }
.vcard:hover .vthumb-img { transform: scale(1.045); }
.vcard:hover .vplay { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.vcard:hover .vtitle { color: var(--v-red); }
.vcard:hover .vactions { opacity: 1; transform: translateY(0); }

.vthumb {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    background: var(--v-g-4);
    margin-bottom: 12px;
    box-shadow: 0 4px 16px -8px rgba(0,0,0,.18);
}
.vcard--feat .vthumb { aspect-ratio: 16/10; }
.vthumb-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    opacity: .92;
}
.vcard:hover .vthumb-img { opacity: 1; }
.vthumb::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.5));
    pointer-events: none;
    opacity: .7;
    transition: opacity .2s;
}
.vcard:hover .vthumb::after { opacity: .95; }

.vstripe {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--v-red);
    z-index: 2;
}
.vplay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(.7);
    width: 52px; height: 52px;
    background: rgba(255,255,255,.95);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: all .25s;
    z-index: 3;
    color: var(--v-ink);
}
.vcard--feat .vplay { width: 72px; height: 72px; }
.vdur {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,.8);
    color: #fff;
    font-size: 10px; font-weight: 600;
    padding: 3px 7px;
    border-radius: 4px;
    z-index: 2;
}
.vbadges {
    position: absolute; top: 10px; left: 10px;
    display: flex; gap: 6px;
    z-index: 2;
}
.vactions {
    position: absolute; top: 10px; right: 10px;
    display: flex; gap: 6px;
    z-index: 3;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .2s, transform .2s;
}
.vact {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s, color .15s;
    border: 1px solid rgba(255,255,255,.15);
}
.vact:hover { background: #fff; color: var(--v-ink); }
.vact.is-saved { background: var(--v-red); color: #fff; border-color: var(--v-red); }
.vact.is-saved svg { fill: #fff; }

.vshow {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--v-red);
    margin-bottom: 5px;
}
.vtitle {
    font-family: var(--v-serif);
    font-size: 16px; font-weight: 600;
    line-height: 1.25;
    color: var(--v-ink);
    margin-bottom: 5px;
    transition: color .15s;
    letter-spacing: -.005em;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.vcard--feat .vtitle { font-size: 26px; line-height: 1.15; -webkit-line-clamp: 3; }
.vcard--feat .vdesc {
    font-size: 14px; color: var(--v-g-1);
    line-height: 1.55;
    margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.vmeta {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; color: var(--v-gm);
}
.vmeta .vmeta-dot { width: 2px; height: 2px; background: var(--v-g-2); border-radius: 50%; flex-shrink: 0; }
.vviews { font-weight: 600; color: var(--v-g-1); }

/* list view */
.v-vgrid--list { display: flex; flex-direction: column; gap: 14px; }
.v-vgrid--list .vcard {
    grid-column: auto;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 18px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid var(--v-g-3);
    border-radius: 10px;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.v-vgrid--list .vcard:hover { border-color: var(--v-g-2); box-shadow: 0 6px 18px -10px rgba(0,0,0,.15); }
.v-vgrid--list .vthumb { margin-bottom: 0; }
.v-vgrid--list .vcard--feat .vthumb { aspect-ratio: 16/9; }
.v-vgrid--list .vcard--feat .vtitle { font-size: 18px; -webkit-line-clamp: 2; }
.v-vgrid--list .vcard--feat .vdesc { display: none; }
.v-vgrid--list .vcard--feat,
.v-vgrid--list .vcard--wide { grid-row: auto; }

.v-no-results {
    text-align: center;
    padding: 60px 20px;
    display: none;
    border: 1px dashed var(--v-g-3);
    border-radius: 12px;
    color: var(--v-gm);
}
.v-no-results-h {
    font-family: var(--v-serif);
    font-size: 22px;
    color: var(--v-ink);
    font-weight: 600;
    margin-bottom: 6px;
}
.v-no-results.show { display: block; }
.v-loading { display: none; text-align: center; padding: 24px; font-size: 13px; color: var(--v-gm); }

.v-lm-row { display: flex; justify-content: center; margin-top: 8px; }
.v-lm-btn {
    border: 1px solid var(--v-g-3);
    background: #fff;
    color: var(--v-ink);
    font-family: var(--v-sans);
    font-size: 13px; font-weight: 500;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    display: inline-flex; align-items: center; gap: 8px;
}
.v-lm-btn:hover { border-color: var(--v-ink); background: var(--v-cream); }

/* ── SIDEBAR ──────────────────────────────────────────────────────────────── */
.v-sidebar {
    display: flex; flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 80px;
}
.v-sb { border-top: 2px solid var(--v-ink); padding-top: 18px; }
.v-sb-h {
    font-size: 11px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--v-ink);
    margin-bottom: 18px;
    display: flex; align-items: center; justify-content: space-between;
}
.v-sb-h-r { font-size: 10px; color: var(--v-gm); font-weight: 500; letter-spacing: .04em; text-transform: none; }

/* upnext (Editor's playlist) */
.v-upnext {
    background: var(--v-ink);
    border-radius: 12px;
    color: #fff;
    padding: 0;
    overflow: hidden;
    border-top: none;
}
.v-upnext-head {
    padding: 18px 18px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: space-between;
}
.v-upnext-h {
    font-size: 11px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: #fff;
}
.v-upnext-meta { font-size: 11px; color: rgba(255,255,255,.45); }
.v-upnext-list {
    display: flex; flex-direction: column;
    max-height: 380px;
    overflow-y: auto;
}
.v-un {
    display: grid;
    grid-template-columns: 18px 56px 1fr;
    gap: 12px;
    padding: 12px 18px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: background .15s;
    color: inherit;
    text-decoration: none;
}
.v-un:hover { background: rgba(255,255,255,.04); }
.v-un-num {
    font-family: var(--v-serif);
    font-style: italic;
    font-size: 13px;
    color: rgba(255,255,255,.4);
}
.v-un-th {
    width: 56px; height: 36px;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
}
.v-un-th img { width: 100%; height: 100%; object-fit: cover; }
.v-un-body { min-width: 0; }
.v-un-show {
    font-size: 9px; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--v-red);
    margin-bottom: 2px;
}
.v-un-ttl {
    font-size: 12px; font-weight: 500;
    line-height: 1.3;
    color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-bottom: 2px;
}
.v-un-dur { font-size: 10px; color: rgba(255,255,255,.4); }

/* Trending */
.v-trend { display: flex; flex-direction: column; }
.v-tr {
    display: flex; gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--v-g-3);
    text-decoration: none;
}
.v-tr:first-child { border-top: 1px solid var(--v-g-3); }
.v-tr:hover .v-tr-ttl { color: var(--v-red); }
.v-tr-num {
    font-family: var(--v-serif);
    font-style: italic;
    font-size: 28px;
    font-weight: 500;
    color: var(--v-ink);
    line-height: 1;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}
.v-tr:first-child .v-tr-num { color: var(--v-red); font-weight: 700; }
.v-tr-body { flex: 1; min-width: 0; }
.v-tr-show {
    font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .09em;
    color: var(--v-red);
    margin-bottom: 3px;
}
.v-tr-ttl {
    font-size: 13px; font-weight: 600;
    line-height: 1.3;
    color: var(--v-ink);
    margin-bottom: 4px;
    transition: color .15s;
}
.v-tr-views { font-size: 11px; color: var(--v-gm); }
.v-tr-foot { display: flex; align-items: center; gap: 10px; }
.v-tr-delta {
    display: inline-flex; align-items: center; gap: 3px;
    font-size: 11px; font-weight: 700;
    color: #16a34a;
}
.v-tr-delta svg { flex-shrink: 0; }

/* Watch later list */
.v-wl {
    display: flex; gap: 10px;
    padding: 10px;
    align-items: center;
    border: 1px solid var(--v-g-3);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: border-color .15s;
    text-decoration: none;
}
.v-wl:hover { border-color: var(--v-ink); }
.v-wl-th {
    width: 64px; height: 40px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: #000;
}
.v-wl-th img { width: 100%; height: 100%; object-fit: cover; }
.v-wl-body { flex: 1; min-width: 0; }
.v-wl-show {
    font-size: 9px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .09em;
    color: var(--v-red);
    margin-bottom: 2px;
}
.v-wl-ttl {
    font-size: 12px; font-weight: 600;
    line-height: 1.3;
    color: var(--v-ink);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.v-wl-x {
    color: var(--v-gm);
    font-size: 16px; line-height: 1;
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background .12s, color .12s;
    background: transparent;
    border: none;
    cursor: pointer;
}
.v-wl-x:hover { background: var(--v-cream); color: var(--v-ink); }

/* Newsletter */
.v-sb-news {
    background: var(--v-ink);
    color: #fff;
    border-radius: 12px;
    padding: 22px;
    border: none;
    padding-top: 22px;
    position: relative;
    overflow: hidden;
    border-top: none;
}
.v-sb-news::before {
    content: ""; position: absolute;
    right: -30px; top: -30px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(222,28,34,.4), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.v-sb-news h4 {
    font-family: var(--v-serif);
    font-size: 20px; font-weight: 600;
    margin-bottom: 6px;
    position: relative;
    color: #fff;
}
.v-sb-news p {
    font-size: 12px;
    color: rgba(255,255,255,.6);
    margin-bottom: 14px;
    line-height: 1.55;
    position: relative;
}
.v-sb-news-form {
    position: relative;
    display: flex; flex-direction: column;
    gap: 8px;
}
.v-sb-email {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    font-family: var(--v-sans);
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 6px;
    outline: none;
    transition: border-color .15s, background .15s;
}
.v-sb-email::placeholder { color: rgba(255,255,255,.4); }
.v-sb-email:focus { border-color: var(--v-red); background: rgba(255,255,255,.12); }
.v-sb-go {
    background: var(--v-red); color: #fff;
    font-size: 12px; font-weight: 600;
    letter-spacing: .04em;
    padding: 10px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background .15s;
}
.v-sb-go:hover { background: var(--v-red-dark); }
