/* === CSS ADICIONAL (agregar al final del <style> existente o en archivo externo) === */
.vinyl-container {
    filter: drop-shadow(0 20px 40px rgba(106, 13, 173, 0.2));
    transition: filter 0.4s ease;
}

.vinyl-container:hover {
    filter: drop-shadow(0 25px 50px rgba(106, 13, 173, 0.3));
}

.live-control {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.live-control:active {
    transform: scale(0.95);
}

.volume-slider {
    background: linear-gradient(to right, #6a0dad 0%, #6a0dad var(--volume, 70%), rgba(106, 13, 173, 0.3) var(--volume, 70%), rgba(106, 13, 173, 0.3) 100%);
}

.status-message {
    transition: opacity 0.3s ease;
    opacity: 0.9;
}

.status-message.fade {
    opacity: 0.6;
}

/* Mejora del efecto de brillo en la funda */
.jacket-wear::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.vinyl-jacket.open .jacket-wear::after {
    opacity: 1;
}

/* Partículas de polvo sutiles al girar */
.vinyl-record.spinning::before {
    content: "";
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(200,200,200,0.08) 0%, transparent 2%),
        radial-gradient(circle at 75% 60%, rgba(200,200,200,0.08) 0%, transparent 2%),
        radial-gradient(circle at 40% 80%, rgba(200,200,200,0.06) 0%, transparent 1.5%);
    animation: dust 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes dust {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adicional */
@media (max-width: 480px) {
    .controls-container {
        gap: 12px;
    }
    .live-control {
        font-size: 0.85rem;
    }
    .volume-container {
        width: 80px;
    }
}