body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: white;
}

.header {
    background: linear-gradient(to bottom, #444, #111);
    padding: 20px;
    position: relative;
}

.logo {
    color: red;
    font-size: 24px;
    font-weight: bold;
}

.nav {
    position: absolute;
    right: 20px;
    top: 20px;
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav li {
    cursor: pointer;
}

.banner h1 {
    margin-top: 50px;
    font-size: 36px;
    font-weight: bold;
}

.section {
    margin: 30px;
}

.section h2 {
    margin-bottom: 15px;
}

.movies {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.movie {
    width: 140px;
    height: 210px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.movie img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.movie:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.hot::before {
    content: "HOT";
    position: absolute;
    background-color: red;
    color: white;
    font-size: 12px;
    padding: 2px 5px;
    top: 0;
    left: 0;
    border-radius: 0 0 5px 0;
    z-index: 1;
}
