* {
    margin: 0;
    padding: 0;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    background-color: black; 
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    color: red;
    font-size: 24px;
    font-weight: bold;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.banner {
    height: 100px; 
    background-image: url('../images/BackGround.jpg');
    background-size: 100% 100%;
    background-size: cover;
    background-position: center; 
    display: flex;
    align-items: flex-end; 
    padding: 0 50px 30px 50px; 
    box-sizing: border-box;
}

.banner h1 {
    font-size: 28px;
    margin: 0; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); 
}

.movie-section {
    padding: 20px;
}

.movie-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.movie-list {
    display: flex;
    gap: 15px;
}

.movie-item {
    position: relative;
    cursor: pointer;
}

.movie-item img {
    width: 150px;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-item:hover img {
    transform: scale(1.1);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.8); 
    z-index: 10; 
    position: relative;
}

.hot-badge {
    position: absolute; 
    top: 5px;
    left: 5px;
    background-color: #E50914;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 5px;
    border-radius: 3px;
    z-index: 2; 
}