body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: white;
}

header {
    background-color: black;
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: red;
}

header nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.banner {
    background: url("../images/banner.jpg") center center/cover no-repeat;
    height: 200px;
    display: flex;
    align-items: flex-end;
    padding: 20px 30px;
}

.banner h1 {
    font-size: 32px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 5px;
}

.movie-section {
    padding: 20px 30px;
}

.movie-section h2 {
    margin-bottom: 10px;
    color: #ccc;
}

.movie-row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
}

.movie-row img {
    width: 130px;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.movie-row img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}
