/* 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;
}

/* Series Details */
.series-details {
    padding: 20px;
}

.series-details ul {
    list-style: none;
    padding: 0;
}

.series-details li {
    font-size: 18px;
    margin: 10px 0;
}

/* Gallery */
.gallery {
    margin: 30px auto;
    width: 80%;
    overflow: hidden;
    position: relative;
}

.slideshow-container {
    display: flex;
    width: 100%;
    height: 400px;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 10px;
}

.slide.active {
    opacity: 1;
}

/* Download Section */
.download-section {
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 80%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.download-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.download-poster {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Download Button */
.download-btn {
    padding: 15px 30px;
    background: #ff9800;
    color: white;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    border-radius: 5px;
}

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