/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #141e30, #243b55);
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background: #ff4b5c;
    padding: 20px;
    font-size: 24px;
}

/* Movie Section */
.movies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* Movie Card */
.movie {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
    text-align: left;
}

/* Movie Poster */
.movie img {
    width: 100%;
    height: 400px; /* Auto Resize Posters */
    object-fit: cover;
    border-radius: 10px;
}

/* Movie Details */
.details h2 {
    font-size: 20px;
}

/* Download Button */
.download-btn {
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.download-btn:nth-child(odd) {
    background: #ff4b5c;
}

.download-btn:nth-child(even) {
    background: #ff9800;
}

.download-btn:hover {
    transform: scale(1.05);
}