/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a12;
}

::-webkit-scrollbar-thumb {
    background: #1a1a24;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes float {
    0% {
        transform: translate(0px, 0px);
    }

    50% {
        transform: translate(-20px, 20px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

/* Utility Overrides if needed beyond Tailwind */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}