@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,700&display=swap");

:root {
    --black: #000;
    --white: #fff;
    --red: #ff0a2f;
    --red-hi: #ff3d5c;

    --w96: rgba(255, 255, 255, 0.96);
    --w70: rgba(255, 255, 255, 0.70);
    --w45: rgba(255, 255, 255, 0.45);
    --w28: rgba(255, 255, 255, 0.28);
    --w14: rgba(255, 255, 255, 0.14);
    --w08: rgba(255, 255, 255, 0.08);
    --w04: rgba(255, 255, 255, 0.04);

    --r-veil: rgba(255, 10, 47, 0.14);
    --r-line: rgba(255, 10, 47, 0.55);
    --r-halo: 0 0 0 1px rgba(255, 10, 47, 0.5), 0 12px 40px rgba(255, 10, 47, 0.16);

    --pad: 20px;
    --gap: 16px;
    --rail: 240px;
    --rail-min: 76px;
    --top: 60px;
    --tab: 58px;
    --safe-b: env(safe-area-inset-bottom, 0px);

    --r-s: 8px;
    --r-m: 12px;
    --r-l: 18px;
    --r-pill: 999px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --out: cubic-bezier(0.16, 1, 0.3, 1);
    --spring: cubic-bezier(0.34, 1.3, 0.5, 1);

    --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    --fw-light: 400;
    --fw: 500;
    --fw-med: 600;
    --fw-bold: 700;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--black); -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    font-size: 15px;
    font-weight: var(--fw-light);
    line-height: 1.55;
    letter-spacing: 0.018em;
    color: var(--white);
    background: var(--black);
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, video, canvas, svg { display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: var(--white); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--w14); border-radius: 10px; border: 3px solid var(--black); }
::-webkit-scrollbar-thumb:hover { background: var(--w28); }

.hide { display: none !important; }
.nowrap { white-space: nowrap; }

.shell { display: grid; grid-template-columns: 1fr; }

.main {
    min-width: 0;
    padding-top: var(--top);
    padding-bottom: calc(var(--tab) + var(--safe-b) + 24px);
}

.top {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    height: var(--top);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 var(--pad);
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.top.stuck { border-bottom-color: var(--w08); background: rgba(0, 0, 0, 0.9); }

.mark {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mark-logo {
    display: block;
    height: 28px;
    width: auto;
    flex-shrink: 0;
}

@media (min-width: 1080px) {
    .mark-logo { height: 30px; }
}

.top-spacer { flex: 1; }

.find {
    position: relative;
    flex: 1;
    max-width: 520px;
    display: none;
}

.find-box {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid var(--w08);
    border-radius: var(--r-pill);
    background: var(--w04);
    color: var(--w45);
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.find-box:focus-within { border-color: var(--r-line); background: var(--black); color: var(--white); }
.find-box svg { width: 17px; height: 17px; flex-shrink: 0; }

.find-box input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: none;
    font-size: 14.5px;
    color: var(--white);
}

.find-box input::placeholder { color: var(--w45); }
.find-box input::-webkit-search-cancel-button { -webkit-appearance: none; }

.drop {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 80;
    padding: 6px;
    border: 1px solid var(--w08);
    border-radius: var(--r-m);
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.9);
    max-height: 60vh;
    overflow-y: auto;
}

.drop[hidden] { display: none; }

.drop button {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: var(--r-s);
    background: none;
    font-size: 14px;
    color: var(--w70);
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.drop button:hover { background: var(--w08); color: var(--white); }
.drop svg { width: 15px; height: 15px; opacity: 0.5; flex-shrink: 0; }

.rail { display: none; }

.rail-inner {
    position: fixed;
    top: var(--top);
    bottom: 0;
    left: 0;
    width: var(--rail);
    padding: 18px 12px;
    overflow-y: auto;
    border-right: 1px solid var(--w08);
}

.rail-group { margin-bottom: 22px; }

.rail-title {
    padding: 0 12px 8px;
    font-size: 10.5px;
    font-weight: var(--fw-med);
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--w28);
}

.rail-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 12px;
    border-radius: var(--r-s);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--w70);
    transition: color 0.18s var(--ease), background 0.18s var(--ease);
}

.rail-link svg { width: 20px; height: 20px; flex-shrink: 0; stroke-width: 1.7; }
.rail-link:hover { color: var(--white); background: var(--w04); }
.rail-link.on { color: var(--white); background: var(--w08); font-weight: var(--fw-med); }

.rail-link.on::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 20px;
    margin-top: -10px;
    border-radius: 0 3px 3px 0;
    background: var(--red);
    box-shadow: 0 0 10px var(--red);
}

