* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #141414;
    color: white;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 2em;
    background-color: #000000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: red;
}

.nav-links a {
    color: white;
    margin-left: 1em;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #b3b3b3;
}

.banner {
    background: url(../images/movie-banner.jpg) no-repeat center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    padding: 2em;
    box-shadow: inset 0 -100px 150px #141414;
}

.banner h1 {
    font-size: 2.5em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section {
    padding: 1.5em 2em;
}

.section h2 {
    margin-bottom: 0.5em;
}

.row {
    display: flex;
    overflow-x: auto;
    gap: 1em;
    padding: 10px 0;
}

.movie {
    min-width: 200px;
    height: 300px;
    background-color: gray;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    transition: transform 0.3s;
    cursor: pointer;
}

.movie:hover {
    transform: scale(1.05);
}