body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#000;
color:white;
}

header{
display:flex;
align-items:center;
justify-content:space-between;
height:70px;
padding:0 30px;
background:black;
}

.logo img{
height:42px;
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-size:14px;
letter-spacing:1px;
}

nav a:hover{
color:#ccc;
}

.hero{
position:relative;
}

.hero-img{
width:100%;
display:block;
}

.hero-overlay{
position:absolute;
bottom:60px;
left:60px;
max-width:500px;
}

.hero-overlay h1{
font-size:48px;
margin:0;
}

.hero-overlay p{
margin-top:10px;
font-size:18px;
color:#ddd;
}

.watch-btn{
margin-top:20px;
padding:12px 25px;
background:#e50914;
color:white;
border:none;
cursor:pointer;
}

.film-row{
padding:40px 60px;
}

.poster-row{
display:flex;
gap:15px;
}

.poster{
width:180px;
height:260px;
background:#222;
border-radius:6px;
overflow:hidden;
}

.poster img{
width:100%;
height:100%;
object-fit:cover;
}

.poster:hover{
transform:scale(1.08);
transition:0.2s;
}