.rail-link .count { margin-left: auto; font-size: 12px; color: var(--w28); font-variant-numeric: tabular-nums; }
.rail-sep { height: 1px; margin: 16px 12px; background: var(--w08); }

.rail-chan {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px 12px;
    border-radius: var(--r-s);
    font-size: 14px;
    color: var(--w70);
    transition: background 0.18s, color 0.18s;
}

.rail-chan:hover { background: var(--w04); color: var(--white); }
.rail-chan .av { width: 26px; height: 26px; font-size: 10px; }
.rail-chan span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.tabs {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 60;
    display: flex;
    height: calc(var(--tab) + var(--safe-b));
    padding-bottom: var(--safe-b);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--w08);
}

.tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 9.5px;
    font-weight: var(--fw-med);
    color: var(--w45);
    transition: color 0.2s var(--ease);
    -webkit-tap-highlight-color: transparent;
}

.tab svg { width: 21px; height: 21px; stroke-width: 1.7; transition: transform 0.4s var(--spring); }
.tab.on { color: var(--white); }
.tab.on svg { stroke: var(--red); filter: drop-shadow(0 0 7px rgba(255, 10, 47, 0.7)); }
.tab:active svg { transform: scale(0.85); }

.tab-post svg { stroke: var(--black); }
.tab-post .bubble {
    display: grid;
    place-items: center;
    width: 34px;
    height: 26px;
    border-radius: var(--r-s);
    background: var(--red);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: var(--r-s);
    font-size: 14px;
    font-weight: var(--fw-med);
    color: var(--white);
    background: var(--w08);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.18s var(--ease), transform 0.3s var(--spring),
        border-color 0.18s, box-shadow 0.3s var(--ease), opacity 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.btn svg { width: 17px; height: 17px; stroke-width: 2; flex-shrink: 0; }
.btn:hover { background: var(--w14); }
.btn:active { transform: scale(0.96); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.btn-red { background: var(--red); }
.btn-red:hover { background: var(--red-hi); box-shadow: 0 8px 30px rgba(255, 10, 47, 0.32); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--w70); }
.btn-line { background: transparent; border-color: var(--w14); }
.btn-line:hover { background: var(--w04); border-color: var(--w28); }
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: var(--w08); }
.btn-danger { background: var(--r-veil); color: var(--red-hi); }
.btn-danger:hover { background: rgba(255, 10, 47, 0.24); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 14px 26px; font-size: 15.5px; }
.btn-block { width: 100%; }
.btn-pill { border-radius: var(--r-pill); }

.ico {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: var(--r-s);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.18s, transform 0.3s var(--spring), color 0.18s;
}

.ico svg { width: 19px; height: 19px; stroke-width: 1.8; }
.ico:hover { background: var(--w08); }
.ico:active { transform: scale(0.9); }
.ico.on { color: var(--red); }

.av {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--w08);
    font-size: 13px;
    font-weight: var(--fw-med);
    letter-spacing: 0;
    overflow: hidden;
    user-select: none;
}

.av img { width: 100%; height: 100%; object-fit: cover; }
.av-lg { width: 72px; height: 72px; font-size: 26px; }
.av-xl { width: 96px; height: 96px; font-size: 34px; }
.av-ring { box-shadow: 0 0 0 2px var(--black), 0 0 0 4px var(--red); }

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: var(--r-s);
    background: var(--w08);
    font-size: 11.5px;
    font-weight: var(--fw-med);
    color: var(--w70);
    font-variant-numeric: tabular-nums;
}

.chip-red { background: var(--red); color: var(--white); }
.chip-line { background: transparent; border: 1px solid var(--w14); }

.dot { width: 3px; height: 3px; border-radius: 50%; background: var(--w28); flex-shrink: 0; }

.pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 var(--pad) 20px;
}

.pills::-webkit-scrollbar { display: none; }

.pill {
    flex-shrink: 0;
    padding: 8px 16px;
    border: 1px solid var(--w08);
    border-radius: var(--r-pill);
    background: var(--w04);
    font-size: 13.5px;
    font-weight: var(--fw-med);
    color: var(--w70);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.3s var(--spring);
}

.pill:hover { color: var(--white); background: var(--w08); }
.pill:active { transform: scale(0.94); }
.pill.on { background: var(--white); color: var(--black); border-color: transparent; }

.field { display: block; margin-bottom: 18px; }

.field > .lab {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 12.5px;
    font-weight: var(--fw-med);
    color: var(--w45);
    margin-bottom: 8px;
}

.field > .lab em { font-style: normal; margin-left: auto; font-size: 11.5px; color: var(--w28); }

.inp {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--w08);
    border-radius: var(--r-s);
    background: var(--w04);
    font-size: 15px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

