/* === PARAVIEW — THEME CARRE NOIR & BLEU === */
:root {
    --bg:        #0a0a0f;
    --bg2:       #10101a;
    --bg3:       #16162a;
    --bg4:       #1c1c35;
    --border:    #1e2040;
    --border2:   #2a2d5a;
    --blue:      #1565C0;
    --blue2:     #1976D2;
    --blue3:     #42A5F5;
    --blue-glow: rgba(21,101,192,0.35);
    --text:      #e8e8f0;
    --text2:     #8890b0;
    --text3:     #5a6080;
    --white:     #ffffff;
    --danger:    #c0392b;
    --success:   #1a7a3a;
    --radius:    0px;
    --font:      'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-mono: 'Cascadia Code', 'Consolas', monospace;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: var(--blue3); text-decoration: none; }
a:hover { color: var(--white); }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* === NAVBAR === */
.navbar {
    background: var(--bg2);
    border-bottom: 2px solid var(--blue);
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    flex-shrink: 0;
}
.brand-square {
    width: 28px;
    height: 28px;
    background: var(--blue);
    display: inline-block;
    border: 2px solid var(--blue3);
}
.brand-square.small { width: 16px; height: 16px; border-width: 1px; }
.brand-text { font-size: 20px; letter-spacing: 1px; font-weight: 300; }
.brand-text strong { font-weight: 800; color: var(--blue3); }

.nav-search { flex: 1; max-width: 400px; }
.search-form {
    display: flex;
    border: 1.5px solid var(--border2);
    background: var(--bg3);
}
.search-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 8px 12px;
    color: var(--text);
    font-size: 14px;
    outline: none;
}
.search-form input::placeholder { color: var(--text3); }
.btn-icon {
    background: var(--blue);
    border: none;
    padding: 8px 10px;
    color: var(--white);
    display: flex;
    align-items: center;
}
.btn-icon svg { width: 16px; height: 16px; }
.btn-icon:hover { background: var(--blue2); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

/* === BUTTONS === */
.btn {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    transition: background 0.15s, color 0.15s;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue2); color: var(--white); }
.btn-outline {
    background: transparent;
    color: var(--blue3);
    border: 1.5px solid var(--blue3);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-danger:hover { background: #a93226; color: var(--white); }
.btn-ghost { background: var(--bg3); color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--blue3); color: var(--blue3); }
.btn-sm { padding: 5px 12px; font-size: 12px; }

/* === PROFILE MENU === */
.profile-menu { position: relative; }
.profile-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg3);
    border: 1.5px solid var(--border2);
    color: var(--text);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
}
.profile-pill:hover { border-color: var(--blue3); }
.avatar-dot { width: 10px; height: 10px; display: inline-block; border: 1.5px solid rgba(255,255,255,0.3); }
.chevron { width: 14px; height: 14px; margin-left: 2px; }
.dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    background: var(--bg3);
    border: 1.5px solid var(--border2);
    min-width: 180px;
    display: none;
    z-index: 200;
}
.dropdown-menu.open { display: block; }
.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-size: 13px;
    border-bottom: 1px solid var(--border);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--bg4); color: var(--blue3); }
