/* Tailwind handles 99% of styles. We use this for small custom overrides if needed */

html {
    scroll-behavior: smooth;
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0A0D14;
}

::-webkit-scrollbar-thumb {
    background: #3D4F7A;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E63328;
}

/* Simple animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}