body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

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

.movies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.movie {
    background: #222;
    padding: 15px;
    margin: 15px;
    width: 300px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.movie:hover {
    transform: scale(1.05);
}

.movie img {
    width: 100%;
    border-radius: 10px;
}

.download-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #ff4b5c;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    border-radius: 5px;
}

.download-btn:hover {
    background: #ff6b7c;
}

.full-collection {
    width: 100%;
    text-align: center;
}