/* Slideshow controls bar - improved visibility and placement */
.cinema-screen .slideshow-controls {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    gap: 1.2rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.28);
    padding: 12px 28px;
    border-radius: 32px;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
    min-width: 340px;
    z-index: 100;
    margin-top: 18px;
    margin-bottom: 0;
    pointer-events: auto;
    transition: background 0.3s, box-shadow 0.3s;
}

.cinema-screen .slideshow-controls:hover {
    background: rgba(0,0,0,0.45);
    box-shadow: 0 12px 32px 0 rgba(0,0,0,0.28);
}

.cinema-screen .slide-control {
    background: rgba(255, 255, 255, 0.13);
    color: #FFD700;
    border: none;
    font-size: 2rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cinema-screen .slide-control:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.13);
}

/* Authentic & Classic Cinematic Section */
.cinematic-section {
    background: linear-gradient(to bottom, #1a1a1a, #0f0f0f);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cinematic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Vintage & Modern Mix Spinner */
.photo-spinner-container {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

/* 3D Slide Effects */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    backface-visibility: hidden;
    z-index: 1;
}

.slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 20 !important;
    transform: scale(1) translateZ(0) rotateY(0deg);
}

.slide-media {
    max-height: 85vh;
    max-width: 90vw;
    object-fit: contain;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    border: 5px solid #fff;
    background: #000;
}

/* Entrance Animation: Cinema Opening Shot */
@keyframes cinemaOpen {
    0% {
        clip-path: inset(0 50% 0 50%);
        filter: brightness(0);
        transform: scale(1.2);
    }
    100% {
        clip-path: inset(0 0 0 0);
        filter: brightness(1);
        transform: scale(1);
    }
}

.slide.cinema-opening {
    animation: cinemaOpen 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 3D Transitions */
.slide.next-enter {
    transform: translateX(100%) rotateY(-20deg) scale(0.8);
    opacity: 0;
}

.slide.next-enter-active {
    transform: translateX(0) rotateY(0) scale(1);
    opacity: 1;
}

.slide.prev-enter {
    transform: translateX(-100%) rotateY(20deg) scale(0.8);
    opacity: 0;
}

.slide.prev-enter-active {
    transform: translateX(0) rotateY(0) scale(1);
    opacity: 1;
}

/* Spinner Adjustments for "Vintage Modern Mix" */
.spinner-wheel {
    border: 8px solid #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    background: #111;
}

.wheel-outer-ring {
    background: conic-gradient(#8b5a2b, #4a3c31, #8b5a2b);
    border: 2px solid #332211;
}

/* Modal Background - Less Bright, More Classic */
.cinema-screen {
    background: #000;
    border: none;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}

.film-grain {
    opacity: 0.08;
}

@keyframes filmGrain {
    0% { transform: translate(0, 0); }
    10% { transform: translate(1px, 1px); }
    20% { transform: translate(-1px, 0px); }
    30% { transform: translate(1px, -1px); }
    40% { transform: translate(-1px, 1px); }
    50% { transform: translate(0, -1px); }
    60% { transform: translate(1px, 0); }
    70% { transform: translate(-1px, -1px); }
    80% { transform: translate(0, 1px); }
    90% { transform: translate(1px, -1px); }
    100% { transform: translate(-1px, 0); }
}

.cinema-header {
    position: relative;
    z-index: 5;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff1493, #c71585);
    border-bottom: 2px solid #ff69b4;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.4);
    min-height: 60px;
    max-height: 60px;
}

.cinema-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffb6c1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    flex: 1;
    text-align: center;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 182, 193, 0.5); }
    100% { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 105, 180, 0.8); }
}

.cinema-subtitle {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-style: italic;
    color: #ffe4e1;
    font-size: 0.9rem;
    background: rgba(255, 20, 147, 0.8);
    padding: 4px 15px;
    border-radius: 15px;
    border: 1px solid #ff69b4;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.4);
}

.close-cinema-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 105, 180, 0.3);
    border: 2px solid #ff69b4;
    color: #ffb6c1;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.close-cinema-btn:hover {
    background: #ff69b4;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6);
}

.slideshow-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin-top: -135px;
    margin-left: -145px;
    margin-bottom: 145px;
    height: 100vh;
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.cinematic-slides {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-caption-container {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.slide-caption {
    display: inline-block;
    background: rgba(0, 0, 0, 0.6);
    color: #ffb6c1;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 105, 180, 0.4);
    backdrop-filter: blur(5px);
    animation: captionGlow 3s ease-in-out infinite alternate;
}

.slide-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffb6c1;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid rgba(255, 105, 180, 0.4);
    backdrop-filter: blur(5px);
    z-index: 20;
}

.cinema-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(199,21,133,0.95), rgba(255,20,147,0.95));
    border-top: 3px solid #ff69b4;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 -4px 25px rgba(255, 20, 147, 0.6);
}

