/* Custom Animations and Overrides */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}

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

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

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

::-webkit-scrollbar-thumb {
    background: #1A2744;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #98FFD8;
}

/* Selection Color */
::selection {
    background: #98FFD8;
    color: #0A1128;
}
