*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#111;
color:#fff;
}

header{
background:#1b1b1b;
padding:15px;
position:sticky;
top:0;
z-index:1000;
}

.top{
display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:15px;
}

.menu{
font-size:28px;
cursor:pointer;
}

.logo{
font-size:28px;
font-weight:700;
color:#00d8ff;
}

.search{
display:flex;
align-items:center;
background:#2b2b2b;
padding:12px;
border-radius:15px;
}

.search i{
margin-right:10px;
color:#bbb;
}

.search input{
width:100%;
background:none;
border:none;
outline:none;
color:#fff;
font-size:16px;
}

#banner{
height:420px;
background-size:cover;
background-position:center;
display:flex;
align-items:flex-end;
}

.overlay{
width:100%;
padding:25px;
background:linear-gradient(transparent,#111);
}

.overlay h1{
font-size:32px;
margin-bottom:10px;
}

.overlay p{
color:#ddd;
margin-bottom:15px;
display:-webkit-box;
-webkit-line-clamp:3;
-webkit-box-orient:vertical;
overflow:hidden;
}

#watchBtn{
background:#00d8ff;
border:none;
padding:12px 25px;
border-radius:30px;
font-size:16px;
font-weight:bold;
cursor:pointer;
}

.title{
font-size:24px;
font-weight:700;
padding:20px 15px 10px;
}

.row{
display:flex;
overflow-x:auto;
gap:15px;
padding:0 15px 20px;
scrollbar-width:none;
}

.row::-webkit-scrollbar{
display:none;
}

.card{
min-width:160px;
background:#1e1e1e;
border-radius:12px;
overflow:hidden;
transition:.3s;
}

.card:hover{
transform:scale(1.05);
}

.card img{
width:100%;
height:240px;
object-fit:cover;
}

.info{
padding:10px;
}

.info h3{
font-size:15px;
margin-bottom:8px;
}

.rating{
color:gold;
font-weight:bold;
}

@media(max-width:768px){

.logo{
font-size:24px;
}

#banner{
height:330px;
}

.overlay h1{
font-size:25px;
}

.card{
min-width:140px;
}

.card img{
height:210px;
}

}
.sidebar{
    position:fixed;
    top:0;
    left:-260px;
    width:250px;
    height:100%;
    background:#1b1b1b;
    padding:70px 20px;
    transition:.3s;
    z-index:9999;
}

.sidebar.active{
    left:0;
}

.sidebar a{
    display:block;
    color:#fff;
    text-decoration:none;
    padding:15px 0;
    border-bottom:1px solid #333;
}

.menu{
    cursor:pointer;
}
.sidebar{
position:fixed;
left:-280px;
top:0;
width:260px;
height:100%;
background:#181818;
transition:.35s;
z-index:1001;
padding:20px;
box-shadow:4px 0 20px rgba(0,0,0,.5);
}

.sidebar.active{
left:0;
}

.sidebar h2{
margin-bottom:25px;
color:#00d8ff;
}

.sidebar a{
display:block;
padding:15px;
margin:8px 0;
border-radius:10px;
color:white;
text-decoration:none;
transition:.3s;
}

.sidebar a:hover{
background:#00d8ff;
color:black;
}

#overlay{
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.6);
display:none;
z-index:1000;
}

#overlay.active{
display:block;
}