.slideshow-controls {
    position: fixed;
    bottom: 10px;
    right: -250px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    z-index: 16;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 105, 180, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.slide-control {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border: 2px solid #ffb6c1;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-control:hover {
    background: linear-gradient(135deg, #ff1493, #c71585);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6);
}

.slide-control:active {
    transform: translateY(0) scale(1);
}

.slide-control.download {
    background: linear-gradient(135deg, #32cd32, #228b22);
    border-color: #90ee90;
    padding: 8px 20px;
}

.slide-control.download:hover {
    background: linear-gradient(135deg, #228b22, #006400);
}

.slide-control.close {
    background: linear-gradient(135deg, #ff6b6b, #ff4444);
    border-color: #ffaaaa;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    padding: 0;
}

.slide-control.close:hover {
    background: linear-gradient(135deg, #ff4444, #cc0000);
}

.control-btn {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border: 3px solid #ffb6c1;
    color: #fff;
    padding: 0px 25px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    min-width: 120px;
}

.control-btn:hover {
    background: linear-gradient(135deg, #ff1493, #c71585);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.6);
}

.control-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.download-btn {
    background: linear-gradient(135deg, #ff69b4, #da70d6);
    border-color: #dda0dd;
    color: white;
}

.download-btn:hover {
    background: linear-gradient(135deg, #da70d6, #ff69b4);
}

.progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 20, 147, 0.3);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ff69b4;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
    margin-top: 5px;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #ff69b4, #ff1493, #da70d6);
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.8);
    animation: progressGlow 2s ease-in-out infinite alternate;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff69b4, #ff1493, #da70d6);
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.8);
    animation: progressGlow 2s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 15px rgba(255, 105, 180, 0.8); }
    100% { box-shadow: 0 0 25px rgba(255, 105, 180, 1); }
}

.progress-text {
    color: #ffb6c1;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    min-width: 80px;
    text-align: center;
}

.recording-indicator {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(220, 20, 60, 0.9);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    z-index: 10001;
    border: 2px solid #DC143C;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.recording-indicator.hidden {
    display: none;
}

.recording-dot {
    width: 12px;
    height: 12px;
    background: #FF0000;
    border-radius: 50%;
    animation: recordingPulse 1s ease-in-out infinite alternate;
}

@keyframes recordingPulse {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Cinematic Effects */
.slide.vintage-effect {
    filter: sepia(20%) contrast(1.2) brightness(0.9);
}

.slide.classic-effect {
    filter: grayscale(10%) contrast(1.1);
}

.slide.modern-effect {
    filter: saturate(1.2) contrast(1.1);
}

.slide.dreamy-effect {
    filter: blur(0.5px) brightness(1.1) saturate(0.9);
}

/* Floating Hearts Animation */
.floating-hearts-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.floating-heart {
    position: absolute;
    font-size: 1.5rem;
    animation: floatUp 8s linear infinite;
    pointer-events: none;
    opacity: 0.8;
}

.floating-heart:nth-child(1) { color: #ff69b4; animation-delay: 0s; left: 10%; }
.floating-heart:nth-child(2) { color: #ff1493; animation-delay: 1s; left: 20%; }
.floating-heart:nth-child(3) { color: #da70d6; animation-delay: 2s; left: 30%; }
.floating-heart:nth-child(4) { color: #ffb6c1; animation-delay: 3s; left: 40%; }
.floating-heart:nth-child(5) { color: #ff69b4; animation-delay: 4s; left: 50%; }
.floating-heart:nth-child(6) { color: #c71585; animation-delay: 5s; left: 60%; }
.floating-heart:nth-child(7) { color: #ff1493; animation-delay: 6s; left: 70%; }
.floating-heart:nth-child(8) { color: #dda0dd; animation-delay: 7s; left: 80%; }
.floating-heart:nth-child(9) { color: #ff69b4; animation-delay: 0.5s; left: 90%; }
.floating-heart:nth-child(10) { color: #da70d6; animation-delay: 1.5s; left: 15%; }

@keyframes floatUp {
    0% {
        bottom: -50px;
        opacity: 0;
        transform: translateX(0px) rotate(0deg) scale(0.5);
    }
    10% {
        opacity: 0.8;
        transform: translateX(10px) rotate(45deg) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-15px) rotate(180deg) scale(1.2);
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(20px) rotate(360deg) scale(0.8);
    }
}

/* Sparkle Effects for Hearts */
.heart-sparkle {
    position: absolute;
    font-size: 0.8rem;
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
    }
}

/* Enhanced Film Grain for Pink Theme */
.film-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    animation: filmGrainPink 0.5s steps(8) infinite;
}

@keyframes filmGrainPink {
    0% { transform: translate(0, 0); filter: hue-rotate(0deg); }
    10% { transform: translate(1px, 1px); filter: hue-rotate(36deg); }
    20% { transform: translate(-1px, 0px); filter: hue-rotate(72deg); }
    30% { transform: translate(1px, -1px); filter: hue-rotate(108deg); }
    40% { transform: translate(-1px, 1px); filter: hue-rotate(144deg); }
    50% { transform: translate(0, -1px); filter: hue-rotate(180deg); }
    60% { transform: translate(1px, 0); filter: hue-rotate(216deg); }
    70% { transform: translate(-1px, -1px); filter: hue-rotate(252deg); }
    80% { transform: translate(0, 1px); filter: hue-rotate(288deg); }
    90% { transform: translate(1px, -1px); filter: hue-rotate(324deg); }
    100% { transform: translate(-1px, 0); filter: hue-rotate(360deg); }
}

/* --- Modern Layout & Spinner Update --- */

/* Split Layout Container */
.cinematic-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.spinner-column {
    flex: 1;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.controls-column {
    flex: 0.8;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Modern Compact 3D Spinner */
.modern-spinner-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.spinner-wheel.compact-wheel {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    transition: transform 4s cubic-bezier(0.1, 0.7, 0.1, 1);
    background: radial-gradient(circle at center, #2a2a2a, #000);
    border: 4px solid #D4AF37;
    box-shadow: 
        0 0 50px rgba(212, 175, 55, 0.15),
        inset 0 0 30px rgba(0,0,0,0.8);
    transform-style: preserve-3d;
    transform: rotateX(10deg);
}

/* Hide Old Complex Rings */
.compact-wheel .wheel-outer-ring,
.compact-wheel .wheel-middle-ring {
    display: none;
}

.compact-wheel .wheel-inner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

/* Spin Button Center */
.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(20px);
    z-index: 10;
}

.spin-button.modern {
    width: 90px;
    height: 90px;
    font-size: 0.8rem;
    background: radial-gradient(circle, #D4AF37, #B8860B);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: 3px solid #fff;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.spin-button.modern:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* Photos on Wheel */
.wheel-photos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.wheel-photo {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #D4AF37;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.wheel-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pointer */
.wheel-pointer.modern-pointer {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%) translateZ(30px);
    z-index: 20;
    filter: drop-shadow(0 4px 4px rgba(0,0,0,0.5));
}

.pointer-arrow {
    font-size: 2rem;
    color: #D4AF37;
    animation: bounce 1s infinite alternate;
}

/* Controls Column Styling */
.modern-action-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    background: linear-gradient(135deg, #2c3e50, #000);
    border: 1px solid #D4AF37;
    color: #D4AF37;
}

.modern-action-btn:hover {
    background: #D4AF37;
    color: #000;
}

.music-btn.small {
    padding: 8px 12px;
    font-size: 0.9rem;
}

.modern-start {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #8B0000, #b71c1c);
    border: none;
    color: white;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.modern-start:disabled {
    background: #444;
    cursor: not-allowed;
    box-shadow: none;
}

.modern-start:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

/* Music Library Styles */
.music-library-container {
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.music-upload-section {
    margin-bottom: 15px;
    text-align: center;
}

.upload-btn {
    background: linear-gradient(135deg, #32cd32, #228b22);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
}

.upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.5);
}

.upload-icon {
    margin-right: 8px;
}

.music-list {
    max-height: 200px;
    overflow-y: auto;
    margin-top: 15px;
}

.music-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.music-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.music-item.selected {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
}

.music-info {
    flex: 1;
    margin-right: 10px;
}

.music-name {
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.music-size {
    color: #ccc;
    font-size: 0.8rem;
}

.music-actions {
    display: flex;
    gap: 5px;
}

.action-btn {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cinema-screen {
        width: 98%;
        height: 98%;
        border-width: 3px;
    }
    
    .cinema-logo {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .cinema-subtitle {
        font-size: 1.1rem;
        bottom: -25px;
    }
    
    .slide-caption {
        font-size: 1.8rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .control-btn {
        padding: 12px 20px;
        font-size: 1.1rem;
        min-width: 100px;
    }
    
    .slideshow-controls {
        gap: 15px;
    }
    
    .cinema-header, .cinema-footer {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .slide-info {
        bottom: -60px;
        width: 95%;
    }
    
    .slide-caption {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .control-btn {
        padding: 10px 15px;
        font-size: 1rem;
        min-width: 80px;
    }
}

@media (max-width: 900px) {
    .cinematic-content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .controls-column {
        width: 100%;
        max-width: 500px;
    }
}