@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

:root {
    --bg:        #0a0a0a;
    --bg2:       #111111;
    --bg3:       #1a1a1a;
    --border:    #2a2a2a;
    --red:       #E63030;
    --red-dark:  #b82020;
    --gold:      #D4A017;
    --text:      #f0f0f0;
    --muted:     #888888;
    --green:     #22c55e;
    --blue:      #3b82f6;
    --purple:    #a855f7;
    --tg:        #2CA5E0;
    --radius:    8px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
}

/* ─── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ─── AGE GATE ──────────────────────────────────────── */
#age-gate {
    position: fixed; inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.age-modal {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    max-width: 420px;
    width: 100%;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
}
.age-modal .age-logo {
    width: 56px; height: 56px;
    background: var(--red);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem; font-weight: 800;
    color: #fff;
    margin: 0 auto 1rem;
}
.age-modal h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem; font-weight: 800;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.age-modal h1 span { color: var(--red); }
.age-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 2px 12px;
    border-radius: 4px;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.age-modal p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.check-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    cursor: pointer;
}
.check-label input { accent-color: var(--red); width: 16px; height: 16px; }
.btn-enter {
    display: block; width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 0.85rem;
    border-radius: var(--radius);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    margin-bottom: 0.75rem;
}
.btn-enter:hover { background: var(--red-dark); }
.btn-leave {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.5rem;
}
.btn-leave:hover { color: var(--text); }

/* ─── HEADER ────────────────────────────────────────── */
header {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky; top: 0; z-index: 100;
}
.logo {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem; font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.5px;
}
.logo-box {
    width: 32px; height: 32px;
    background: var(--red);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; font-weight: 800; color: #fff;
    flex-shrink: 0;
}
nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
    color: var(--muted);
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.15s, background 0.15s;
}
.nav-link:hover, .nav-link.active {
    color: var(--text);
    background: var(--bg3);
}
.nav-admin {
    color: var(--red);
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--red);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
    transition: background 0.15s;
}
.nav-admin:hover { background: var(--red); color: #fff; }
.menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed; top: 60px; left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    z-index: 99;
    flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    color: var(--text);
    text-decoration: none;
    padding: 0.9rem 5%;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
}
.mobile-nav a:hover { background: var(--bg3); }

/* ─── MAIN ──────────────────────────────────────────── */
main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2rem 1.25rem 4rem;
}
section { margin-bottom: 3rem; }