textarea.inp { resize: vertical; min-height: 100px; line-height: 1.5; }
.inp::placeholder { color: var(--w28); }
.inp:focus { border-color: var(--r-line); background: var(--black); }
.inp:disabled { opacity: 0.5; }

select.inp {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='.45' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 15px;
    cursor: pointer;
}

select.inp option { background: #0a0a0a; color: var(--white); }

.hint { font-size: 12.5px; color: var(--w45); margin-top: 7px; line-height: 1.45; }
.hint-red { color: var(--red-hi); }

.sw {
    position: relative;
    width: 46px;
    height: 27px;
    flex-shrink: 0;
    border: none;
    border-radius: var(--r-pill);
    background: var(--w14);
    cursor: pointer;
    transition: background 0.25s var(--ease);
}

.sw::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--white);
    transition: transform 0.35s var(--spring);
}

.sw.on { background: var(--red); }
.sw.on::after { transform: translateX(19px); }

.row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--w08);
}

.row:last-child { border-bottom: none; }
.row-txt { flex: 1; min-width: 0; }
.row-txt strong { display: block; font-size: 14px; font-weight: var(--fw-med); }
.row-txt span { font-size: 12.5px; color: var(--w45); }

.card-box {
    padding: 22px;
    border: 1px solid var(--w08);
    border-radius: var(--r-l);
    background: var(--w04);
}

.card-box > h3 {
    font-size: 11px;
    font-weight: var(--fw-med);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--w28);
    margin-bottom: 18px;
}

.head { padding: 36px var(--pad) 26px; }

.head h1 {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700 !important;
    font-style: italic !important;
    letter-spacing: -0.02em;
    line-height: 1.12;
}

.head p {
    font-size: 14.5px;
    font-weight: 400;
    color: var(--w45);
    margin-top: 12px;
    max-width: 52ch;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-size: 10px;
    font-weight: var(--fw-med);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.kicker::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--red);
}

.sec { margin-bottom: 42px; }
.sec[hidden] { display: none; }

.sec-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 var(--pad) 16px;
}

.sec-head h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: var(--fw-med);
    letter-spacing: 0.02em;
}

.sec-head .more {
    margin-left: auto;
    font-size: 12px;
    font-weight: var(--fw-med);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--w45);
    transition: color 0.18s;
}
.sec-head .more:hover { color: var(--red); }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 30px var(--gap);
    padding: 0 var(--pad);
}

.grid-tight { grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); gap: 24px 12px; }

.strip {
    display: flex;
    gap: var(--gap);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding: 0 var(--pad) 6px;
    scroll-padding-left: var(--pad);
}

.strip::-webkit-scrollbar { display: none; }
.strip > .tile { flex: 0 0 clamp(230px, 62vw, 300px); scroll-snap-align: start; }

.tile { position: relative; min-width: 0; }

.tile-media {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 160px;
    border-radius: var(--r-m);
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(135deg, rgba(255, 10, 47, 0.12), transparent 42%),
        linear-gradient(180deg, #141414, #050505);
    transition: transform 0.45s var(--out);
}

.tile-media.is-empty::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 10, 47, 0.18), transparent 45%),
        linear-gradient(135deg, #1a1a1a, #080808);
}

.tile-media.is-empty img { opacity: 0; }

.tile-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px var(--w08);
    transition: box-shadow 0.3s var(--ease);
}

.tile-media img, .tile-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tile-media video { opacity: 0; transition: opacity 0.35s var(--ease); }
.tile.live .tile-media video { opacity: 1; }
.tile.live .tile-media img { opacity: 0; }
.tile.is-scrubbing .tile-media img { opacity: 1; }
.tile.is-scrubbing .tile-media video { opacity: 0; }
.tile-media img { transition: opacity 0.35s var(--ease), transform 0.7s var(--out); }

@media (hover: hover) {
    .tile:hover .tile-media { transform: translateY(-4px); }
    .tile:hover .tile-media::after { box-shadow: inset 0 0 0 1px var(--r-line); }
    .tile:hover .tile-media img { transform: scale(1.04); }
    .tile:hover .tile-name { color: var(--white); }
}

.tile:active .tile-media { transform: scale(0.98); }

.tile-scan {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    z-index: 4;
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
    transition: width 0.15s linear;
}

.tile-time {
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 4;
    padding: 3px 6px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    font-size: 11.5px;
    font-weight: var(--fw-med);
    font-variant-numeric: tabular-nums;
    transition: opacity 0.25s;
}

.tile.live .tile-time { opacity: 0; }

