* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #141414;
    color: #fff;
}

.header {
    padding: 20px 40px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.logo {
    color: #e50914;
    font-size: 24px;
    font-weight: bold;
    float: left;
}

.nav-links {
    float: right;
}

.nav-links a {
    color: #e5e5e5;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    line-height: 35px;
}

.nav-links a:hover {
    color: #b3b3b3;
}

.hero-banner {
    height: 400px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), #141414), url('movie-banner.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.hero-title {
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    bottom: 30px;
    left: 40px;
}

.main-container {
    padding: 0 40px 40px 40px;
    clear: both;
}

.row-title {
    font-size: 20px;
    font-weight: bold;
    color: #e5e5e5;
    margin-top: 30px;
    margin-bottom: 15px;
    clear: both;
}

.movies-row {
    width: 100%;
    overflow: hidden;
}

.movie-card {
    float: left;
    width: 18%;
    margin-right: 2%;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
}

.movie-card:last-child {
    margin-right: 0;
}

.movie-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.movie-card:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    z-index: 5;
}

.hot-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e50914;
    color: #fff;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 2px;
    z-index: 2;
}