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

:root {
    --bg-dark: #0a0a0a;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --accent: #e50914; /* Netflix Red */
    --gold: #fbbf24;
}

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* --- SCROLLBAR HIDING (Clean UI) --- */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* --- GLASS CARDS --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    background: rgba(255, 255, 255, 0.08);
}

/* --- ULTRA PLAYER SKIN --- */
/* Center the play button and make it glow */
.video-js .vjs-big-play-button {
    background-color: rgba(229, 9, 20, 0.9) !important;
    border: none !important;
    width: 80px !important;
    height: 80px !important;
    line-height: 80px !important;
    border-radius: 50% !important;
    margin-left: -40px !important;
    margin-top: -40px !important;
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.6);
    transition: transform 0.2s;
}
.video-js:hover .vjs-big-play-button { transform: scale(1.1); }

/* Floating Glass Control Bar */
.video-js .vjs-control-bar {
    width: 90%;
    left: 5%;
    bottom: 20px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    height: 3.5em !important;
    display: flex; /* Fix alignment */
    align-items: center;
}

/* Hide extra shadows */
.vjs-text-track-display { bottom: 4em !important; }

/* Quality Selector Menu */
.vjs-quality-selector .vjs-menu-button { margin-top: 0; }
.vjs-menu-content {
    background: rgba(10, 10, 10, 0.95) !important;
    border: 1px solid #333;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
}