.tile-badge {
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: 4;
    padding: 3px 7px;
    border-radius: 5px;
    background: var(--red);
    font-size: 10px;
    font-weight: var(--fw-med);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tile-badge-line { background: rgba(0, 0, 0, 0.72); border: 1px solid var(--w28); color: var(--w70); }

.tile-seen {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    z-index: 4;
    background: var(--w28);
}

.tile-seen i { display: block; height: 100%; background: var(--red); }

.tile-acts {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 5;
    display: flex;
    gap: 4px;
    /* Sit on the media plane (16:9), not over the title row if media fails */
    max-width: calc(100% - 12px);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.22s var(--ease), transform 0.35s var(--spring);
}

.tile:hover .tile-acts, .tile-acts:focus-within { opacity: 1; transform: none; }

.tile-act {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: var(--white);
    cursor: pointer;
    transition: background 0.18s, transform 0.3s var(--spring);
}

.tile-act svg { width: 15px; height: 15px; stroke-width: 2; }
.tile-act:hover { background: var(--red); }
.tile-act:active { transform: scale(0.86); }
.tile-act.on { background: var(--red); }
.tile-act.on svg { fill: currentColor; }

@media (hover: none) { .tile-acts { opacity: 1; transform: none; } }

.tile-body { display: flex; gap: 11px; padding-top: 11px; }
.tile-body .av { width: 32px; height: 32px; font-size: 12px; margin-top: 1px; }
.tile-txt { min-width: 0; flex: 1; }

.tile-name {
    font-size: 14px;
    font-weight: var(--fw-light);
    letter-spacing: 0.02em;
    line-height: 1.38;
    color: var(--w96);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.tile-by {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
    font-size: 12.5px;
    color: var(--w45);
    font-variant-numeric: tabular-nums;
}

.tile-by a:hover { color: var(--white); }
.tile-by .verif { width: 13px; height: 13px; color: var(--red); flex-shrink: 0; }

.sk-media { position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-m); overflow: hidden; background: var(--w04); }

.sk-line { height: 11px; border-radius: 4px; background: var(--w04); margin-top: 10px; }
.sk-line.w60 { width: 60%; }
.sk-line.w40 { width: 40%; }

.sk-media::after, .sk-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 20%, var(--w08) 50%, transparent 80%);
    background-size: 220% 100%;
    animation: sweep 1.5s ease-in-out infinite;
}

.sk-line { position: relative; overflow: hidden; }

@keyframes sweep {
    from { background-position: 140% 0; }
    to { background-position: -40% 0; }
}

.void {
    grid-column: 1 / -1;
    padding: 64px 24px;
    text-align: center;
}

.void-ic {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border: 1px solid var(--w14);
    border-radius: var(--r-l);
    color: var(--w28);
}

.void-ic svg { width: 24px; height: 24px; stroke-width: 1.6; }
.void strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: var(--fw-med);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}
.void p { font-size: 14px; color: var(--w45); max-width: 42ch; margin: 0 auto; }
.void .btn { margin-top: 20px; }

.rise { opacity: 0; transform: translateY(16px); transition: opacity 0.55s var(--out), transform 0.55s var(--out); }
.rise.in { opacity: 1; transform: none; }

.watch { display: grid; gap: 26px; padding: 0 var(--pad); }

.stage {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--r-m);
    overflow: hidden;
    background: var(--black);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.stage video, .stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.stage video { object-fit: contain; }

.stage-load {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    background: var(--black);
    transition: opacity 0.3s var(--ease);
}

.stage-load[hidden] { display: none; }

.spin {
    width: 28px;
    height: 28px;
    border: 2px solid var(--w14);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.watch-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 4.4vw, 30px);
    font-weight: var(--fw-med);
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.watch-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13.5px;
    color: var(--w45);
    font-variant-numeric: tabular-nums;
    margin-bottom: 20px;
}

.watch-owner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid var(--w08);
    border-bottom: 1px solid var(--w08);
}

.watch-owner-txt { flex: 1; min-width: 120px; }
.watch-owner-txt strong { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: var(--fw-med); }
.watch-owner-txt span { font-size: 12.5px; color: var(--w45); }

.acts { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 18px 0; }
.acts::-webkit-scrollbar { display: none; }

.act {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 9px 15px;
    border: 1px solid var(--w08);
    border-radius: var(--r-pill);
    background: var(--w04);
    font-size: 13.5px;
    font-weight: var(--fw-med);
    color: var(--w70);
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.3s var(--spring);
}

.act svg { width: 16px; height: 16px; stroke-width: 1.9; }
.act:hover { color: var(--white); background: var(--w08); }
.act:active { transform: scale(0.94); }
.act.on { background: var(--red); border-color: transparent; color: var(--white); }
.act.on svg { fill: currentColor; }

.desc {
    padding: 16px 18px;
    border-radius: var(--r-m);
    background: var(--w04);
    font-size: 14px;
    color: var(--w70);
    line-height: 1.55;
    white-space: pre-wrap;
}

.desc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.desc-tags a { font-size: 13px; color: var(--red); }
.desc-tags a:hover { text-decoration: underline; }

.talk { margin-top: 30px; }
.talk-head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.talk-head h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: var(--fw-med);
    letter-spacing: 0.02em;
}
.talk-head .n { font-size: 13px; color: var(--w45); font-variant-numeric: tabular-nums; }

.talk-new { display: flex; gap: 12px; margin-bottom: 26px; }
.talk-new .grow { flex: 1; min-width: 0; }
.talk-new textarea { min-height: 44px; }
.talk-new-btns { display: flex; justify-content: flex-end; gap: 8px; margin-top: 10px; }

.msg { display: flex; gap: 12px; padding: 14px 0; }
.msg-body { flex: 1; min-width: 0; }
.msg-top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.msg-top strong { font-size: 13px; font-weight: var(--fw-med); }
.msg-top time { font-size: 12px; color: var(--w45); }
.msg-txt { font-size: 14.5px; color: var(--w70); line-height: 1.5; white-space: pre-wrap; }
.msg-acts { display: flex; align-items: center; gap: 14px; margin-top: 8px; }

.msg-act {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: none;
    font-size: 12.5px;
    font-weight: var(--fw-med);
    color: var(--w45);
    cursor: pointer;
    transition: color 0.18s;
}

.msg-act svg { width: 15px; height: 15px; stroke-width: 1.9; }
.msg-act:hover { color: var(--white); }
.msg-act.on { color: var(--red); }
.msg-act.on svg { fill: currentColor; }

.banner {
    position: relative;
    aspect-ratio: 5 / 1;
    min-height: 130px;
    max-height: 260px;
    overflow: hidden;
    background: var(--w04);
}

.banner img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, var(--black));
}

.chan-head {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    flex-wrap: wrap;
    padding: 0 var(--pad);
    margin-top: -34px;
    position: relative;
    z-index: 2;
}

.chan-head .av { box-shadow: 0 0 0 4px var(--black); }
.chan-id { flex: 1; min-width: 200px; padding-bottom: 4px; }
.chan-id h1 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 36px);
    font-weight: var(--fw-med);
    letter-spacing: 0.02em;
}
.chan-id .sub { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--w45); margin-top: 5px; font-variant-numeric: tabular-nums; }
.chan-bio { padding: 20px var(--pad) 0; font-size: 14.5px; color: var(--w70); line-height: 1.55; max-width: 70ch; }

.subnav {
    display: flex;
    gap: 4px;
    padding: 22px var(--pad) 0;
    border-bottom: 1px solid var(--w08);
    overflow-x: auto;
    scrollbar-width: none;
}

.subnav::-webkit-scrollbar { display: none; }

.subnav button {
    position: relative;
    padding: 12px 16px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: var(--fw-med);
    color: var(--w45);
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.18s;
}

.subnav button:hover { color: var(--white); }
.subnav button.on { color: var(--white); }

.subnav button.on::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: -1px;
    height: 2px;
    background: var(--red);
    box-shadow: 0 0 10px var(--red);
}

.drop-zone {
    display: grid;
    place-items: center;
    padding: 60px 24px;
    border: 1.5px dashed var(--w14);
    border-radius: var(--r-l);
    background: var(--w04);
    text-align: center;
    cursor: pointer;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.drop-zone:hover, .drop-zone.over { border-color: var(--red); background: var(--r-veil); }

.drop-zone .void-ic { margin-bottom: 16px; border-color: var(--w28); color: var(--w70); }
.drop-zone.over .void-ic { border-color: var(--red); color: var(--red); }
.drop-zone strong { display: block; font-family: var(--font-display); font-size: 20px; font-weight: var(--fw-med); margin-bottom: 8px; }
.drop-zone p { font-size: 13.5px; color: var(--w45); }

.up-file {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--w08);
    border-radius: var(--r-m);
    background: var(--w04);
    margin-bottom: 22px;
}

.up-thumb {
    width: 108px;
    aspect-ratio: 16 / 9;
    border-radius: var(--r-s);
    background: var(--black);
    overflow: hidden;
    flex-shrink: 0;
}