.dropdown-menu a.danger { color: #e57373; }
.dropdown-menu a.danger:hover { background: rgba(192,57,43,0.1); }
.dropdown-sep { height: 1px; background: var(--blue); margin: 2px 0; }

/* === MAIN CONTENT === */
.main-content { flex: 1; padding: 32px 24px; max-width: 1400px; width: 100%; margin: 0 auto; }

/* === HERO / FEATURED === */
.hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    border: 2px solid var(--border2);
    margin-bottom: 40px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,10,15,0.95) 0%, rgba(10,10,15,0.4) 60%, transparent 100%);
}
.hero-content {
    position: relative;
    padding: 48px 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 600px;
}
.hero-tag { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--blue3); text-transform: uppercase; margin-bottom: 12px; }
.hero-title { font-size: 38px; font-weight: 800; line-height: 1.15; margin-bottom: 12px; }
.hero-desc { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 24px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hero-actions { display: flex; gap: 12px; }

/* === SECTION TITLE === */
.section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.section-line {
    width: 4px;
    height: 24px;
    background: var(--blue);
    flex-shrink: 0;
}
.section-title { font-size: 18px; font-weight: 700; letter-spacing: 0.5px; }

/* === MOVIE GRID === */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.movie-card {
    background: var(--bg2);
    border: 1.5px solid var(--border);
    display: block;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.15s, transform 0.15s;
    position: relative;
    overflow: hidden;
}
.movie-card:hover { border-color: var(--blue3); transform: translateY(-2px); color: var(--text); }
.movie-card:hover .card-overlay { opacity: 1; }
.card-thumb {
    aspect-ratio: 2/3;
    background: var(--bg3);
    overflow: hidden;
    position: relative;
}
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg3);
    font-size: 40px;
    color: var(--border2);
}
.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,15,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.play-icon {
    width: 52px;
    height: 52px;
    background: var(--blue);
    border: 2px solid var(--blue3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-icon svg { width: 22px; height: 22px; fill: white; margin-left: 3px; }
.card-body { padding: 10px 12px; }
.card-title { font-weight: 700; font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-meta { font-size: 11px; color: var(--text3); display: flex; gap: 8px; }
.card-genre-tag {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* === FORMS === */
.form-page {
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 0;
}
.form-card {
    background: var(--bg2);
    border: 1.5px solid var(--border2);
    padding: 36px;
}
.form-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    justify-content: center;
}
.form-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 0.5px;
}
.form-group { margin-bottom: 18px; }
.form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text2);
    margin-bottom: 6px;
}
.form-input {
    width: 100%;
    background: var(--bg3);
    border: 1.5px solid var(--border2);
    color: var(--text);
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s;
}
.form-input:focus { border-color: var(--blue3); }
.form-input::placeholder { color: var(--text3); }
select.form-input { appearance: none; cursor: pointer; }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-btn { width: 100%; padding: 12px; font-size: 14px; margin-top: 8px; }
.form-link { text-align: center; font-size: 13px; color: var(--text2); margin-top: 16px; }
.form-sep { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--text3); font-size: 12px; }
.form-sep::before, .form-sep::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* === ALERTS === */
.alert {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    border-left: 3px solid;
}
.alert-error { background: rgba(192,57,43,0.12); border-color: var(--danger); color: #e57373; }
.alert-success { background: rgba(26,122,58,0.12); border-color: var(--success); color: #69d685; }
.alert-info { background: rgba(21,101,192,0.12); border-color: var(--blue); color: var(--blue3); }

/* === PROFILES PAGE === */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 40px auto;
}
.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 16px;
    background: var(--bg2);
    border: 1.5px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.15s;
}
.profile-card:hover { border-color: var(--blue3); color: var(--text); }
.profile-avatar {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: white;
    border: 2px solid rgba(255,255,255,0.15);
}
.profile-name { font-size: 14px; font-weight: 600; text-align: center; }
.profile-add {
    border-style: dashed;
    border-color: var(--border2);
    color: var(--text2);
}
.profile-add:hover { border-color: var(--blue3); color: var(--blue3); }
.profile-add .profile-avatar { background: var(--bg3); color: var(--text2); border-style: dashed; }

/* === MOVIE DETAIL / PLAYER PAGE === */
.player-section { margin-bottom: 40px; }
.player-wrap {
    position: relative;
    background: #000;
    aspect-ratio: 16/9;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border: 2px solid var(--border2);
}
.movie-detail-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 32px auto 0;
}
.movie-detail-poster {
    aspect-ratio: 2/3;
    background: var(--bg3);
    border: 1.5px solid var(--border2);
    overflow: hidden;
}
.movie-detail-poster img { width: 100%; height: 100%; object-fit: cover; }
.movie-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin: 16px 0; }
.movie-meta-item label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text3); display: block; margin-bottom: 2px; }
.movie-meta-item span { font-size: 14px; color: var(--text); }
.movie-desc { font-size: 14px; color: var(--text2); line-height: 1.8; margin: 20px 0; }
.movie-actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }

/* === ADMIN === */
.admin-grid { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.admin-nav {
    background: var(--bg2);
    border: 1.5px solid var(--border);
    padding: 16px 0;
    height: fit-content;
}
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text2);
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    border-left: 3px solid transparent;
}
.admin-nav a:last-child { border-bottom: none; }
.admin-nav a:hover, .admin-nav a.active { color: var(--blue3); border-left-color: var(--blue3); background: var(--bg3); }
.admin-content { }
.admin-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--blue);
}

/* === TABLE === */
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th {
    background: var(--bg3);
    text-align: left;
    padding: 10px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text3);
    border-bottom: 2px solid var(--blue);
}
.data-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.data-table tr:hover td { background: var(--bg3); }
.data-table .actions { display: flex; gap: 6px; }

/* === UPLOAD FORM === */
.upload-area {
    border: 2px dashed var(--border2);
    background: var(--bg3);
    padding: 32px;
    text-align: center;
    color: var(--text2);
    cursor: pointer;
    transition: border-color 0.15s;
    margin-bottom: 16px;
}
.upload-area:hover, .upload-area.drag { border-color: var(--blue3); color: var(--blue3); }
.upload-area p { margin-top: 8px; font-size: 13px; }
.upload-area input[type=file] { display: none; }
.upload-icon { font-size: 36px; line-height: 1; }

/* === STATS CARDS === */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; margin-bottom: 32px; }
.stat-card {
    background: var(--bg2);
    border: 1.5px solid var(--border2);
    padding: 20px;
    border-top: 3px solid var(--blue);
}
.stat-value { font-size: 32px; font-weight: 800; color: var(--blue3); }
.stat-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text3); margin-top: 4px; }

/* === COLOR PICKER === */
.color-options { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.color-opt { width: 32px; height: 32px; border: 2px solid transparent; cursor: pointer; }
.color-opt.selected, .color-opt:hover { border-color: white; }

/* === BADGE === */
.badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.badge-blue { background: var(--blue); color: white; }
.badge-admin { background: #d4af37; color: #000; }

/* === SEARCH PAGE === */
.search-header { margin-bottom: 28px; }
.search-query { font-size: 24px; font-weight: 800; }
.search-count { color: var(--text3); font-size: 14px; margin-top: 4px; }
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text3);
}
.empty-icon {
    width: 60px;
    height: 60px;
    background: var(--bg3);
    border: 2px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.empty-icon svg { width: 28px; height: 28px; }
.empty-state h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text2); }

/* === FOOTER === */
.site-footer {
    background: var(--bg2);
    border-top: 2px solid var(--border2);
    padding: 24px;
    margin-top: auto;
}
.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; }
.footer-copy { font-size: 12px; color: var(--text3); }

/* === PROGRESS BAR === */
.progress-wrap { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.1); }
.progress-bar { height: 100%; background: var(--blue3); }
.progress-label { font-size: 10px; color: var(--text3); margin-top: 4px; }

/* === WEBPLAYER === */
.pv-player {
    position: relative;
    background: #000;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    user-select: none;
}
.pv-player video {
    width: 100%;
    height: 100%;
    display: block;
}
.pv-player.fullscreen-mode { aspect-ratio: unset; width: 100vw; height: 100vh; position: fixed; top: 0; left: 0; z-index: 9999; }

/* Controls overlay */
.pv-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 12px 0 0;
    transition: opacity 0.25s;
    z-index: 10;
}
.pv-player.hide-controls .pv-controls { opacity: 0; }
.pv-player.hide-controls { cursor: none; }

