/* Custom Scrollbar */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0F0F0F;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6C00FF;
}


/* Glassmorphism Utilities */

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* Neon Text Glow */

.text-glow-purple {
    text-shadow: 0 0 10px rgba(108, 0, 255, 0.7), 0 0 20px rgba(108, 0, 255, 0.5);
}

.text-glow-blue {
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.7), 0 0 20px rgba(0, 212, 255, 0.5);
}


/* Smooth Scroll Behavior for Anchor Links */

html {
    scroll-behavior: smooth;
}


/* Mobile Menu Transition */

#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

#mobile-menu.open {
    transform: translateX(0);
}


/* Header Scroll Effect */

header.scrolled {
    background-color: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(108, 0, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}


/* Animations */

@keyframes neon-pulse-purple {
    0%,
    100% {
        box-shadow: 0 0 10px rgba(108, 0, 255, 0.5), 0 0 20px rgba(108, 0, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(108, 0, 255, 0.8), 0 0 30px rgba(108, 0, 255, 0.5);
    }
}

@keyframes neon-pulse-blue {
    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 30px rgba(0, 212, 255, 0.5);
    }
}

.animate-neon-purple {
    animation: neon-pulse-purple 2s infinite;
}

.animate-neon-blue {
    animation: neon-pulse-blue 2s infinite;
}


/* Floating Animation for Syringe */

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}