.up-thumb video { width: 100%; height: 100%; object-fit: cover; }
.up-info { flex: 1; min-width: 0; }
.up-info strong { display: block; font-size: 14px; font-weight: var(--fw-med); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.up-info span { font-size: 12.5px; color: var(--w45); font-variant-numeric: tabular-nums; }

.bar {
    position: relative;
    height: 4px;
    margin-top: 10px;
    border-radius: 3px;
    background: var(--w08);
    overflow: hidden;
}

.bar i {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 3px;
    background: var(--red);
    box-shadow: 0 0 10px var(--red);
    transition: width 0.3s var(--ease);
}

.steps { display: flex; gap: 8px; margin-bottom: 26px; }

.step {
    flex: 1;
    padding-top: 10px;
    border-top: 2px solid var(--w08);
    font-size: 12px;
    font-weight: var(--fw-med);
    color: var(--w28);
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.step.on { border-top-color: var(--red); color: var(--white); }
.step.done { border-top-color: var(--w28); color: var(--w45); }

.legal {
    padding: 18px;
    border: 1px solid var(--r-line);
    border-radius: var(--r-m);
    background: var(--r-veil);
}

.legal h4 { font-size: 13px; font-weight: var(--fw-med); letter-spacing: 0.04em; margin-bottom: 10px; }
.legal p { font-size: 13px; color: var(--w70); line-height: 1.5; margin-bottom: 14px; }

.check { display: flex; align-items: flex-start; gap: 11px; padding: 9px 0; cursor: pointer; }

.check input { position: absolute; opacity: 0; pointer-events: none; }

.check .box {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
    border: 1.5px solid var(--w28);
    border-radius: 5px;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.check .box svg { width: 13px; height: 13px; stroke-width: 3; opacity: 0; transform: scale(0.6); transition: opacity 0.2s, transform 0.3s var(--spring); }
.check input:checked + .box { background: var(--red); border-color: var(--red); }
.check input:checked + .box svg { opacity: 1; transform: none; }
.check input:focus-visible + .box { border-color: var(--red); }
.check span { font-size: 13.5px; color: var(--w70); line-height: 1.45; }

.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.modal.open { display: flex; }

.modal-veil {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fade 0.22s var(--ease);
}

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
    position: relative;
    width: min(460px, 100%);
    max-height: 86vh;
    overflow-y: auto;
    padding: 28px 26px 26px;
    border: 1px solid var(--w08);
    border-radius: var(--r-l);
    background: #070707;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.95);
    animation: pop 0.45s var(--out);
}

@keyframes pop {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

.modal-box h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: var(--fw-med);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}
.modal-box > p { font-size: 14px; color: var(--w45); margin-bottom: 22px; }

.modal-x {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: var(--w08);
    color: var(--w70);
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}

.modal-x:hover { background: var(--red); color: var(--white); }

.toasts {
    position: fixed;
    left: 50%;
    bottom: calc(var(--tab) + var(--safe-b) + 18px);
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(-50%);
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid var(--w08);
    border-radius: var(--r-s);
    background: #0c0c0c;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    transition: opacity 0.25s var(--ease), transform 0.45s var(--spring);
}

.toast.in { opacity: 1; transform: none; }
.toast::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.toast.ok::before { background: var(--white); }

@media (min-width: 720px) {
    :root { --pad: 28px; --gap: 18px; }
    .find { display: block; }
    .watch { grid-template-columns: 1fr; }
    .steps { gap: 12px; }
}

@media (min-width: 1080px) {
    :root { --pad: 32px; --top: 64px; }

    body { padding-bottom: 0; }
    .tabs { display: none; }
    .rail { display: block; }
    .shell { grid-template-columns: var(--rail) 1fr; }
    .main { grid-column: 2; padding-bottom: 60px; }
    .toasts { bottom: 28px; left: calc(50% + var(--rail) / 2); }

    .watch {
        grid-template-columns: minmax(0, 1fr) 356px;
        align-items: start;
        max-width: 1500px;
        margin: 0 auto;
        padding-top: 24px;
    }

    .watch-side { position: sticky; top: calc(var(--top) + 24px); }
    .head, .card-box, .subnav, .chan-bio { max-width: 1500px; margin-left: auto; margin-right: auto; }
    .grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
    .form-wrap { max-width: 780px; margin: 0 auto; }
}

@media (min-width: 1500px) {
    .grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .rise { opacity: 1; transform: none; }
}

.head h1,
.sec-head h2,
.watch-title,
.talk-head h3,
.chan-id h1,
.modal-box h2,
.void strong,
.drop-zone strong {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
    font-weight: 700 !important;
    font-style: italic !important;
}

.ad-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid var(--w08);
    border-radius: var(--r-m);
    background: linear-gradient(120deg, rgba(255, 10, 47, 0.16), rgba(255, 255, 255, 0.03));
    transition: border-color 0.2s, transform 0.3s var(--spring);
}

.ad-banner:hover { border-color: var(--r-line); transform: translateY(-2px); }
.ad-banner strong { display: block; font-size: 17px; font-weight: 700; font-style: italic; margin: 4px 0; }
.ad-banner p { font-size: 13px; color: var(--w45); }

.ad-media {
    background: linear-gradient(145deg, rgba(255, 10, 47, 0.28), #0a0a0a 55%) !important;
}

.ad-panel {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0;
    padding: 16px;
    overflow: hidden;
    box-sizing: border-box;
    pointer-events: none;
}

.ad-panel .ad-cta { pointer-events: auto; }

.ad-tile .tile-acts { display: none; }

.ad-label {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.7);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--w70);
}

