html {
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 51, 102, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 204, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.faces-bg {
    background-image: url('../assets/img/faces/collage.png');
    background-size: 600px;
    background-repeat: repeat;
    mix-blend-mode: screen;
    filter: grayscale(100%) contrast(1.2);
}

.dj-card {
    transition: transform 0.4s ease, border-color 0.3s ease;
}
.dj-card:hover {
    transform: translateY(-6px);
}

.timeline-item {
    opacity: 0.35;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-item.is-active {
    opacity: 1;
}
.timeline-item.is-active .timeline-dot {
    background-color: #ff3366 !important;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.6);
    transform: translateX(-50%) scale(1.4);
}
.timeline-dot {
    transition: all 0.4s ease;
}

#audio-toggle .vinyl {
    transition: transform 0.3s ease;
}
#audio-toggle.is-playing .vinyl {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.team-row {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.team-row.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
