body {
    background-color: #141414;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.logo {
    color: #e50914;
    font-size: 24px;
    font-weight: bold;
}
.nav-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 15px;
    font-size: 14px;
}
.hero {
    background: linear-gradient(to top, #141414, transparent), 
                url('https://picsum.photos/id/1062/1200/400') center/cover;
    height: 250px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}
.hero h1 {
    font-size: 28px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.section-title {
    font-size: 18px;
    margin: 20px 0 10px 0;
    color: #e5e5e5;
}
.movie-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 15px 5px;
}
.movie-card {
    position: relative;
    flex: 0 0 160px;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.movie-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}
.movie-card:hover {
    transform: scale(1.15);
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.2);
    z-index: 10;
}
picsum.photos