.ad-kicker {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}

.ad-title {
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.15;
    margin-bottom: 4px;
}

.ad-sub { font-size: 12.5px; color: var(--w70); margin-bottom: 12px; }

.ad-cta {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    background: var(--red);
    font-size: 12.5px;
    font-weight: 700;
}

.ad-float {
    position: fixed;
    right: 16px;
    bottom: calc(var(--tab) + var(--safe-b) + 18px);
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px 12px 16px;
    border: 1px solid var(--r-line);
    border-radius: var(--r-pill);
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(255, 10, 47, 0.2);
    font-size: 13.5px;
    font-weight: 600;
}

.ad-float-x {
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 50%;
    background: var(--w08);
    color: var(--white);
    cursor: pointer;
}

@media (max-width: 719px) {
    :root {
        --pad: 18px;
        --top: 58px;
        --tab: 66px;
    }

    body { font-size: 16px; }

    .main { padding-bottom: calc(var(--tab) + var(--safe-b) + 28px); }

    .grid { grid-template-columns: 1fr; gap: 22px; }
    .head h1 { font-size: clamp(28px, 8vw, 36px); }
    .ad-banner { flex-direction: column; align-items: flex-start; }
    .ad-float { left: 16px; right: 16px; justify-content: space-between; }
    .find { display: none !important; }

    /* Header */
    .mark-logo { height: 32px; }
    .top { gap: 10px; padding: 0 14px; }
    .top .btn { padding: 10px 16px; font-size: 14px; min-height: 42px; }
    .top .btn span { display: none; }
    .top .btn svg { width: 20px; height: 20px; }
    #topVip { min-width: 54px; padding: 10px 14px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }
    .ico { width: 44px; height: 44px; }
    .ico svg { width: 22px; height: 22px; }

    /* Bottom nav */
    .tab { font-size: 11px; gap: 5px; padding-top: 4px; }
    .tab svg { width: 24px; height: 24px; }
    .tab-post .bubble { width: 38px; height: 30px; }

    /* Forms & buttons */
    .btn-sm { padding: 10px 18px; font-size: 14px; min-height: 44px; }
    .inp { font-size: 16px; padding: 13px 15px; }
    .hint { font-size: 14px; }

    .sec-head h2 { font-size: 24px; }
    .sec-head .more { font-size: 13px; }

    .toasts { bottom: calc(var(--tab) + var(--safe-b) + 22px); }

    /* Watch page */
    .watch { padding: 0; gap: 0; }
    .watch-main { padding: 0 var(--pad); }

    .stage {
        border-radius: 0;
        margin-left: calc(-1 * var(--pad));
        margin-right: calc(-1 * var(--pad));
        width: calc(100% + 2 * var(--pad));
    }

    .watch-title {
        font-size: clamp(21px, 5.8vw, 28px);
        margin-top: 16px;
        margin-bottom: 10px;
        line-height: 1.28;
    }

    .watch-meta {
        font-size: 15px;
        gap: 10px;
        margin-bottom: 14px;
    }

    .watch-meta .dot { width: 4px; height: 4px; }

    .watch-owner {
        padding: 18px 0;
        gap: 14px;
    }

    .watch-owner .av-lg {
        width: 50px;
        height: 50px;
        font-size: 19px;
        flex-shrink: 0;
    }

    .watch-owner-txt strong { font-size: 16px; }
    .watch-owner-txt span { font-size: 14px; line-height: 1.45; }

    #follow { min-height: 44px; padding: 10px 20px; font-size: 14px; }

    .acts {
        gap: 10px;
        padding: 18px 0 22px;
        margin-left: calc(-1 * var(--pad));
        margin-right: calc(-1 * var(--pad));
        padding-left: var(--pad);
        padding-right: var(--pad);
    }

    .act {
        padding: 12px 18px;
        font-size: 15px;
        gap: 10px;
        min-height: 48px;
    }

    .act svg { width: 20px; height: 20px; stroke-width: 2; }

    .desc {
        font-size: 15px;
        padding: 18px;
        line-height: 1.6;
    }

    .desc-tags a { font-size: 14px; }

    .talk { margin-top: 8px; padding-bottom: 12px; }
    .talk-head { margin-bottom: 18px; }
    .talk-head h3 { font-size: 22px; }
    .talk-head .n { font-size: 15px; }

    .talk-new { gap: 14px; margin-bottom: 22px; }
    .talk-new .av { width: 40px; height: 40px; font-size: 15px; flex-shrink: 0; }
    .talk-new textarea.inp { min-height: 52px; line-height: 1.45; }

    .msg { padding: 16px 0; gap: 14px; }
    .msg-top strong { font-size: 15px; }
    .msg-top time { font-size: 13px; }
    .msg-txt { font-size: 15.5px; line-height: 1.55; }

    .watch-side {
        padding: 22px var(--pad) 8px;
        border-top: 8px solid var(--w04);
        margin-top: 8px;
    }

    .watch-side .sec-head h2 { font-size: 20px !important; }

    /* Feed tiles */
    .strip > .tile { flex: 0 0 min(78vw, 300px); }
    .tile-name { font-size: 15px; line-height: 1.4; }
    .tile-by { font-size: 13.5px; margin-top: 6px; }
    .tile-body .av { width: 36px; height: 36px; font-size: 13px; }
    .grid-tight { gap: 22px 14px; }
}

