/* Shared styles across all pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.vinyl-rotation {
    animation: rotate 3s linear infinite;
}

.vinyl-playing {
    animation-play-state: running;
}

.vinyl-paused {
    animation-play-state: paused;
}

.playlist-item {
    transition: all 0.3s ease;
}

.playlist-item:hover {
    background-color: rgba(251, 191, 36, 0.1);
}

.playlist-item.active {
    background-color: rgba(251, 191, 36, 0.2);
    border-left: 3px solid #f59e0b;
}