:root {
    --bg: #000;
    --bg2: #1b1b1b;
    --panel: #111;
    --line: #2c2c2c;
    --text: #fff;
    --muted: #aaa;
    --orange: #e91e8c;
    --orange-d: #b8126f;
    font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--text); position: relative; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }

.site-header { background: #000; border-bottom: 1px solid var(--line); }
.header-row {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 16px;
}
.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}
.logo span { color: var(--orange); }
.logo-start { color: #fff !important; }
.logo-end { color: var(--orange) !important; margin-left: 5px; }
.logo-mark {
    width: 42px;
    height: 36px;
    margin-left: 5px;
    vertical-align: -10px;
    object-fit: contain;
}
.nav-icon {
    display: inline-flex;
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
    margin-right: 7px;
    vertical-align: -4px;
}
.nav-icon i {
    font-size: 15px;
    line-height: 1;
}
.ui-icon {
    display: block;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: square;
    stroke-linejoin: miter;
}
.control-primary .ui-icon path,
.player-play .ui-icon path {
    fill: currentColor;
    stroke: none;
}
.menu-toggle,
.menu-backdrop { display: none; }
.search {
    flex: 1;
    display: flex;
    max-width: 640px;
    position: relative;
}
.search input {
    flex: 1;
    height: 38px;
    border: 0;
    background: #fff;
    color: #111;
    padding: 0 12px;
    font-size: 14px;
    outline: none;
}
.search button {
    height: 38px;
    border: 0;
    background: var(--orange);
    color: #111;
    font-weight: 700;
    padding: 0 18px;
    cursor: pointer;
}
.search button:hover { filter: brightness(1.08); }
.search-suggest {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 90;
    margin-top: 2px;
    background: #141414;
    border: 1px solid #2a2a2a;
    box-shadow: 0 12px 28px rgba(0,0,0,.45);
    max-height: min(70vh, 420px);
    overflow-y: auto;
}
.search-suggest[hidden] { display: none; }
.search-suggest a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    color: #eee;
    font-size: 13px;
    line-height: 1.3;
}
.search-suggest a:hover,
.search-suggest a.is-on {
    background: #222;
    color: #fff;
}
.search-suggest .sg-kind {
    flex: 0 0 auto;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #111;
    background: var(--orange);
    padding: 2px 6px;
    border-radius: 2px;
}
.search-suggest .sg-kind.is-video {
    background: #2c2c2c;
    color: #ccc;
}
.search-suggest .sg-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.search-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}
.search-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    background: #161616;
    border: 1px solid #2c2c2c;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.search-cat-chip span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #111;
    background: var(--orange);
    padding: 2px 6px;
}
.search-cat-chip:hover {
    border-color: var(--orange);
}
.main-nav {
    background: var(--bg2);
    border-bottom: 1px solid var(--line);
}
.main-nav ul {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 0 16px;
    list-style: none;
    display: flex;
    gap: 22px;
}
.main-nav a {
    display: block;
    padding: 11px 0;
    font-size: 14px;
    font-weight: 700;
    color: #ddd;
    border-bottom: 3px solid transparent;
}
.main-nav a:hover {
    color: #fff;
}
.main-nav a.is-on {
    color: #fff;
    border-bottom-color: var(--orange);
}

.cat-bar {
    background: #0d0d0d;
    border-bottom: 1px solid var(--line);
}
.cat-bar-inner {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 8px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.cat-bar a {
    color: #ccc;
    font-size: 13px;
}
.cat-bar a:hover { color: #fff; }

.wrap {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 16px;
}

.featured {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
    margin-bottom: 22px;
    background: var(--panel);
    border: 1px solid var(--line);
}
.featured-art {
    min-height: 280px;
    background:
        radial-gradient(circle at 30% 40%, hsl(var(--hue) 70% 40%), #0a0a0a 70%);
    position: relative;
    overflow: hidden;
}
.featured-art::after {
    content: "HD";
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--orange);
    color: #111;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 6px;
}
.featured-copy { padding: 18px 20px 20px; }
.kicker {
    color: #aaa;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.featured-copy h1 { margin: 8px 0 10px; font-size: 26px; font-weight: 700; color: #fff; }
.featured-copy p { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 0 0 10px; }
.meta { color: #888; font-size: 13px; margin-bottom: 16px !important; }
.btn-watch {
    display: inline-block;
    background: var(--orange);
    color: #111;
    font-weight: 800;
    padding: 10px 16px;
    font-size: 14px;
}
.btn-watch:hover { filter: brightness(1.08); }

.block { margin: 8px 0 28px; }
.block-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    margin-bottom: 14px;
    padding-bottom: 8px;
}
.block-head h2 {
    margin: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}
.block-head a, .muted { color: var(--muted); font-size: 13px; }
.block-head a:hover { color: #fff; }

.grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px 12px;
}

.card { min-width: 0; }
.thumb {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(180deg, transparent 45%, #000 100%),
        radial-gradient(circle at 40% 35%, hsl(var(--hue) 55% 38%), #141414 68%);
    overflow: hidden;
}
.thumb:hover { outline: 2px solid var(--orange); outline-offset: -2px; }
.dur {
    position: absolute;
    right: 6px;
    bottom: 6px;
    background: rgba(0,0,0,.85);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 5px;
}
.hd {
    position: absolute;
    left: 6px;
    top: 6px;
    background: var(--orange);
    color: #111;
    font-size: 10px;
    font-weight: 800;
    padding: 1px 4px;
}
.free-badge {
    position: absolute;
    right: 6px;
    top: 6px;
    background: #1e8c4a;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 1px 5px;
    text-transform: uppercase;
}
.play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.35);
    color: var(--orange);
    font-size: 28px;
    opacity: 0;
}
.play i,
.featured-play i,
.player-play i {
    font-size: 22px;
    line-height: 1;
}
.player-play i { font-size: 28px; }
.thumb:hover .play { opacity: 1; }
.hd,
.free-badge,
.type-badge,
.dur,
.featured-label {
    z-index: 2;
}
.thumb-sprite {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 1;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: calc(var(--frames, 10) * 100%) 100%;
    background-position: calc(var(--frame, 0) * 100% / (var(--frames, 10) - 1)) 0;
    background-color: #000;
}
.thumb-sprite[hidden] {
    display: none !important;
}
.thumb-clip {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    background: #000;
}
.thumb.is-preview .play,
.featured-art.is-preview .featured-play {
    opacity: 0 !important;
}
.card-meta { padding-top: 7px; }
.card-meta h3 {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    max-height: 2.6em;
    overflow: hidden;
}
.card-meta h3 a:hover { color: #fff; text-decoration: underline; }
.card-meta p {
    margin: 0;
    color: #888;
    font-size: 12px;
}
.dot { margin: 0 5px; }

.page-head { margin: 4px 0 16px; }
.page-head h1 { margin: 0 0 4px; font-size: 22px; color: #fff; }
.page-head p { margin: 0; color: var(--muted); font-size: 13px; }

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.cat-tile {
    background: var(--bg2);
    border: 1px solid var(--line);
    padding: 16px;
}
.cat-tile:hover { border-color: var(--orange); }
.cat-tile strong { display: block; color: #fff; margin-bottom: 4px; }
.cat-tile span { color: #888; font-size: 12px; }

.watch {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 16px;
    margin-bottom: 24px;
}
.player { background: #000; border: 1px solid var(--line); }
.player-stage {
    aspect-ratio: 16 / 9;
    position: relative;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 40%, hsl(var(--hue) 40% 28%), #000 70%);
}
.player-play {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--orange);
    background: rgba(0,0,0,.5);
    color: var(--orange);
    font-size: 22px;
    cursor: pointer;
}
.player-hint {
    position: absolute;
    bottom: 12px;
    color: #ccc;
    font-size: 12px;
}
.player-bar {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    background: #0f0f0f;
    color: #aaa;
    font-size: 12px;
    border-top: 1px solid var(--line);
}
.watch-info h1 { margin: 0 0 6px; font-size: 20px; color: #fff; }
.performer { color: #fff; font-weight: 700; margin: 0 0 10px; font-size: 14px; }
.performer span { color: #888; font-weight: 400; margin-right: 5px; }
.plot { color: var(--muted); font-size: 13px; line-height: 1.5; }
.stats {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    color: #888;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags a, .tags span {
    background: var(--bg2);
    border: 1px solid var(--line);
    padding: 4px 8px;
    font-size: 12px;
    color: #ddd;
}
.tags a:hover { color: #fff; border-color: #555; }

.related-col .mini {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 8px;
    margin-bottom: 10px;
}
.related-col .mini .thumb { aspect-ratio: 16 / 9; }
.related-col .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 8px;
}
.related-col h3 { font-size: 12px; margin: 0 0 4px; color: #fff; }
.related-col p { margin: 0; color: #888; font-size: 11px; }

.empty { padding: 40px 0; color: var(--muted); text-align: center; }

.site-foot {
    border-top: 1px solid var(--line);
    padding: 0;
    color: #888;
    font-size: 13px;
    text-align: left;
    background: #0a0a0a;
}
.site-foot strong { color: #fff; }
.site-foot .foot-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    font-size: 26px;
}

.gate-body { min-height: 100vh; display: grid; place-items: center; background: #000; }
.gate-card {
    width: min(480px, calc(100% - 24px));
    background: #111;
    border: 1px solid var(--line);
    padding: 28px 24px;
    text-align: center;
}
.brand-mark {
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 0.2em;
    margin: 0 0 10px;
}
.gate-card h1 { margin: 0 0 10px; font-size: 22px; }
.gate-lead { color: #bbb; font-size: 14px; line-height: 1.5; }
.gate-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.btn {
    display: inline-block;
    text-align: center;
    border: 0;
    cursor: pointer;
    font-weight: 800;
    padding: 12px;
    font-size: 14px;
}
.btn-enter { background: var(--orange); color: #111; }
.btn-enter:hover { filter: brightness(1.08); }
.btn-leave { background: #222; color: #ccc; border: 1px solid var(--line); }
.gate-note { color: #777; font-size: 11px; margin-top: 14px; }
.maintain-body { padding: 16px; }
.maintain-card {
    width: min(720px, calc(100% - 24px));
    overflow: hidden;
    background: #000;
    border: 1px solid #1f1f1f;
}
.maintain-art {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}
.maintain-copy {
    padding: 18px 20px 22px;
    text-align: center;
    background: #000;
}
.maintain-copy h1 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(22px, 4vw, 32px);
}

.type-badge {
    position: absolute;
    left: 6px;
    top: 24px;
    background: #000c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 5px;
    text-transform: uppercase;
}
.bio-label { margin: 16px 0 6px; font-size: 14px; color: #fff; }
.bio { color: #ccc; font-size: 13px; line-height: 1.6; }
.cat-bio { margin-top: 8px; color: #aaa; font-size: 13px; }

.admin-strip, .place-bar {
    background: #111;
    border-bottom: 1px solid var(--orange);
    padding: 8px 16px;
    font-size: 13px;
    display: flex;
    gap: 16px;
    align-items: center;
    z-index: 80;
}
.place-bar { position: sticky; top: 0; background: var(--orange); color: #111; font-weight: 700; }
.place-bar a { color: #111; text-decoration: underline; }
body.is-placing { cursor: crosshair; }
body.is-placing a:not(.place-bar a) { pointer-events: none; }

.ad-slot {
    position: relative;
    padding: 10px 16px;
    text-align: center;
    background: #0a0a0a;
}
.ad-slot:empty { display: none; }
.ad-network { min-height: 0; }
.ad-network ins,
.ad-network iframe {
    display: inline-block;
    max-width: 100%;
    vertical-align: top;
}
.ad-box {
    margin: 0 0 16px;
    padding: 8px;
    background: #111;
    border: 1px solid #1f1f1f;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.ad-band {
    background: #0a0a0a;
    border-top: 1px solid #1c1c1c;
    border-bottom: 1px solid #1c1c1c;
    margin: 0 0 20px;
}
.ad-band-header {
    margin: 0;
    border-top: 0;
}
.ad-band-footer {
    margin: 20px 0 0;
    border-bottom: 0;
}
.ad-band-inner {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90px;
}
.ad-band .ad-slot {
    padding: 0;
    background: transparent;
    width: 100%;
}
.ad-box .ad-slot {
    padding: 0;
    background: transparent;
    width: 100%;
}
.related-col .ad-box {
    width: 100%;
    min-height: 0;
}
.related-col .ad-box iframe,
.related-col .ad-box ins {
    max-width: 100%;
}
.ad-band-watch_below {
    margin: 16px 0 18px;
    border: 1px solid #1f1f1f;
}
.ad-band-watch_low {
    margin: 16px 0 0;
    border: 1px solid #1f1f1f;
}
.watch .ad-band-inner {
    width: 100%;
    padding: 8px 0;
    min-height: 90px;
}
.ad-band-home_mid,
.ad-band-home_low,
.ad-band-list_mid {
    margin: 0 0 22px;
}
.ad-band-twin {
    margin: 0 0 22px;
}
.related-col .ad-band-twin {
    margin: 16px 0 0;
    border: 1px solid #1f1f1f;
}
ins[data-tr-zone] {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    min-height: 90px;
}
.eas6a97888e2,
.eas6a97888e31,
.eas6a97888e14 { display: inline-block; }
.ad-slot a { display: inline-block; max-width: 100%; }
.ad-slot img,
.ad-slot video,
.site-ad img,
.site-ad video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    background: #111;
}
.ad-admin-preview {
    max-width: 320px;
    margin: 8px 0 12px;
    border: 1px solid #333;
}
.ad-admin-preview img,
.ad-admin-preview video { width: 100%; display: block; }
#ad-layer { position: absolute; left: 0; top: 0; width: 100%; height: 100%; pointer-events: none; z-index: 40; }
.site-ad {
    position: absolute;
    pointer-events: auto;
    display: block;
    background: #1a1a1a;
    border: 1px solid var(--orange);
}
.site-ad img { width: 100%; display: block; }
.ad-fallback { display: block; padding: 20px; text-align: center; color: var(--orange); }
.ad-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    display: grid;
    place-items: center;
    z-index: 100;
}
.ad-modal[hidden] { display: none; }
.ad-modal form {
    background: #111;
    border: 1px solid var(--line);
    padding: 20px;
    width: min(420px, 92vw);
}
.ad-modal label { display: block; margin: 8px 0 4px; font-size: 12px; color: #aaa; }
.ad-modal input, .ad-modal textarea {
    width: 100%;
    background: #000;
    color: #fff;
    border: 1px solid var(--line);
    padding: 8px;
}
.ad-modal .row { display: flex; gap: 8px; margin-top: 12px; }
.ad-modal button { background: var(--orange); border: 0; padding: 8px 12px; font-weight: 700; cursor: pointer; }
#ad-cancel { background: #333; color: #fff; }

.user-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}
.user-links a:hover { color: #fff; }
.btn-mini {
    background: var(--orange);
    color: #111 !important;
    padding: 6px 10px;
    font-size: 12px;
}
.sub-on { color: #fff; }
.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 860px;
}
.auth-card, .pay-box {
    background: #111;
    border: 1px solid var(--line);
    padding: 22px;
}
.auth-card h2 { margin-top: 0; }
.auth-card label, .pay-box label { display: block; margin: 10px 0 4px; font-size: 12px; color: #aaa; }
.auth-card input {
    width: 100%;
    padding: 10px;
    background: #000;
    color: #fff;
    border: 1px solid var(--line);
}
.err-box { color: #f66; margin-bottom: 12px; }
.ok-box { color: #8adf8a; margin-bottom: 12px; }
.pay-box { max-width: 560px; }
.pay-price { font-size: 28px; font-weight: 800; color: var(--orange); }
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 18px 0;
}
.payment-methods span {
    padding: 7px 9px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: #ddd;
    background: #0b0b0b;
    font-size: 11px;
    font-weight: 700;
}
.payment-not-ready {
    padding: 10px 12px;
    border: 1px solid #5d3c1c;
    background: #1d140c;
    color: #e9bd89;
    font-size: 13px;
}
.paywall {
    text-align: center;
    padding: 28px 16px;
    max-width: 420px;
}
.paywall h2 { margin: 8px 0; }
.paywall .btn-watch { margin-top: 8px; }

.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background:
        radial-gradient(800px 400px at 10% 0%, color-mix(in srgb, var(--orange) 22%, transparent), transparent 55%),
        #000;
    color: #fff;
}
.auth-shell {
    width: min(860px, calc(100% - 32px));
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    background: #0e0e0e;
    border: 1px solid var(--line);
}
.auth-brand {
    padding: 40px 32px;
    background: #141414;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-brand p { color: #bbb; line-height: 1.6; margin-top: 16px; }
.auth-panel { padding: 40px 32px; color: #fff; }
.auth-panel h1 { margin: 0 0 18px; font-size: 26px; color: #fff; }
.auth-form label { display: block; margin: 12px 0 6px; font-size: 13px; color: #ccc; }
.auth-form input {
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    border: 1px solid #333;
}
.auth-form .btn { width: 100%; margin-top: 18px; }
.auth-switch { margin-top: 18px; color: #999; font-size: 13px; }
.auth-switch a { color: #fff; text-decoration: underline; }
.kicker { color: #aaa; }

@media (max-width: 1100px) {
    .grid { grid-template-columns: repeat(3, 1fr); }
    .related-col .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .watch { grid-template-columns: 1fr; }
    .featured { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .grid, .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .header-row { flex-wrap: wrap; }
    .search { max-width: none; order: 3; flex-basis: 100%; }
    .auth-grid { grid-template-columns: 1fr; }
    .auth-shell { grid-template-columns: 1fr; }
}

/* Refined media surfaces */
body {
    background:
        radial-gradient(900px 420px at 50% -180px, color-mix(in srgb, var(--orange) 10%, transparent), transparent 70%),
        var(--bg);
}
.featured {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
}
.featured-art {
    display: grid;
    place-items: center;
    min-height: 310px;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(180deg, rgba(0,0,0,.02) 20%, rgba(0,0,0,.7) 100%),
        radial-gradient(circle at 30% 40%, hsl(var(--hue) 70% 40%), #0a0a0a 70%);
    background-size: cover;
    background-position: center;
}
.featured.has-cover .featured-art {
    background-image:
        linear-gradient(180deg, rgba(0,0,0,.08) 20%, rgba(0,0,0,.78) 100%),
        var(--cover-image);
}
.featured-art::after { display: none; }
.featured-label {
    align-self: start;
    justify-self: start;
    margin: 16px;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    background: rgba(0,0,0,.52);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.featured-play {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    background: rgba(0,0,0,.38);
    color: #fff;
    font-size: 22px;
    transition: transform .2s ease, background .2s ease;
}
.featured:hover .featured-play {
    transform: scale(1.08);
    background: var(--orange);
    color: #111;
}
.featured-copy { padding: 26px 24px 24px; }
.featured-copy h1 { font-size: clamp(22px, 3vw, 32px); }
.btn-watch { border-radius: 7px; transition: transform .2s ease, filter .2s ease; }
.btn-watch:hover { transform: translateY(-1px); }
.thumb {
    border-radius: 9px;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.thumb.has-cover {
    background-image:
        linear-gradient(180deg, rgba(0,0,0,.02) 38%, rgba(0,0,0,.82) 100%),
        var(--cover-image);
}
.thumb-img,
.featured-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.featured-play {
    z-index: 2;
}
.thumb:hover { outline: 0; box-shadow: inset 0 0 0 2px var(--orange), 0 8px 22px rgba(0,0,0,.22); }
.play { transition: opacity .2s ease, transform .2s ease; }
.thumb:hover .play { transform: scale(1.08); }
.card-meta h3 a { transition: color .15s ease; }
.card-meta p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Custom video player: the browser controls are intentionally replaced. */
.custom-player {
    overflow: hidden;
    border-radius: 14px;
    border-color: #242424;
    box-shadow: 0 20px 50px rgba(0,0,0,.26);
    isolation: isolate;
    z-index: 6;
    position: relative;
}
.custom-player .player-stage {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    background: #050505;
    overflow: hidden;
}
.video-shell {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}
.preroll {
    position: absolute;
    inset: 0;
    z-index: 8;
    background: #000;
}
.preroll-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}
.preroll-label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 8px;
    background: rgba(0,0,0,.7);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.preroll-click {
    position: absolute;
    left: 12px;
    bottom: 14px;
    padding: 8px 12px;
    background: var(--orange);
    color: #111;
    font-size: 13px;
    font-weight: 800;
}
.preroll-skip {
    position: absolute;
    right: 12px;
    bottom: 14px;
    border: 0;
    padding: 8px 12px;
    background: rgba(255,255,255,.92);
    color: #111;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}
.preroll-skip:disabled {
    opacity: .7;
    cursor: default;
}
.player-ad {
    position: absolute;
    left: 50%;
    bottom: 58px;
    z-index: 6;
    transform: translateX(-50%);
    max-width: calc(100% - 16px);
    pointer-events: auto;
}
.player-ad .ad-slot,
.player-ad .ad-network {
    padding: 0;
    margin: 0;
    background: transparent;
}
.player-ad-close {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 2;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: #111;
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 11px;
}
.custom-player.is-preroll .player-ad {
    display: none;
}
.custom-player.is-preroll .player-controls,
.custom-player.is-preroll .player-center {
    pointer-events: none;
    opacity: .25;
}
.video-element {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}
.player-poster {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.player-poster[hidden],
.custom-player.has-started .player-poster {
    display: none !important;
}
.player-intro {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.8)),
        radial-gradient(circle at 50% 30%, hsl(var(--hue) 65% 32% / .52), transparent 65%);
    opacity: 1;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 2;
}
.player-intro.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.player-intro-mark {
    color: var(--orange);
    font-size: clamp(25px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -.04em;
    text-shadow: 0 4px 26px rgba(0,0,0,.6);
}
.player-intro-girl {
    width: 30px;
    height: 30px;
    margin-top: 10px;
    fill: var(--orange);
    filter: drop-shadow(0 4px 15px rgba(233,30,140,.35));
}
.player-intro-mark-image {
    display: block;
    width: 160px;
    height: 120px;
    margin-top: 12px;
    object-fit: contain;
}
.player-intro p {
    max-width: 80%;
    margin: 8px 0 18px;
    color: rgba(255,255,255,.8);
    font-size: 13px;
}
.player-intro-start {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    padding: 11px 18px;
    background: var(--orange);
    color: #111;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,.28);
    transition: transform .18s ease, filter .18s ease;
}
.player-intro-start:hover { transform: translateY(-1px); filter: brightness(1.08); }
.intro-play-icon { font-size: 12px; }
.player-controls {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 28px 14px 11px;
    background: linear-gradient(transparent, rgba(0,0,0,.9));
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 3;
}
.video-shell.controls-on .player-controls,
.custom-player.is-paused .player-controls,
.player-controls:focus-within { opacity: 1; pointer-events: auto; }
.player-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.8);
    font-size: 11px;
    font-variant-numeric: tabular-nums;
}
.player-scrub {
    position: relative;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}
.player-progress input,
.player-scrub input {
    flex: 1;
    width: 100%;
    min-width: 0;
    height: 14px;
    margin: 0;
    accent-color: var(--orange);
    cursor: pointer;
}
.player-scrub-preview {
    position: absolute;
    bottom: 22px;
    left: 50%;
    z-index: 8;
    width: 168px;
    transform: translateX(-50%);
    background: #000;
    border: 1px solid #555;
    pointer-events: none;
}
.player-scrub-preview[hidden] { display: none !important; }
.player-scrub-preview canvas {
    display: block;
    width: 168px;
    height: 94px;
    background: #111;
}
.player-scrub-preview span {
    display: block;
    padding: 4px 0 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}
.player-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
}
.player-actions-spacer { flex: 1; min-width: 8px; }
.control-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 6px;
    padding: 0;
    background: rgba(0,0,0,.52);
    color: #eee;
    font-size: 11px;
    cursor: pointer;
    transition: background .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.control-btn:hover,
.control-btn.is-on,
.control-btn[aria-pressed="true"] {
    background: rgba(232, 60, 136, .14);
    color: var(--orange);
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px rgba(232, 60, 136, .35);
}
.control-btn:active { transform: scale(.96); }
.control-btn.is-on { color: var(--orange); border-color: var(--orange); }
.control-primary { border-color: var(--orange); color: var(--orange); font-weight: 800; }
.player-settings-wrap { position: relative; flex: 0 0 auto; }
.player-settings {
    position: absolute;
    right: 0;
    bottom: calc(100% + 8px);
    z-index: 6;
    width: 280px;
    max-height: 340px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: rgba(12,12,12,.97);
    border: 1px solid #333;
}
.player-settings[hidden] { display: none; }
.settings-home,
.settings-panel { display: flex; flex-direction: column; min-height: 0; }
.settings-panel[hidden],
.settings-home[hidden] { display: none; }
.settings-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 46px;
    padding: 8px 12px;
    border: 0;
    border-bottom: 1px solid #222;
    background: transparent;
    color: #eee;
    cursor: pointer;
    text-align: left;
}
.settings-row-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.settings-row-text span { font-size: 13px; font-weight: 700; }
.settings-row-text strong { color: #9a9a9a; font-size: 12px; font-weight: 700; }
.settings-panel-head {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    padding: 0 8px;
    border-bottom: 1px solid #333;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}
.settings-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    min-height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #eee;
    cursor: pointer;
}
.settings-choice {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-height: 42px;
    padding: 8px 12px;
    border: 0;
    border-bottom: 1px solid #222;
    background: transparent;
    color: #eee;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
}
.settings-row:hover,
.settings-back:hover,
.settings-choice:hover,
.settings-choice.is-on {
    background: #1a0b15;
    color: var(--orange);
}
.settings-choice em {
    font-style: normal;
    color: #888;
    font-size: 11px;
    font-weight: 600;
}
.settings-group {
    padding: 10px 12px 4px;
    color: #777;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.settings-search {
    width: 100%;
    height: 38px;
    padding: 0 12px;
    border: 0;
    border-bottom: 1px solid #333;
    background: #0a0a0a;
    color: #fff;
}
.settings-list {
    overflow: auto;
    max-height: 250px;
}
.custom-player.settings-open .player-controls { opacity: 1; pointer-events: auto; }
.player-center {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    pointer-events: none;
}
.player-center[hidden] { display: none !important; }
.player-center-btn {
    pointer-events: auto;
    width: 78px;
    height: 78px;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.58);
    color: #fff;
    cursor: pointer;
}
.player-center-btn i { font-size: 30px; }
.player-buffer {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(0,0,0,.38), transparent 62%);
}
.player-buffer[hidden] { display: none !important; }
.player-buffer-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 92px;
    min-height: 92px;
    padding: 14px 16px;
    border-radius: 50%;
    background: rgba(0,0,0,.62);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(232, 60, 136, .35);
}
.player-buffer-spin {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(255,255,255,.22);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: player-spin .7s linear infinite;
}
.player-buffer-text {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.custom-player.is-buffering .player-center { display: none !important; }
.control-btn.is-loading {
    position: relative;
    color: var(--orange);
}
.control-btn.is-loading i { opacity: 0; }
.control-btn.is-loading::after {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,.25);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: player-spin .7s linear infinite;
}
@keyframes player-spin {
    to { transform: rotate(360deg); }
}
.control-btn i,
.vote-btn i,
.settings-row i,
.settings-back i,
.menu-close i {
    display: block;
    font-size: 15px;
    line-height: 1;
    width: 1em;
    text-align: center;
}
.vote-btn i { font-size: 16px; }
.control-fullscreen { margin-left: 0; }
.player-bar {
    align-items: center;
    gap: 12px;
    min-height: 42px;
    padding: 8px 13px;
}
.player-status { margin-right: auto; color: #c6c6c6; }
.player-status .live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 4px;
    border-radius: 50%;
    background: #52cf7b;
    box-shadow: 0 0 0 3px rgba(82,207,123,.14);
}
.watch-info {
    padding: 20px 2px 0 !important;
}
.watch-info h1 { font-size: clamp(21px, 3vw, 28px); }
.related-col .mini {
    padding: 7px;
    border: 1px solid transparent;
    border-radius: 9px;
    transition: border-color .18s ease, background .18s ease;
}
.related-col .mini:hover {
    border-color: var(--line);
    background: #101010;
}

@media (max-width: 700px) {
    .header-row {
        gap: 10px;
        padding: 12px 14px 10px;
    }
    .logo { font-size: 24px; }
    .user-links { gap: 8px; font-size: 11px; }
    .user-links .btn-mini { padding: 6px 8px; }
    .search { margin-top: 3px; }
    .search input, .search button { height: 42px; }
    .search button { padding: 0 13px; }
    .main-nav ul {
        gap: 22px;
        padding: 0 14px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .main-nav ul::-webkit-scrollbar { display: none; }
    .main-nav a { padding: 10px 0; font-size: 13px; white-space: nowrap; }
    .cat-bar-inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 9px 14px;
        scrollbar-width: none;
    }
    .cat-bar-inner::-webkit-scrollbar { display: none; }
    .cat-bar a { white-space: nowrap; font-size: 12px; }
    .wrap { padding: 14px; }
    .featured { display: block; margin-bottom: 20px; }
    .featured-art { min-height: 190px; }
    .featured-copy { padding: 17px; }
    .featured-copy h1 { margin-top: 6px; font-size: 23px; }
    .featured-copy p { font-size: 13px; }
    .grid { gap: 18px 9px; }
    .card-meta { padding-top: 6px; }
    .card-meta h3 { font-size: 12px; }
    .card-meta p { font-size: 10px; }
    .dot { margin: 0 2px; }
    .watch { gap: 20px; margin-left: -14px; margin-right: -14px; width: calc(100% + 28px); }
    .custom-player { margin: 0; border-right: 0; border-left: 0; border-radius: 0; width: 100%; max-width: none; }
    .custom-player .player-stage { aspect-ratio: 16 / 9; max-height: none; }
    .watch-actions,
    .watch-info,
    .related-col { padding-left: 14px; padding-right: 14px; }
    .player-controls { padding: 27px 11px 9px; }
    .control-btn { padding: 7px 8px; }
    .control-btn span { display: none; }
    .player-bar { padding: 8px 11px; font-size: 10px; gap: 8px; }
    .player-status { font-size: 10px; }
    .related-col .mini { grid-template-columns: 132px 1fr; }
}

/* Classic square skin: flat black surfaces, clean menus, no rounded UI. */
body {
    background: #000;
}
.featured,
.thumb,
.custom-player,
.control-btn,
.btn-watch,
.btn,
.cat-tile,
.auth-shell,
.auth-card,
.pay-box,
.gate-card,
.related-col .mini {
    border-radius: 0;
}
.featured {
    box-shadow: none;
    border-color: #1f1f1f;
}
.thumb:hover {
    box-shadow: inset 0 0 0 2px var(--orange);
}
.main-nav,
.cat-bar {
    border-bottom: 0;
}
.main-nav a {
    border-bottom: 0;
}
.main-nav a.is-on {
    background: var(--orange);
    color: #111;
    padding-right: 10px;
    padding-left: 10px;
}
.custom-player {
    border-color: #1f1f1f;
    box-shadow: none;
}
.player-intro {
    background: #000;
}
.player-intro-mark {
    letter-spacing: -.05em;
}
.player-controls {
    opacity: 0;
    pointer-events: none;
}
.video-shell.controls-on .player-controls,
.video-shell:fullscreen.controls-on .player-controls,
.video-shell:-webkit-full-screen.controls-on .player-controls,
.custom-player.is-paused .player-controls,
.custom-player.settings-open .player-controls {
    opacity: 1 !important;
    pointer-events: auto;
}
.video-shell:fullscreen .player-controls,
.video-shell:-webkit-full-screen .player-controls {
    opacity: 0;
    pointer-events: none;
}
.video-shell:fullscreen,
.video-shell:-webkit-full-screen {
    width: 100%;
    height: 100%;
    background: #000;
}
.video-shell:fullscreen .video-element,
.video-shell:-webkit-full-screen .video-element {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
html.player-fs-lock,
html.player-fs-lock body {
    overflow: hidden !important;
    height: 100%;
    height: 100dvh;
}
.custom-player.is-fake-fullscreen {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10000;
    width: 100% !important;
    height: 100% !important;
    height: 100dvh !important;
    max-width: none !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #000;
}
.custom-player.is-fake-fullscreen .player-stage {
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
    max-height: none;
}
.custom-player.is-fake-fullscreen .video-shell,
.custom-player.is-fake-fullscreen .video-element {
    width: 100%;
    height: 100%;
}
.custom-player.is-fake-fullscreen .player-controls {
    opacity: 1 !important;
    pointer-events: auto;
}
.control-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 34px;
    min-width: 38px;
    min-height: 34px;
    padding: 0;
    border-color: #3a3a3a;
    font-size: 15px;
    line-height: 1;
}
.control-primary {
    border-color: var(--orange);
    color: var(--orange);
}
.player-bar {
    border-top: 0;
}
.watch-info {
    border-top: 1px solid #1f1f1f;
}
.watch-info h1 {
    margin-bottom: 8px;
}
.bio-panel {
    margin: 18px 0;
    padding: 14px 16px;
    background: #0b0b0b;
    border-left: 3px solid var(--orange);
}
.bio-panel .bio-label {
    margin: 0 0 8px;
    color: var(--orange);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.bio-panel .bio {
    margin: 0;
    color: #d2d2d2;
}

/* The menu is a real off-canvas panel at every viewport size. */
* {
    border-radius: 0 !important;
}
.menu-toggle {
    display: inline-flex;
    width: 34px;
    height: 34px;
    padding: 7px 5px;
    flex-direction: column;
    justify-content: space-between;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
}
.main-nav {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(280px, 82vw);
    padding-top: 66px;
    background: #080808;
    transform: translateX(-105%);
    transition: transform .2s ease;
    z-index: 90;
    border-right: 1px solid #252525;
    box-shadow: 12px 0 30px rgba(0,0,0,.35);
}
.menu-close {
    position: absolute;
    top: 17px;
    right: 15px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    padding: 6px;
    border: 1px solid #303030;
    background: #101010;
    color: #ddd;
    cursor: pointer;
}
.menu-close:hover {
    background: var(--orange);
    color: #111;
}
.side-menu-title {
    padding: 0 26px 17px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.main-nav ul {
    display: block;
    padding: 0 14px;
}
.main-nav li {
    border-bottom: 0;
}
.main-nav a,
.main-nav a.is-on {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 14px 12px;
    background: transparent;
    color: #ddd;
    border: 0;
}
.main-nav a.is-on {
    background: #1b0b16;
    color: var(--orange);
}
.main-nav a:hover {
    background: #151515;
    color: #fff;
}
.main-nav a.is-on:hover {
    background: #241020;
    color: var(--orange);
}
.menu-backdrop {
    position: fixed;
    inset: 0;
    display: block;
    padding: 0;
    border: 0;
    background: rgba(0,0,0,.7);
    opacity: 0;
    visibility: hidden;
    z-index: 80;
}
.menu-open .main-nav {
    transform: translateX(0);
}
.menu-open .menu-backdrop {
    opacity: 1;
    visibility: visible;
}
.menu-open {
    overflow: hidden;
}

/* Video engagement and Pornhub-style description/comments surface. */
.watch-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 2px;
    border-bottom: 1px solid #1f1f1f;
}
.vote-group {
    display: inline-flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    border: 0;
    background: transparent;
}
.vote-form {
    display: flex;
    gap: 8px;
    margin: 0;
}
.vote-btn,
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #444;
    background: #111;
    color: #ddd;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: color .16s ease, background .16s ease, transform .16s ease, box-shadow .16s ease;
}
.vote-btn {
    min-width: 48px;
    padding: 0 14px;
}
.vote-group > :last-child,
.vote-group > :last-child .vote-btn:last-child {
    border-right: 1px solid #444;
}
.vote-btn:hover,
.share-btn:hover,
.vote-btn.is-on {
    color: var(--orange);
    background: #1a0b15;
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 1px rgba(232, 60, 136, .35);
}
.vote-btn:active,
.share-btn:active {
    transform: scale(.96);
}
.vote-btn .ui-icon {
    width: 18px;
    height: 18px;
}
.vote-btn strong {
    padding-left: 7px;
    border-left: 1px solid #444;
    color: #fff;
}
.vote-btn.is-on strong { color: var(--orange); }
.share-btn {
    border: 1px solid #444;
}
.share-btn:hover { border-color: var(--orange); }
.share-btn.is-copied {
    border-color: var(--orange);
    color: var(--orange);
}
.site-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 240;
    display: none;
    min-width: 160px;
    max-width: min(92vw, 360px);
    padding: 12px 18px;
    transform: translateX(-50%);
    background: #1a1a1a;
    border: 1px solid var(--orange);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.45);
}
.site-toast.is-on { display: block; }
.watch-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.title-views {
    flex: 0 0 auto;
    padding-top: 5px;
    color: #888;
    font-size: 12px;
}
.bio-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.bio-panel-head > span {
    color: #777;
    font-size: 11px;
}
.bio-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 14px;
    margin-top: 14px;
    padding-top: 11px;
    border-top: 1px solid #262626;
    color: #888;
    font-size: 11px;
}
.membership-note {
    margin: 15px 0 0;
    color: #6fbd8b;
    font-size: 11px;
}
.comments {
    margin-top: 28px;
    padding-top: 17px;
    border-top: 1px solid #1f1f1f;
}
.comments-head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
}
.comments-head h2 {
    margin: 0;
    color: #fff;
    font-size: 17px;
}
.comments-head span {
    min-width: 22px;
    padding: 2px 6px;
    background: #292929;
    color: #bbb;
    font-size: 11px;
    text-align: center;
}
.comment-form {
    padding: 12px;
    background: #0b0b0b;
    border: 1px solid #222;
}
.comment-form textarea {
    display: block;
    width: 100%;
    min-height: 76px;
    resize: vertical;
    padding: 10px;
    border: 1px solid #333;
    background: #000;
    color: #fff;
    font: inherit;
    font-size: 13px;
}
.comment-form textarea:focus { outline: 1px solid var(--orange); }
.comment-form-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 9px;
}
.comment-form-foot > span {
    color: #666;
    font-size: 11px;
}
.comment-submit {
    border: 0;
    padding: 8px 13px;
    background: var(--orange);
    color: #111;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}
.comment-submit:hover { filter: brightness(1.08); }
.comment-error {
    margin: 0 0 10px;
    color: #f07878;
    font-size: 12px;
}
.comment-login {
    margin: 0;
    padding: 13px;
    border: 1px solid #222;
    background: #0b0b0b;
    color: #888;
    font-size: 12px;
}
.comment-login a {
    color: var(--orange);
    font-weight: 800;
}
.comment-list { margin-top: 16px; }
.comment {
    display: flex;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid #1b1b1b;
}
.comment-avatar {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    background: #272727;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
}
.comment-copy { min-width: 0; }
.comment-meta {
    display: flex;
    align-items: baseline;
    gap: 9px;
}
.comment-meta strong { color: #ddd; font-size: 12px; }
.comment-meta time { color: #666; font-size: 11px; }
.comment-copy p {
    margin: 6px 0 0;
    color: #bbb;
    font-size: 13px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}
.empty-comments {
    margin: 16px 0 0;
    color: #777;
    font-size: 12px;
}
.comments-more {
    margin-top: 12px;
    border-top: 1px solid #1b1b1b;
}
.comments-more summary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 0;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}
.comments-more summary::-webkit-details-marker { display: none; }
.comments-more summary::before {
    content: "+";
    display: inline-grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border: 1px solid var(--orange);
    font-size: 14px;
    line-height: 1;
}
.comments-more[open] summary::before { content: "−"; }
.comments-more summary span {
    color: #888;
    font-weight: 400;
}
.player-error {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 20px;
    background: #000;
    color: #f07878;
    font-size: 14px;
    text-align: center;
}
.player-error[hidden] { display: none; }
.account-box { max-width: 720px; }
.account-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #1f1f1f;
    color: #aaa;
    font-size: 14px;
}
.account-row strong { color: #fff; }
.username-form { margin: 4px 0 16px; max-width: 320px; }
.username-form .btn { width: auto; margin-top: 10px; }
.studio-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 22px;
}
.studio-stats div {
    padding: 14px 12px;
    background: #0f0f0f;
    border: 1px solid #1f1f1f;
    text-align: center;
}
.studio-stats strong {
    display: block;
    font-size: 22px;
    color: #fff;
}
.studio-stats span {
    display: block;
    margin-top: 4px;
    color: #888;
    font-size: 12px;
}
.follower-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.follower-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #1f1f1f;
}
.follower-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    flex: 0 0 auto;
}
.follower-list em {
    color: #777;
    font-style: normal;
    font-size: 12px;
    margin-left: auto;
}
.user-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
@media (max-width: 700px) {
    .studio-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

/* Keep the player compact like a focused video page, not a full-screen hero. */
.watch {
    grid-template-columns: minmax(0, 860px) 300px;
    justify-content: center;
}
.custom-player {
    width: 100%;
    max-width: 860px;
}
.custom-player .player-stage {
    max-height: 484px;
    aspect-ratio: 16 / 9;
}
.video-watermark {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 4;
    pointer-events: none;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: 1;
    text-shadow: 0 1px 8px rgba(0,0,0,.85);
}
.watermark-end { color: var(--orange); margin-left: 3px; }

@media (max-width: 1100px) {
    .watch {
        grid-template-columns: minmax(0, 860px);
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .watch { grid-template-columns: 1fr; max-width: none; }
    .custom-player { max-width: none; }
    .watch-actions {
        gap: 8px;
    }
    .watch-title-row { display: block; }
    .title-views { padding-top: 0; }
    .comment-form-foot {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Pornhub-like layout: square edges, dense catalog, working left drawer. */
html.menu-open,
body.menu-open {
    overflow: hidden;
}
body {
    background: #000;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    background: #000;
    border-bottom: 0;
}
.header-row {
    width: min(1320px, 100%);
    gap: 14px;
    padding: 8px 16px;
    overflow: visible;
}
.menu-toggle {
    display: inline-flex;
    flex: 0 0 40px;
    width: 40px;
    height: 36px;
    padding: 8px 7px;
    flex-direction: column;
    justify-content: space-between;
    border: 0;
    background: #1b1b1b;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
}
.menu-toggle:hover {
    background: var(--orange);
}
.menu-toggle:hover span {
    background: #111;
}
.logo {
    display: inline-flex;
    align-items: center;
    font-size: 26px;
    font-weight: 800;
}
.logo-mark {
    width: 40px;
    height: 34px;
    margin-left: 6px;
    object-fit: contain;
}
.search {
    max-width: 560px;
    position: relative;
}
.search input,
.search button {
    height: 36px;
    border-radius: 0;
}
.search button {
    color: #111;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.user-links a:hover {
    color: var(--orange);
}
.btn-mini {
    background: var(--orange);
    color: #111 !important;
}
.cat-bar {
    background: #000;
    border: 0;
}
.cat-bar-inner {
    width: min(1320px, 100%);
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    padding: 0 16px 10px;
    scrollbar-width: none;
}
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-bar a {
    flex: 0 0 auto;
    padding: 6px 10px;
    color: #b7b7b7;
    font-size: 13px;
    font-weight: 700;
}
.cat-bar a:hover {
    color: var(--orange);
}

.main-nav {
    position: fixed;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: min(320px, 86vw);
    height: 100%;
    padding: 0;
    background: #1b1b1b;
    border: 0;
    border-right: 1px solid #111;
    box-shadow: none;
    transform: translateX(-110%);
    transition: transform .18s ease;
    z-index: 220;
    overflow: hidden;
}
.side-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-shrink: 0;
    padding: 12px 12px 12px 16px;
    background: #000;
}
.side-head .logo { font-size: 22px; }
.menu-close {
    position: static;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 0;
    background: #1b1b1b;
    color: #fff;
    cursor: pointer;
}
.menu-close:hover {
    background: var(--orange);
    color: #111;
}
.side-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0 28px;
}
.side-menu-title {
    padding: 16px 18px 8px;
    color: #888;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.main-nav ul,
.main-nav ul.side-cats {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
    list-style: none;
}
.main-nav li { margin: 0; }
.main-nav a,
.main-nav a.is-on {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 42px;
    padding: 10px 18px;
    background: transparent;
    color: #ddd;
    font-size: 14px;
    font-weight: 700;
    border: 0;
    border-left: 3px solid transparent;
}
.main-nav a:hover {
    background: #111;
    color: #fff;
}
.main-nav a.is-on,
.main-nav a.is-on:hover {
    background: #111;
    color: #fff;
    border-left-color: var(--orange);
}
.side-cats a {
    min-height: 36px;
    padding: 8px 18px 8px 21px;
    color: #bbb;
    font-size: 13px;
    font-weight: 600;
}
.menu-backdrop {
    position: fixed;
    inset: 0;
    display: block;
    z-index: 210;
    padding: 0;
    border: 0;
    background: rgba(0,0,0,.62);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
}
.menu-open .main-nav {
    transform: translateX(0);
}
.menu-open .menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrap {
    width: min(1320px, 100%);
    padding: 12px 16px 24px;
}
.featured {
    grid-template-columns: 1.55fr 1fr;
    gap: 0;
    margin-bottom: 18px;
    background: #111;
    border: 0;
    box-shadow: none;
    overflow: hidden;
}
.featured-art {
    min-height: 280px;
}
.featured-label,
.featured-play {
    border-radius: 0;
}
.featured-play {
    width: 58px;
    height: 58px;
    border: 2px solid #fff;
}
.featured-copy {
    padding: 20px 22px;
}
.block { margin: 4px 0 22px; }
.block-head {
    border-bottom: 0;
    margin-bottom: 10px;
    padding-bottom: 0;
}
.block-head h2 {
    font-size: 17px;
    font-weight: 700;
}
.grid {
    gap: 12px 8px;
}
.thumb,
.thumb.has-cover,
.featured,
.btn-watch,
.btn,
.cat-tile,
.custom-player,
.control-btn,
.vote-btn,
.share-btn,
.auth-shell,
.auth-card,
.pay-box,
.gate-card,
.related-col .mini,
.player-intro-start {
    border-radius: 0;
    box-shadow: none;
}
.thumb {
    box-shadow: none;
}
.thumb:hover {
    outline: 0;
    box-shadow: inset 0 0 0 3px var(--orange);
}
.play {
    background: rgba(0,0,0,.28);
    color: var(--orange);
}
.card-meta h3 a:hover {
    color: var(--orange);
    text-decoration: none;
}
.cat-tile {
    background: #111;
    border: 0;
}
.cat-tile:hover {
    background: #1a1a1a;
    border: 0;
    outline: 2px solid var(--orange);
    outline-offset: -2px;
}
.site-foot {
    border-top: 1px solid #1c1c1c;
    padding: 0;
}
.site-foot .foot-logo {
    margin: 0;
}
.btn-watch,
.player-intro-start {
    border: 0;
}

@media (max-width: 1100px) {
    .grid { grid-template-columns: repeat(3, 1fr); }
    .related-col .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .featured { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .header-row {
        gap: 8px;
        padding: 8px 10px;
        flex-wrap: wrap;
    }
    .search {
        order: 3;
        flex-basis: 100%;
        max-width: none;
        margin-top: 0;
    }
    .search input,
    .search button { height: 38px; }
    .logo { font-size: 22px; }
    .main-nav,
    .main-nav ul {
        display: flex;
        width: min(320px, 86vw);
        overflow: hidden;
    }
    .main-nav { flex-direction: column; }
    .main-nav ul {
        display: block;
        width: 100%;
        overflow: visible;
    }
    .main-nav a,
    .main-nav a.is-on {
        padding: 10px 18px;
        white-space: normal;
    }
    .cat-bar-inner { padding: 0 10px 10px; }
    .wrap { padding: 10px; }
    .watch { margin-left: -10px; margin-right: -10px; width: calc(100% + 20px); }
    .watch-actions,
    .watch-info,
    .related-col { padding-left: 10px; padding-right: 10px; }
    .grid, .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px 7px; }
    .related-col .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .featured-art { min-height: 180px; }
}

.card-channel { color: var(--orange); font-weight: 800; }
.card-channel .vbadge { margin-left: 4px; }
.channel { margin-bottom: 28px; }
.channel-hero {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
    padding: 18px;
    background: #0f0f0f;
    border: 1px solid #1f1f1f;
}
.pfp,
.channel-avatar-wrap {
    position: relative;
    display: block;
    flex: 0 0 auto;
    box-sizing: border-box;
    overflow: hidden !important;
    border-radius: 50% !important;
    -webkit-clip-path: circle(50% at 50% 50%) !important;
    clip-path: circle(50% at 50% 50%) !important;
    background: #111;
}
.pfp-sm { width: 48px; height: 48px; min-width: 48px; min-height: 48px; max-width: 48px; max-height: 48px; }
.pfp-md { width: 56px; height: 56px; min-width: 56px; min-height: 56px; max-width: 56px; max-height: 56px; }
.pfp-lg,
.channel-avatar-wrap {
    width: 96px;
    height: 96px;
    min-width: 96px;
    min-height: 96px;
    max-width: 96px;
    max-height: 96px;
}
.pfp img,
.channel-avatar-wrap img,
.pfp .avatar-fallback {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0;
    object-fit: cover !important;
    object-position: center;
    border-radius: 50% !important;
}
.avatar-edit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: none;
    margin: 0;
}
.pfp.is-edit {
    overflow: visible !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    cursor: pointer;
}
.pfp.is-edit img,
.pfp.is-edit .avatar-fallback {
    border-radius: 50% !important;
    -webkit-clip-path: circle(50% at 50% 50%) !important;
    clip-path: circle(50% at 50% 50%) !important;
}
.avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1014;
    color: var(--orange);
    font-size: 36px;
    font-weight: 800;
}
.avatar-edit-btn {
    position: absolute;
    right: -2px;
    bottom: -2px;
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--orange);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid #0f0f0f;
    pointer-events: none;
}
.avatar-file {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    font-size: 0;
}
.avatar-hint {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
}
.account-photo {
    margin: 4px 0 18px;
}
.channel-kicker {
    margin: 0 0 4px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.channel-hero h1 { margin: 0 0 6px; }
.channel-hero p { margin: 0 0 8px; color: #bbb; }
.channel-stats { color: #888 !important; font-size: 13px; }
.channel-stats a { color: var(--orange); }
.channel-name {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.vbadge {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    color: var(--orange);
    line-height: 1;
    flex: 0 0 auto;
}
.vbadge-sm { font-size: 13px; }
.vbadge-md { font-size: 16px; }
.vbadge-lg { font-size: 22px; }
.main-nav .vbadge { margin-left: 6px; }
.channel-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0 12px;
}
.channel-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.channel-mini strong {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.channel-mini em { color: #888; font-style: normal; font-size: 12px; }
.follow-form { margin: 0; }
.follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    padding: 8px 14px;
    background: var(--orange);
    color: #111;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
}
.follow-btn.is-on { background: #222; color: #fff; border: 1px solid #333; }
.tip-box {
    margin: 12px 0 0;
    padding: 12px 14px;
    background: #101010;
    border: 1px solid #262626;
    max-width: 720px;
}
.tip-lead {
    margin: 0 0 6px;
    color: #fff;
    font-size: 14px;
}
.tip-lead i { color: var(--orange); margin-right: 6px; }
.tip-note {
    margin: 0 0 10px;
    color: #9a9a9a;
    font-size: 13px;
}
.tip-row {
    display: grid;
    grid-template-columns: minmax(90px, 140px) minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}
.tip-coin {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
}
.tip-addr {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #ddd;
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 8px 10px;
    font-size: 12px;
}
.tip-copy {
    border: 0;
    background: var(--orange);
    color: #111;
    font-weight: 800;
    padding: 8px 12px;
    cursor: pointer;
}
.tip-copy.is-copied { background: #222; color: #fff; }
@media (max-width: 700px) {
    .tip-row { grid-template-columns: 1fr auto; }
    .tip-coin { grid-column: 1 / -1; }
}
.verified-page { max-width: 720px; }
.verified-hero {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
    padding: 18px;
    background: #0f0f0f;
    border: 1px solid #1f1f1f;
}
.verified-hero p { color: #bbb; }
.verified-points {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}
.verified-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #1f1f1f;
    color: #ddd;
}
.verified-points .fa-solid { color: var(--orange); margin-top: 3px; }
.verified-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.notify-drop { position: relative; }
.notify-drop summary {
    list-style: none;
    cursor: pointer;
    color: #ddd;
    position: relative;
}
.notify-drop summary::-webkit-details-marker { display: none; }
.notify-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    background: var(--orange);
    color: #111;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
}
.notify-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 80;
    width: min(320px, 80vw);
    padding: 10px;
    background: #111;
    border: 1px solid #333;
}
.notify-panel p { margin: 0 0 8px; font-size: 12px; color: #888; }
.notify-panel a {
    display: block;
    padding: 8px 6px;
    color: #ddd;
    font-size: 12px;
    white-space: normal;
    border-bottom: 1px solid #222;
}
.notify-all { color: var(--orange) !important; border: 0 !important; }
.notify-empty { display: block; color: #888; font-size: 12px; padding: 8px 0; }
.alert-list { display: flex; flex-direction: column; gap: 8px; }
.alert-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: #111;
    border: 1px solid #1f1f1f;
    color: #ddd;
}
.alert-item.is-new { border-color: var(--orange); }
.alert-cover {
    flex: 0 0 96px;
    width: 96px;
    height: 54px;
    background: #222 center/cover no-repeat;
}
.alert-item em { display: block; color: #777; font-style: normal; font-size: 11px; }
@media (max-width: 700px) {
    .channel-hero,
    .verified-hero { flex-direction: column; align-items: flex-start; }
    .channel-line { flex-wrap: wrap; }
}

.foot-inner {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 28px 16px 32px;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(140px, .7fr) minmax(140px, .7fr) minmax(240px, 1.2fr);
    gap: 28px 48px;
    align-items: start;
}
.foot-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.foot-col h3 {
    margin: 4px 0 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.foot-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
}
.foot-nav a {
    color: #cfcfcf;
    font-size: 14px;
    font-weight: 600;
}
.foot-nav a:hover { color: var(--orange); }
.foot-copy p {
    margin: 0 0 8px;
    max-width: none;
    line-height: 1.55;
    color: #999;
    font-size: 13px;
}
.foot-copy p:last-child { margin-bottom: 0; }
.foot-badge {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    color: #aaa;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.foot-badge span {
    display: inline-block;
    padding: 2px 7px;
    background: var(--orange);
    color: #111;
    border-radius: 3px;
    letter-spacing: 0;
}
@media (max-width: 800px) {
    .ad-band-inner {
        padding: 8px;
        min-height: 50px;
    }
    .ad-band-home_mid,
    .ad-band-home_low,
    .ad-band-list_mid {
        margin: 0 0 16px;
    }
    .ad-box {
        margin: 0 0 12px;
        padding: 8px;
    }
    .site-foot {
        text-align: center;
        background: #000;
    }
    .site-foot .foot-logo {
        justify-content: center;
        margin: 0 auto;
    }
    .foot-inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px 16px 32px;
        justify-items: center;
    }
    .foot-brand {
        align-items: center;
        gap: 12px;
    }
    .foot-col h3 { display: none; }
    .foot-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px 18px;
    }
    .foot-nav a {
        font-size: 13px;
        font-weight: 700;
    }
    .foot-badge {
        justify-content: center;
    }
    .foot-copy p {
        margin: 0 auto 8px;
        max-width: 640px;
        font-size: 12px;
        color: #777;
    }
}

.gate-legal {
    color: #999;
    font-size: 12px;
    line-height: 1.55;
    margin: 16px 0 0;
}
.gate-legal a {
    color: #fff;
    text-decoration: underline;
}
.gate-legal a:hover { color: var(--orange); }

.auth-form .auth-agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0 0;
    font-weight: 400;
    color: #bbb;
    line-height: 1.45;
    cursor: pointer;
}
.auth-form .auth-agree input {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--orange);
}
.auth-form .auth-agree a {
    color: var(--orange);
    text-decoration: underline;
}

.legal-bare-body {
    min-height: 100vh;
    background:
        radial-gradient(900px 420px at 50% -180px, color-mix(in srgb, var(--orange) 12%, transparent), transparent 70%),
        #000;
    color: #fff;
}
.legal-bare-top {
    width: min(880px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.legal-bare-enter {
    padding: 8px 14px;
    font-size: 12px;
}
.legal-bare-wrap {
    width: min(880px, calc(100% - 32px));
    margin: 0 auto 40px;
    padding: 8px 0 28px;
}
.legal-bare-foot {
    text-align: center;
    color: #666;
    font-size: 12px;
    padding: 0 16px 36px;
}

.legal-page {
    max-width: 860px;
    margin: 0 auto 36px;
}
.legal-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
}
.legal-tab {
    padding: 8px 12px;
    border: 1px solid #2a2a2a;
    background: #111;
    color: #ccc;
    font-size: 13px;
    font-weight: 700;
}
.legal-tab:hover { color: #fff; border-color: #444; }
.legal-tab.is-on {
    color: #111;
    background: var(--orange);
    border-color: var(--orange);
}
.legal-head { margin: 0 0 18px; }
.legal-head h1 { margin: 6px 0 0; font-size: 28px; }
.legal-sec {
    margin: 0 0 22px;
    padding: 0 0 18px;
    border-bottom: 1px solid #1c1c1c;
}
.legal-sec:last-child { border-bottom: 0; padding-bottom: 0; }
.legal-sec h2 {
    margin: 0 0 10px;
    font-size: 17px;
    color: #fff;
}
.legal-sec h3 {
    margin: 16px 0 8px;
    font-size: 14px;
    color: #eee;
}
.legal-sec p,
.legal-sec li {
    color: #c8c8c8;
    font-size: 14px;
    line-height: 1.65;
}
.legal-sec ul { margin: 0 0 12px; padding-left: 18px; }
.legal-sec a { color: var(--orange); text-decoration: underline; }
.legal-lead { font-size: 15px !important; color: #ddd !important; }
.legal-box {
    margin: 12px 0;
    padding: 14px 16px;
    background: #111;
    border: 1px solid #2a2a2a;
}
.legal-box p { margin: 0; color: #ddd; }

.law-links {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}
.law-link {
    display: grid;
    grid-template-columns: 34px 1fr 18px;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    background: #111;
    border: 1px solid #242424;
    text-decoration: none !important;
    color: inherit;
}
.law-link:hover {
    border-color: var(--orange);
    background: #161016;
}
.law-link-ico,
.law-link-go {
    display: grid;
    place-items: center;
    color: var(--orange);
}
.law-link strong {
    display: block;
    color: #fff;
    font-size: 14px;
}
.law-link em {
    display: block;
    margin-top: 2px;
    color: #888;
    font-style: normal;
    font-size: 12px;
    line-height: 1.4;
}

.law-notice { margin: 0 0 40px; }
.law-banner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 18px;
    margin-bottom: 18px;
    background: #14080e;
    border: 1px solid color-mix(in srgb, var(--orange) 45%, #2a2a2a);
}
.law-banner-ico {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: #111;
    font-size: 20px;
}
.law-banner h1 { margin: 4px 0 8px; font-size: 26px; }
.law-banner p { margin: 0; color: #ccc; font-size: 14px; line-height: 1.55; }
.law-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.law-card,
.law-statute,
.law-sec {
    padding: 18px;
    background: #111;
    border: 1px solid #222;
    margin-bottom: 12px;
}
.law-card h2,
.law-statute h2,
.law-sec h2 {
    margin: 0 0 10px;
    font-size: 16px;
}
.law-card p,
.law-statute p,
.law-statute li {
    color: #c8c8c8;
    font-size: 14px;
    line-height: 1.65;
}
.law-statute h3 {
    margin: 18px 0 8px;
    font-size: 14px;
    color: #fff;
}
.law-statute blockquote {
    margin: 0 0 12px;
    padding: 12px 14px;
    border-left: 3px solid var(--orange);
    background: #0c0c0c;
    color: #ddd;
    font-size: 13px;
    line-height: 1.65;
}
.law-statute blockquote p { margin: 0 0 8px; color: #ddd; font-size: 13px; }
.law-statute blockquote p:last-child { margin: 0; }
.law-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.law-actions .btn { padding: 10px 16px; font-size: 13px; }

@media (max-width: 700px) {
    .law-grid { grid-template-columns: 1fr; }
    .legal-bare-top { flex-wrap: wrap; }
    .law-banner { flex-direction: column; }
    .legal-head h1 { font-size: 22px; }
    .law-banner h1 { font-size: 22px; }
}