@media (min-width: 1080px) {
    .ad-float { bottom: 28px; }
}

/* —— VIP / invite —— */
.tile-lock {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.55);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--white);
    pointer-events: none;
}

.tile.is-vip-lock .tile-media img,
.tile.is-vip-lock .tile-media video {
    filter: blur(10px) brightness(0.55);
    transform: scale(1.06);
}

.vip-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    max-width: 820px;
}

.vip-card {
    padding: 22px;
    border: 1px solid var(--w14);
    border-radius: var(--r-lg);
    background: var(--w04);
}

.vip-card.is-hot {
    border-color: var(--r-line);
    background: linear-gradient(160deg, rgba(255, 10, 47, 0.12), transparent 55%);
}

.vip-card h2 {
    margin: 10px 0 6px;
    font-size: 22px;
}

.vip-price {
    font-size: 34px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    margin-bottom: 16px;
}

.vip-price span {
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    color: var(--w70);
    margin-left: 6px;
}

.vip-card ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.vip-card li {
    position: relative;
    padding-left: 18px;
    font-size: 13.5px;
    color: var(--w70);
}

.vip-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
}

/* VIP popup */
.modal-box.modal-vip {
    width: min(680px, 100%);
    padding: 0;
}

.modal-vip .modal-x { z-index: 2; }

.vip-modal-head {
    padding: 28px 28px 0;
    text-align: center;
}

.vip-modal-head h2 {
    margin: 12px 0 6px;
    font-size: 28px;
}

.vip-modal-head > p {
    margin: 0;
    font-size: 14px;
    color: var(--w45);
}

.vip-modal-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 10px 16px;
    border-radius: var(--r);
    background: var(--r-veil);
    border: 1px solid var(--r-line);
    font-size: 13px;
}

.vip-modal-status span { color: var(--w70); }

.vip-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 22px 24px 8px;
}

.vip-modal-plan {
    position: relative;
    padding: 20px 18px 18px;
    border: 1px solid var(--w14);
    border-radius: var(--r-lg);
    background: var(--w04);
    text-align: left;
}

.vip-modal-plan.is-hot {
    border-color: var(--r-line);
    background: linear-gradient(165deg, rgba(255, 10, 47, 0.14), transparent 60%);
}

.vip-modal-save {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--red);
}

.vip-modal-tag {
    margin-bottom: 8px;
}

.vip-modal-plan h3 {
    margin: 0 0 4px;
    font-size: 18px;
}

.vip-modal-price {
    font-size: 30px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    margin-bottom: 4px;
}

.vip-modal-price span {
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    color: var(--w70);
    margin-left: 4px;
}

.vip-modal-note {
    margin: 0 0 12px;
    font-size: 12px;
    color: var(--w45);
}

.vip-modal-plan ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: grid;
    gap: 6px;
}

.vip-modal-plan li {
    position: relative;
    padding-left: 16px;
    font-size: 12.5px;
    color: var(--w70);
}

.vip-modal-plan li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
}

.vip-modal-foot {
    padding: 0 24px 24px;
    text-align: center;
    font-size: 12px;
    color: var(--w45);
    margin: 0;
}

.rail-link-btn {
    width: 100%;
    border: 0;
    background: none;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

@media (max-width: 560px) {
    .vip-modal-grid { grid-template-columns: 1fr; padding: 18px 16px 6px; }
    .vip-modal-head { padding: 24px 20px 0; }
    .vip-modal-foot { padding: 0 16px 20px; }
}