.pv-progress-area {
    padding: 0 16px;
    margin-bottom: 10px;
    position: relative;
}
.pv-seekbar {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    outline: none;
    cursor: pointer;
    position: relative;
}
.pv-seekbar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px; height: 14px;
    background: var(--blue3);
    border: 2px solid white;
    cursor: pointer;
}
.pv-seekbar::-moz-range-thumb {
    width: 14px; height: 14px;
    background: var(--blue3);
    border: 2px solid white;
    cursor: pointer;
    border-radius: 0;
}

.pv-btn-row {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 12px 10px;
}
.pv-ctrl-btn {
    background: transparent;
    border: none;
    color: white;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.85;
    transition: opacity 0.1s;
}
.pv-ctrl-btn:hover { opacity: 1; }
.pv-ctrl-btn svg { width: 20px; height: 20px; fill: currentColor; }
.pv-ctrl-btn.icon-stroke svg { fill: none; stroke: currentColor; stroke-width: 2; }

.pv-volume-wrap { display: flex; align-items: center; gap: 6px; }
.pv-volume-bar {
    -webkit-appearance: none;
    appearance: none;
    width: 70px; height: 3px;
    background: rgba(255,255,255,0.2);
    outline: none;
    cursor: pointer;
}
.pv-volume-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px; height: 12px;
    background: white;
    cursor: pointer;
}
.pv-volume-bar::-moz-range-thumb {
    width: 12px; height: 12px;
    background: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
}

.pv-time { font-size: 12px; color: rgba(255,255,255,0.8); margin-left: 4px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.pv-spacer { flex: 1; }
.pv-speed-select {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 11px;
    padding: 3px 5px;
    cursor: pointer;
    outline: none;
}
.pv-speed-select option { background: #1a1a2e; }
.pv-subtitle-select {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 11px;
    padding: 3px 5px;
    cursor: pointer;
    outline: none;
    max-width: 110px;
}
.pv-subtitle-select option { background: #1a1a2e; }

/* Big play button overlay */
.pv-big-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    background: rgba(21,101,192,0.85);
    border: 2px solid rgba(66,165,245,0.7);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
    z-index: 5;
}
.pv-big-play.hidden { opacity: 0; pointer-events: none; }
.pv-big-play svg { width: 30px; height: 30px; fill: white; margin-left: 5px; }

/* Loading spinner */
.pv-spinner {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: var(--blue3);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
    z-index: 6;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* === GENRE FILTER === */
.genre-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.genre-chip {
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--bg3);
    border: 1.5px solid var(--border);
    color: var(--text2);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.1s;
}
.genre-chip:hover, .genre-chip.active { background: var(--blue); border-color: var(--blue); color: white; }

/* === FAVORITES ICON === */
.fav-btn {
    background: transparent;
    border: 1.5px solid var(--border2);
    color: var(--text2);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.fav-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.fav-btn.active { color: #f39c12; border-color: #f39c12; }
.fav-btn.active svg { fill: #f39c12; stroke: #f39c12; }

/* === SUBTITLE TRACK STYLE === */
::cue {
    background: rgba(0,0,0,0.75);
    color: white;
    font-size: 16px;
    font-family: var(--font);
    line-height: 1.4;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .movie-detail-grid { grid-template-columns: 1fr; }
    .admin-grid { grid-template-columns: 1fr; }
    .admin-nav { display: flex; overflow-x: auto; padding: 0; }
    .admin-nav a { border-bottom: none; border-bottom: 3px solid transparent; padding: 12px 16px; white-space: nowrap; }
    .admin-nav a.active { border-bottom-color: var(--blue3); border-left: none; }
    .hero { height: 280px; }
    .hero-title { font-size: 24px; }
    .hero-content { padding: 24px; }
}
@media (max-width: 600px) {
    .navbar { padding: 0 12px; gap: 10px; }
    .nav-search { display: none; }
    .main-content { padding: 20px 12px; }
    .movie-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }
