
/* 🚀 FIX WHITE FLASH ON LOAD */
html {
    background-color: #0f172a !important;
}

body {
    background-color: #f5f7fa !important;
    opacity: 1;
}

/* ✅ Performance Optimizations Applied */
* {
    font-display: swap;
}

/* Disable expensive animations on low-end devices */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}
