.header {
    text-align: center;
    margin-bottom: 50px;
}

.header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffbf00;
    text-shadow: 0 0 10px #ffbf00;
    margin-bottom: 20px;
}

.header p {
    font-size: 24px;
    color: #fff;
}

.movie-details-container {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 191, 0, 0.5);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.movie-poster {
    flex: 0 0 300px;
    margin-right: 30px;
    text-align: center;
}

.movie-poster img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 191, 0, 0.5);
}

.movie-details {
    flex: 1;
}

.movie-details-header {
    margin-bottom: 30px;
}

.movie-details-header .title {
    font-size: 36px;
    font-weight: 700;
    color: #ffbf00;
    text-shadow: 0 0 10px #ffbf00;
}

.movie-details-section {
    margin-bottom: 20px;
}

.movie-details-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.movie-details-section p,
.movie-details-section span {
    font-size: 18px;
    line-height: 1.5;
    color: #ccc;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating .stars {
    color: #ffbf00;
    font-size: 24px;
    margin-right: 10px;
}

.rating .votes {
    font-size: 18px;
    color: #ccc;
}

.download-section {
    text-align: center;
    margin-top: 50px;
}

.download-options {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

select {
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    background-color: #333;
    color: #fff;
    margin: 0 10px;
}

.download-button {
    background-color: #ffbf00;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-button:hover {
    background-color: #fff;
    color: #ffbf00;
    box-shadow: 0 0 10px #ffbf00;
}

#downloadSize {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

footer {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    color: #ccc;
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .movie-poster {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .movie-poster img {
        max-width: 50%;
    }
}