@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, theme('colors.primary'), theme('colors.secondary'));
    z-index: 10001;
    box-shadow: 0 0 10px theme('colors.primary');
}

/* Custom Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Artist Card Hover Effect */
.artist-card:hover .artist-name {
    color: theme('colors.secondary');
}

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Glow Effects */
.glow-primary:hover {
    box-shadow: 0 0 20px theme('colors.primary');
}

.glow-secondary:hover {
    box-shadow: 0 0 20px theme('colors.secondary');
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Release Card Play Button */
.release-card:hover .play-button {
    opacity: 1;
    transform: scale(1);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, theme('colors.primary'), theme('colors.secondary'));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: theme('colors.dark');
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: theme('colors.primary');
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.15;
    animation: move 20s infinite alternate;
}

.blob-1 {
    top: -100px;
    left: -100px;
    background: theme('colors.primary');
    animation-duration: 25s;
}

.blob-2 {
    bottom: -100px;
    right: -100px;
    background: theme('colors.secondary');
    animation-duration: 30s;
    animation-delay: -5s;
}

.blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #4facfe;
    animation-duration: 35s;
    animation-delay: -10s;
}

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 50px) scale(1.1); }
    66% { transform: translate(-50px, 100px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: theme('colors.dark');
}

::-webkit-scrollbar-thumb {
    background: theme('colors.primary');
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: theme('colors.secondary');
}