/* Force dark canvas site-wide (no system light-mode wash on iOS Safari / WeChat) */

html {
    background: var(--bg);
    color-scheme: dark only;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
}

#root,
#__next {
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--bg);
}

/* Not used in this project; guard against accidental light UA styles */
@media (prefers-color-scheme: light) {
    html {
        color-scheme: dark only;
        background: var(--bg) !important;
    }

    body {
        background-color: var(--bg) !important;
        color: #f4fbff;
    }
}
