/* Reset & basic layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #141414;
    color: #fff;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    background: rgba(20,20,20,0.9);
    z-index: 10;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-right: 30px;
}
.nav a {
    margin-right: 20px;
    text-decoration: none;
    color: #e5e5e5;
    font-weight: 500;
}
.nav a:hover {
    color: #fff;
}

/* Hero Banner */
.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}
.hero-content {
    position: absolute;
    bottom: 30px;
    left: 40px;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.hero-content p {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 20px;
}
.btn-play {
    background: #e50914;
    border: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
}
.btn-play:hover {
    background: #f40612;
}

/* Movie rows */
.movie-rows {
    padding: 20px 40px;
}
.movie-rows h2 {
    margin: 20px 0 10px;
    font-size: 1.5rem;
}
.row {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
}
.thumb {
    flex: 0 0 auto;
    width: 150px;
    transition: transform 0.3s;
}
.thumb img {
    width: 100%;
    border-radius: 4px;
}
.thumb:hover {
    transform: scale(1.08);
}

/* Scrollbar styling */
.row::-webkit-scrollbar {
    height: 8px;
}
.row::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .thumb {
        width: 120px;
    }
}