@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0f1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6ec7, #00f0ff);
    border-radius: 10px;
}

/* Custom selection color */
::selection {
    background: #b400ff;
    color: white;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Pulse animation for neon elements */
@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

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