body{margin:0;background:#141414;color:#fff;font-family:Segoe UI;}
.navbar{position:fixed;width:100%;padding:20px 40px;display:flex;justify-content:space-between;background:linear-gradient(to bottom,rgba(0,0,0,0.9),transparent);}
.logo{color:#e50914;font-size:28px;font-weight:bold;}
.hero{height:90vh;background-size:cover;display:flex;align-items:flex-end;}
.hero-content{padding:60px;max-width:500px;}
.btn-play{background:#e50914;padding:12px 25px;color:#fff;text-decoration:none;border-radius:5px;}
.section-title{margin:40px 0 10px 40px;}
.slider{display:flex;gap:12px;padding:0 40px;overflow-x:auto;}
.card{min-width:200px;border-radius:10px;overflow:hidden;position:relative;transition:0.3s;}
.card img{width:100%;}
.card:hover{transform:scale(1.15);z-index:20;}
.like-btn{position:absolute;bottom:10px;left:10px;background:rgba(0,0,0,0.7);padding:5px;border-radius:5px;color:#fff;text-decoration:none;}

/* LOGIN PAGE */
.login-page{
height:100vh;
background:url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?q=80&w=1974&auto=format&fit=crop') center/cover;
position:relative;
display:flex;
justify-content:center;
align-items:center;
}

/* OVERLAY */
.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.75);
}

/* LOGIN BOX */
.login-box{
position:relative;
width:350px;
padding:40px;
background:rgba(0,0,0,0.85);
border-radius:12px;
z-index:2;
animation:fadeIn 0.5s ease;
}

/* LOGO */
.login-box .logo{
color:#e50914;
font-size:42px;
margin-bottom:10px;
text-align:center;
}

/* SUBTITLE */
.subtitle{
text-align:center;
color:#aaa;
margin-bottom:25px;
}

/* INPUT */
.login-box input{
width:100%;
padding:14px;
margin-bottom:15px;
border:none;
border-radius:6px;
background:#222;
color:white;
}

/* BUTTON */
.login-box button{
width:100%;
padding:14px;
background:#e50914;
border:none;
border-radius:6px;
color:white;
font-size:16px;
font-weight:bold;
cursor:pointer;
}

/* REGISTER */
.register-text{
margin-top:20px;
text-align:center;
color:#aaa;
}

.register-text a{
color:white;
}

/* ERROR */
.error{
background:red;
padding:10px;
margin-bottom:15px;
border-radius:5px;
}

/* ANIMATION */
@keyframes fadeIn{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}
/* LOGIN PAGE FIX */
.login-page{
height:100vh;
background:url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?q=80&w=1974&auto=format&fit=crop') center/cover;
position:relative;
display:flex;
justify-content:center;
align-items:center;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.75);
}

.login-box{
position:relative;
width:350px;
padding:40px;
background:rgba(0,0,0,0.85);
border-radius:12px;
z-index:2;
animation:fadeIn 0.5s ease;
}

.login-box .logo{
color:#e50914;
font-size:42px;
text-align:center;
}

.subtitle{
text-align:center;
color:#aaa;
margin-bottom:25px;
}

.login-box input{
width:100%;
padding:14px;
margin-bottom:15px;
border:none;
border-radius:6px;
background:#222;
color:white;
}

.login-box button{
width:100%;
padding:14px;
background:#e50914;
border:none;
border-radius:6px;
color:white;
font-size:16px;
font-weight:bold;
cursor:pointer;
}

.register-text{
margin-top:20px;
text-align:center;
color:#aaa;
}

.register-text a{
color:white;
}

.error{
background:red;
padding:10px;
margin-bottom:15px;
border-radius:5px;
}

@keyframes fadeIn{
from{opacity:0; transform:translateY(20px);}
to{opacity:1; transform:translateY(0);}
}
/* GLOBAL THEME */
body{
    margin:0;
    background:#141414;
    color:#fff;
    font-family:'Segoe UI', sans-serif;
}

/* CONTAINER CENTER */
.center-box{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

/* CARD */
.card-ui{
    background:#1c1c1c;
    padding:30px;
    border-radius:12px;
    width:350px;
    box-shadow:0 0 20px rgba(0,0,0,0.6);
}

/* INPUT */
.input{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:none;
    border-radius:6px;
    background:#222;
    color:white;
}

/* BUTTON */
.btn{
    width:100%;
    padding:12px;
    background:#e50914;
    border:none;
    border-radius:6px;
    color:white;
    font-weight:bold;
    cursor:pointer;
}

.btn:hover{
    background:#ff1a1a;
}

/* TITLE */
.title{
    text-align:center;
    color:#e50914;
    font-size:32px;
    margin-bottom:10px;
}

/* SUB */
.sub{
    text-align:center;
    color:#aaa;
    margin-bottom:20px;
}

/* =========================
ADMIN LOGIN NETFLIX UI
========================= */

.admin-login-page{
display:flex;
height:100vh;
background:#141414;
overflow:hidden;
}

/* LEFT SIDE */
.admin-left{
flex:1;
position:relative;
background:url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?q=80&w=1974&auto=format&fit=crop') center/cover;
display:flex;
justify-content:center;
align-items:center;
}

/* OVERLAY */
.admin-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
backdrop-filter:blur(2px);
}

/* BRAND */
.admin-brand{
position:relative;
z-index:2;
text-align:center;
padding:40px;
}

.admin-brand h1{
font-size:60px;
color:#e50914;
margin:0;
letter-spacing:2px;
}

.admin-brand p{
color:#ddd;
font-size:18px;
margin-top:10px;
}

/* RIGHT SIDE */
.admin-right{
width:420px;
display:flex;
justify-content:center;
align-items:center;
background:#111;
}

/* LOGIN BOX */
.admin-login-box{
width:320px;
animation:fadeAdmin 0.5s ease;
}

.admin-login-box h2{
font-size:34px;
margin-bottom:5px;
}

.admin-sub{
color:#888;
margin-bottom:25px;
}

/* INPUT */
.admin-login-box input{
width:100%;
padding:14px;
margin-bottom:15px;
border:none;
border-radius:8px;
background:#1f1f1f;
color:white;
font-size:15px;
}

/* BUTTON */
.admin-login-box button{
width:100%;
padding:14px;
border:none;
border-radius:8px;
background:#e50914;
color:white;
font-size:16px;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.admin-login-box button:hover{
background:#ff1f1f;
transform:translateY(-2px);
}

/* ERROR */
.error{
background:#ff2b2b;
padding:12px;
border-radius:6px;
margin-bottom:15px;
}

/* ANIMATION */
@keyframes fadeAdmin{
from{
opacity:0;
transform:translateX(20px);
}
to{
opacity:1;
transform:translateX(0);
}
}

/* MOBILE */
@media(max-width:900px){

.admin-left{
display:none;
}

.admin-right{
width:100%;
}

}
/* PLAYER PAGE */
.player-container{
max-width:1000px;
margin:50px auto;
position:relative;
}

.player-container video,
.player-container iframe{
width:100%;
height:500px;
border-radius:10px;
background:#000;
}

/* TITLE */
.player-title{
text-align:center;
font-size:28px;
margin-top:20px;
}

/* SKIP BUTTON */
.skip-btn{
position:absolute;
bottom:20px;
right:20px;
padding:10px 15px;
background:#e50914;
color:white;
border:none;
border-radius:5px;
display:none;
cursor:pointer;
}
/* ===== PLAYER NETFLIX STYLE ===== */

.player-page{
position:relative;
height:100vh;
color:white;
overflow:hidden;
}

/* BACKGROUND */
.player-bg{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
filter:blur(20px) brightness(0.4);
transform:scale(1.1);
}

/* DARK OVERLAY */
.player-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to top, #000 30%, transparent);
}

/* CONTENT */
.player-content{
position:relative;
z-index:2;
padding:50px;
}

/* TITLE */
.player-title{
font-size:40px;
margin-bottom:20px;
}

/* PLAYER BOX */
.player-box{
max-width:1000px;
margin:auto;
position:relative;
}

/* VIDEO / IFRAME */
.player-box video,
.player-box iframe{
width:100%;
height:500px;
border-radius:12px;
background:#000;
}

/* SKIP BUTTON */
.skip-btn{
position:absolute;
bottom:20px;
right:20px;
padding:10px 15px;
background:#e50914;
border:none;
color:white;
border-radius:5px;
display:none;
cursor:pointer;
}

/* HOVER EFFECT */
.player-box:hover{
transform:scale(1.01);
transition:0.3s;
}