/* Section Label */
.section-label {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem; font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.2rem;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot.red    { background: var(--red); }
.dot.gold   { background: var(--gold); }
.dot.green  { background: var(--green); }
.dot.blue   { background: var(--blue); }
.dot.purple { background: var(--purple); }
.label-badge {
    background: var(--gold);
    color: #000;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 700;
}

/* ─── HERO ──────────────────────────────────────────── */
.hero-block {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.hero-video {
    position: relative;
    aspect-ratio: 16/8;
    background: var(--bg3);
    overflow: hidden;
    cursor: pointer;
}
.hero-thumb {
    width: 100%; height: 100%;
    position: relative;
}
.hero-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
}
.hero-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #1a0a0a 0%, #0a0a0a 100%);
}
.play-btn {
    width: 72px; height: 72px;
    background: rgba(230,48,48,0.15);
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--red);
}
.hero-placeholder p { color: var(--muted); font-size: 0.9rem; }
.hero-play-over {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.3);
    cursor: pointer;
}
.hero-play-over:hover { background: rgba(0,0,0,0.5); }
.hero-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 1.5rem 1.5rem 0.75rem;
    pointer-events: none;
}
.vid-tag {
    background: var(--red);
    color: #fff;
    font-size: 0.7rem; font-weight: 700;
    padding: 2px 8px; border-radius: 4px;
    letter-spacing: 1px;
    display: inline-block; margin-bottom: 0.4rem;
}
.hero-overlay h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem; font-weight: 700;
    color: #fff; line-height: 1.2;
}
.tg-cta {
    background: var(--tg);
    padding: 0.85rem 1.25rem;
    display: flex; align-items: center;
    justify-content: space-between; gap: 1rem;
    flex-wrap: wrap;
}
.tg-text { display: flex; align-items: center; gap: 0.6rem; }
.tg-text p { color: #fff; font-size: 0.9rem; }
.tg-btn {
    background: #fff;
    color: var(--tg);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700; font-size: 0.85rem;
    white-space: nowrap;
    transition: opacity 0.15s;
}
.tg-btn:hover { opacity: 0.85; }

/* ─── AD SLOT ───────────────────────────────────────── */
.ad-slot {
    background: var(--bg3);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 2rem 0;
    text-transform: uppercase;
}

/* ─── VIDEO GRID ────────────────────────────────────── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.25rem;
}
.vcard {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.15s;
}
.vcard:hover { border-color: var(--red); }
.vthumb {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--bg3);
    overflow: hidden;
}
.vthumb img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.vplay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: rgba(255,255,255,0);
    background: rgba(0,0,0,0);
    transition: background 0.15s, color 0.15s;
}
.vcard:hover .vplay { color: rgba(255,255,255,0.9); background: rgba(0,0,0,0.45); }
.vdur {
    position: absolute; bottom: 6px; right: 8px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.72rem; font-weight: 600;
    padding: 2px 6px; border-radius: 4px;
}
.vlock {
    position: absolute; top: 6px; left: 8px;
    background: rgba(212,160,23,0.9);
    color: #000;
    font-size: 0.68rem; font-weight: 700;
    padding: 2px 7px; border-radius: 4px;
    letter-spacing: 0.5px;
}
.vinfo { padding: 0.75rem 1rem; }
.vtitle {
    font-size: 0.92rem; font-weight: 600;
    color: var(--text);
    margin-bottom: 0.35rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vcat {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 2px 8px; border-radius: 3px;
}
.vcat.vip      { background: rgba(212,160,23,0.15); color: var(--gold); }
.vcat.free     { background: rgba(34,197,94,0.15); color: var(--green); }
.vcat.teaser   { background: rgba(59,130,246,0.15); color: var(--blue); }
.vcat.upcoming { background: rgba(168,85,247,0.15); color: var(--purple); }

.empty-state { grid-column: 1/-1; text-align: center; padding: 2.5rem; color: var(--muted); }
.empty-state a { color: var(--red); text-decoration: none; }

/* Pagination */
.pagination {
    display: flex; align-items: center; gap: 0.5rem;
    margin-top: 1.5rem; flex-wrap: wrap;
}
.pagination button {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: 'Barlow', sans-serif;
}
.pagination button:hover { border-color: var(--red); }
.pagination button.active { background: var(--red); border-color: var(--red); }
.pagination button:disabled { opacity: 0.35; cursor: default; }

/* ─── DM CTA ────────────────────────────────────────── */
.dm-cta {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--tg);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    margin: 2.5rem 0;
}
.dm-inner h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem; font-weight: 800;
    margin-bottom: 0.4rem;
}
.dm-inner p { color: var(--muted); margin-bottom: 1.2rem; font-size: 0.9rem; }
.dm-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--tg);
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    font-weight: 700; font-size: 0.95rem;
    letter-spacing: 0.5px;
}
.dm-btn:hover { opacity: 0.88; }

/* ─── FOOTER ────────────────────────────────────────── */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 3rem 5% 1.5rem;
    margin-top: 4rem;
}
.footer-inner {
    max-width: 1180px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}
.footer-brand p { color: var(--muted); font-size: 0.85rem; margin-top: 0.75rem; max-width: 280px; }
.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}
.footer-col a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 0.25rem 0;
}
.footer-col a:hover { color: var(--text); }
.disclaimer {
    max-width: 1180px; margin: 0 auto;
    background: var(--bg3);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.6;
}
.footer-bottom {
    max-width: 1180px; margin: 1.5rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem; color: var(--muted);
}

/* ─── LIGHTBOX ──────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9000;
    align-items: center; justify-content: center;
    padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-inner {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 860px; width: 100%;
    overflow: hidden;
    position: relative;
}
.lb-close {
    position: absolute; top: 0.6rem; right: 0.6rem;
    background: rgba(0,0,0,0.5);
    border: none; color: #fff;
    width: 32px; height: 32px;
    border-radius: 50%; cursor: pointer;
    font-size: 0.95rem; z-index: 10;
}
.lb-video video {
    width: 100%; aspect-ratio: 16/9;
    display: block; background: #000;
}
.lb-info { padding: 1.25rem 1.5rem; }
.lb-info h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem; }
.lb-info p { color: var(--muted); font-size: 0.85rem; margin-bottom: 1rem; }
.lb-tg-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--tg);
    color: #fff; text-decoration: none;
    padding: 0.55rem 1.2rem;
    border-radius: 6px; font-size: 0.85rem; font-weight: 600;
}
.lb-tg-btn:hover { opacity: 0.85; }

/* ─── FILTER TABS (All Videos section) ─────────────── */
.filter-row {
    display: flex; gap: .4rem; flex-wrap: wrap;
}
.ftab {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: .35rem .85rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-size: .82rem; font-weight: 600;
    letter-spacing: .5px;
}
.ftab:hover { color: var(--text); border-color: var(--muted); }
.ftab.active { background: var(--red); border-color: var(--red); color: #fff; }

/* Pagination dots */
.pg-dots {
    color: var(--muted);
    padding: 0 .2rem;
    line-height: 1;
    align-self: center;
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 768px) {
    header { padding: 0 4%; }
    nav { display: none; }
    .menu-btn { display: block; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .video-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
    .tg-cta { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .video-grid { grid-template-columns: 1fr 1fr; }
    main { padding: 1.5rem 1rem 3rem; }
}

/* Python project: watch/admin pages */
.watch-wrap{max-width:1180px;margin:0 auto;padding:1.5rem 1.25rem 4rem;display:grid;grid-template-columns:1fr 340px;gap:2rem;align-items:start}.back-btn{display:inline-flex;align-items:center;gap:.5rem;color:var(--muted);text-decoration:none;font-size:.9rem;font-weight:600;padding:.45rem .9rem;border:1px solid var(--border);border-radius:6px;background:var(--bg2);margin-bottom:1.25rem}.back-btn:hover{color:var(--text);border-color:var(--muted)}.player-box{background:#000;border-radius:var(--radius);overflow:hidden;border:1px solid var(--border)}.player-box video{width:100%;aspect-ratio:16/9;display:block;background:#000}.player-thumb{width:100%;aspect-ratio:16/9;position:relative;cursor:pointer;background:#000;display:flex;align-items:center;justify-content:center;overflow:hidden}.player-thumb img{width:100%;height:100%;object-fit:cover;filter:brightness(.65);display:block}.player-thumb-btn{position:absolute;width:80px;height:80px;background:rgba(230,48,48,.85);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:2rem;color:#fff;border:3px solid rgba(255,255,255,.3)}.player-thumb-label{position:absolute;bottom:1rem;left:1rem;font-family:'Barlow Condensed',sans-serif;font-size:1.4rem;font-weight:700;color:#fff;text-shadow:0 2px 8px rgba(0,0,0,.8)}.video-meta{padding:1.25rem 0 0}.video-meta-top{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;flex-wrap:wrap;margin-bottom:.75rem}.video-meta h1{font-family:'Barlow Condensed',sans-serif;font-size:1.7rem;font-weight:800;line-height:1.2;flex:1}.video-date{color:var(--muted);font-size:.82rem;white-space:nowrap}.video-tags{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:1rem}.video-desc{color:var(--muted);font-size:.9rem;line-height:1.7;margin-bottom:1.25rem;border-top:1px solid var(--border);padding-top:1rem}.no-video-notice{background:var(--bg3);border:1px dashed var(--border);border-radius:var(--radius);padding:3rem 2rem;text-align:center}.no-video-notice p{color:var(--muted);font-size:.9rem;margin-top:.5rem}.no-video-notice h3{font-family:'Barlow Condensed',sans-serif;font-size:1.4rem;font-weight:700}.inline-tg{background:var(--bg2);border:1px solid var(--border);border-left:3px solid var(--tg);border-radius:var(--radius);padding:1.1rem 1.25rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;margin-bottom:1.25rem}.inline-tg p{font-size:.9rem;color:var(--muted)}.inline-tg p strong{color:var(--text)}.inline-tg-btn{background:var(--tg);color:#fff;padding:.55rem 1.2rem;border-radius:6px;text-decoration:none;font-weight:700;font-size:.85rem;white-space:nowrap}.inline-tg-btn:hover{opacity:.85}.watch-sidebar{position:sticky;top:80px}.sidebar-title{font-family:'Barlow Condensed',sans-serif;font-size:.9rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:var(--muted);margin-bottom:1rem;display:flex;align-items:center;gap:.5rem}.sidebar-list{display:flex;flex-direction:column;gap:.75rem}.scard{display:flex;gap:.85rem;background:var(--bg2);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;cursor:pointer;text-decoration:none;color:var(--text);transition:border-color .15s}.scard:hover{border-color:var(--red)}.scard-thumb{width:120px;min-width:120px;aspect-ratio:16/9;background:var(--bg3);overflow:hidden;position:relative}.scard-thumb img{width:100%;height:100%;object-fit:cover;display:block}.scard-play{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0);font-size:1.2rem}.scard:hover .scard-play{color:rgba(255,255,255,.85);background:rgba(0,0,0,.4)}.scard-info{padding:.6rem .75rem .6rem 0;flex:1;min-width:0;display:flex;flex-direction:column;justify-content:center;gap:.25rem}.scard-title{font-size:.85rem;font-weight:600;line-height:1.3;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.scard-meta{font-size:.72rem;color:var(--muted)}.below-similar{display:none}.not-found{text-align:center;padding:5rem 2rem}.not-found h2{font-family:'Barlow Condensed',sans-serif;font-size:2rem;font-weight:800;margin-bottom:.5rem}.not-found p{color:var(--muted);margin-bottom:1.5rem}.admin-wrap{max-width:1000px;margin:0 auto;padding:2rem 1.25rem 5rem}.admin-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:2rem;flex-wrap:wrap;gap:1rem}.admin-header h1{font-family:'Barlow Condensed',sans-serif;font-size:2rem;font-weight:800}.admin-header h1 span{color:var(--red)}#admin-lock{background:var(--bg);display:flex;align-items:center;justify-content:center;padding:2rem}.lock-box{background:var(--bg2);border:1px solid var(--border);border-top:3px solid var(--red);padding:2.5rem 2rem;border-radius:var(--radius);max-width:380px;width:100%;text-align:center}.lock-box h2{font-family:'Barlow Condensed',sans-serif;font-size:1.8rem;font-weight:800;margin-bottom:.25rem}.lock-box p{color:var(--muted);font-size:.9rem;margin-bottom:1.5rem}.card{background:var(--bg2);border:1px solid var(--border);border-radius:var(--radius);padding:1.75rem;margin-bottom:1.5rem}.card-title{font-family:'Barlow Condensed',sans-serif;font-size:1.1rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--muted);margin-bottom:1.25rem;display:flex;align-items:center;gap:.5rem}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}.form-grid .full{grid-column:1/-1}.field{display:flex;flex-direction:column;gap:.4rem}label{font-size:.8rem;font-weight:600;text-transform:uppercase;letter-spacing:.5px;color:var(--muted)}input[type=text],input[type=password],input[type=file],select,textarea{background:var(--bg3);border:1px solid var(--border);color:var(--text);padding:.65rem .85rem;border-radius:6px;font-family:'Barlow',sans-serif;font-size:.9rem;width:100%;outline:none}input:focus,select:focus,textarea:focus{border-color:var(--red)}textarea{resize:vertical;min-height:80px}select option{background:var(--bg2)}.btn-primary{background:var(--red);color:#fff;border:none;padding:.75rem 1.75rem;border-radius:6px;font-family:'Barlow Condensed',sans-serif;font-size:1.05rem;font-weight:700;letter-spacing:1px;cursor:pointer}.btn-primary:hover{background:var(--red-dark)}.btn-secondary{background:var(--bg3);color:var(--muted);border:1px solid var(--border);padding:.55rem 1rem;border-radius:6px;font-family:'Barlow',sans-serif;font-size:.85rem;font-weight:600;cursor:pointer}.btn-secondary:hover{color:var(--text);border-color:var(--muted)}.btn-danger{background:rgba(230,48,48,.1);color:var(--red);border:1px solid rgba(230,48,48,.25);padding:.4rem .8rem;border-radius:5px;font-size:.8rem;font-weight:600;cursor:pointer}.btn-danger:hover{background:var(--red);color:#fff}.toast{background:var(--bg2);border:1px solid var(--border);border-left:3px solid var(--green);padding:1rem 1.5rem;border-radius:var(--radius);font-size:.9rem}.vlist{display:flex;flex-direction:column;gap:.75rem}.vlist-item{display:flex;align-items:center;gap:1rem;background:var(--bg3);border:1px solid var(--border);border-radius:6px;padding:.75rem 1rem}.vlist-thumb{width:80px;height:48px;border-radius:4px;background:var(--bg2);overflow:hidden;flex-shrink:0}.vlist-thumb img{width:100%;height:100%;object-fit:cover}.vlist-info{flex:1;min-width:0}.vlist-title{font-weight:600;font-size:.9rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.vlist-meta{font-size:.78rem;color:var(--muted);margin-top:2px}.vlist-actions{display:flex;gap:.5rem;flex-shrink:0}.stats-bar{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-bottom:2rem}.stat-card{background:var(--bg2);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem 1rem;text-align:center}.stat-card .stat-num{font-family:'Barlow Condensed',sans-serif;font-size:2.2rem;font-weight:800;color:var(--text);line-height:1}.stat-card .stat-label{font-size:.75rem;color:var(--muted);margin-top:.3rem;text-transform:uppercase;letter-spacing:1px}.settings-section{margin-bottom:1.5rem}.settings-section h4{font-family:'Barlow Condensed',sans-serif;font-size:.95rem;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--muted);margin-bottom:.75rem;padding-bottom:.5rem;border-bottom:1px solid var(--border)}@media(max-width:900px){.watch-wrap{grid-template-columns:1fr}.watch-sidebar{display:none}.below-similar{display:block;margin-top:2rem}}@media(max-width:600px){.video-meta h1{font-size:1.3rem}.form-grid{grid-template-columns:1fr}.stats-bar{grid-template-columns:1fr 1fr}}
