@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}
/* Logo glow effect */
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(239, 68, 68, 0.7), 
                     0 0 20px rgba(239, 68, 68, 0.5),
                     0 0 30px rgba(239, 68, 68, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(239, 68, 68, 0.9), 
                     0 0 40px rgba(239, 68, 68, 0.7),
                     0 0 60px rgba(239, 68, 68, 0.5);
    }
}
/* Layout adjustments for desktop */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Custom animations and interactive elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Ripple effect */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Tooltips */
.tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(17, 24, 39, 0.9);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    margin-bottom: 8px;
}

.tooltip.show {
    opacity: 1;
}

/* Active nav link */
.nav-link.active {
    color: #EF4444 !important;
    transform: translateY(-2px) !important;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5) !important;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #EF4444;
    animation: underline 0.3s ease-out;
}

@keyframes underline {
    from { width: 0 }
    to { width: 100% }
}

/* Parallax effect */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Interactive cards */
section > div > div {
    transition: all 0.3s ease, transform 0.2s ease;
    will-change: transform;
}

section > div > div:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 20px 25px -5px rgba(239, 68, 68, 0.2), 
                0 10px 10px -5px rgba(239, 68, 68, 0.1) !important;
    z-index: 1;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}
/* Open Source Section */
#opensource .bg-gray-800\/80 {
    transition: all 0.3s ease;
}

#opensource .bg-gray-800\/80:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.2);
}

#opensource ul li {
    transition: all 0.2s ease;
}

#opensource ul li:hover {
    transform: translateX(5px);
    color: rgba(255, 255, 255, 0.9);
}

/* Background glow elements */
.glow-circle-1, .glow-circle-2 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0) 70%);
    filter: blur(40px);
    animation: float infinite ease-in-out;
    transform-origin: center;
}

.glow-circle-1 {
    animation-name: float;
}

.glow-circle-2 {
    animation-name: float;
    animation-delay: 0.5s;
}
/* Player controls */
.player-control {
    transition: all 0.2s ease;
}

.player-control:hover {
    transform: scale(1.1);
}
/* Queue Management */
.queue-container {
    background: rgba(31, 41, 55, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.queue-scroller {
    scrollbar-width: thin;
    scrollbar-color: rgba(239, 68, 68, 0.5) rgba(31, 41, 55, 0.1);
}

.queue-item {
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.queue-item:hover {
    background-color: rgba(239, 68, 68, 0.1) !important;
    transform: translateX(2px);
}

.queue-item:last-child {
    border-bottom: none;
}

.queue-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}
/* Hover Effects */
* {
    transition: all 0.2s ease;
}

/* Custom scrollbar for queue */
.overflow-y-auto::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.overflow-y-auto::-webkit-scrollbar-track {
    background: rgba(31, 41, 55, 0.1);
    border-radius: 10px;
}

.overflow-y-auto::-webkit-scrollbar-thumb {
    background: rgba(239, 68, 68, 0.5);
    border-radius: 10px;
}

.overflow-y-auto::-webkit-scrollbar-thumb:hover {
    background: rgba(239, 68, 68, 0.7);
}
/* CTA button animation */
.cta-button {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
}
.cta-button:hover {
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px 10px rgba(239, 68, 68, 0.5);
    transform: translateY(-3px);
}
/* Enhanced glow card hover */
custom-glow-card:hover {
    transform: scale(1.02);
}
/* List item hover */
li:hover {
    transform: translateX(5px);
    color: #EF4444;
}

/* Border hover effects */
.border-hover {
    position: relative;
}

.border-hover::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #EF4444;
    transition: width 0.3s ease;
}

.border-hover:hover::before {
    width: 100%;
}

/* Background pulse effect */
.bg-pulse:hover {
    animation: bgPulse 2s infinite;
}

@keyframes bgPulse {
    0%, 100% {
        background-color: rgba(17, 24, 39, 0.8);
    }
    50% {
        background-color: rgba(17, 24, 39, 0.6);
    }
}
/* Enhanced Hover Effects */
img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
}

section:hover {
    background: rgba(17, 24, 39, 0.95);
}

h1:hover, h2:hover, h3:hover {
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

p:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Social buttons */
.social-button {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(239, 68, 68, 0.3);
}

.social-button i {
    width: 20px;
    height: 20px;
}