/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic Layout */
html,
body {
    height: 100%;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    color-scheme: light dark;
}

/* --- Global Viewing System Utilities --- */
html.bg-white body, body.bg-white { background-color: #ffffff !important; }
html.bg-black body, body.bg-black { background-color: #000000 !important; }

/* --- Reduced Motion Support --- */
