body {
    background: linear-gradient(135deg, #e0f7fa 0%, #80deea 100%);
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    color: #333;
}
nav {
    display: flex;
    background-color: rgba(63, 81, 181, 0.95);
    padding: 1.5em 2em;
    width: 100%;
    z-index: 9999;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 2em;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color: #ffca28;
    transform: scale(1.1);
}

.movieImage {
        width: 200px;
        height: 300px;
        object-fit: cover;
}

.movieImage:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 35px rgba(200, 200, 200, 0.8);
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.navbar a.active {
    background-color: #04AA6D;
    color: white;
}

.poster-img {
    width: 350px;
    height: 400px;
}

.image-container img {
    width: 250px;
    height: 400px;
    object-fit: cover;
}