.movie-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #fff;
    min-width: 300px;
    width: 350px;
    height: 600px;
}

.movie-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.movie-card .card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #333;
    height: 50px;
    color: #fff;
}

.movie-card .card-body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background-color: #222;
}

.movie-card .card-body .movie-image {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
