@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #ffffff;
    scrollbar-width: thin;
    scrollbar-color: #535353 transparent;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar-thumb {
    background-color: #535353;
    border-radius: 4px;
}

.gradient-bg {
    background: linear-gradient(180deg, rgba(18,18,18,0.7) 0%, #121212 100%);
}

.playlist-card:hover .play-button {
    opacity: 1;
    transform: translateY(-5px);
}

.play-button {
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.blur-bg {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.progress-bar {
    height: 4px;
    background-color: #535353;
}

.progress-fill {
    height: 100%;
    background-color: #1db954;
    width: 30%;
}

.song-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.active-tab {
    border-bottom: 2px solid #1db954;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}