/* ANTI-FLASH CSS - MUST LOAD FIRST */
/* This file prevents white flashes during page transitions */

html, body {
    background: #000000 !important;
    background-color: #000000 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Prevent white flash on any element */
*, *::before, *::after {
    background-color: transparent !important;
}

/* Override browser defaults */
html {
    color-scheme: dark !important;
}

/* Ensure iframes don't flash white */
iframe {
    background: #000000 !important;
    background-color: #000000 !important;
}

/* Page transitions */
body {
    transition: none !important;
    animation: none !important;
}

/* Loading states */
.loading, .spinner, [class*="load"] {
    background: #000000 !important;
    background-color: #000000 !important;
}