:root {
    color-scheme: dark;
    --background: #020a12;
    --background-deep: #01060b;
    --surface: #071522;
    --surface-raised: #0a1b2a;
    --text: #edf4fa;
    --text-steel: #c5d0da;
    --muted: #8497aa;
    --accent: #18a8ff;
    --accent-bright: #78caff;
    --accent-deep: #0878d7;
    --border: #21405a;
    --border-subtle: #10283b;
    --glow: rgba(24, 168, 255, .24);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--background-deep);
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-width: 20rem;
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(ellipse 48rem 32rem at 68% 27%, rgba(14, 73, 119, .13), transparent 70%),
        linear-gradient(180deg, #01070d 0%, #020b14 52%, #010810 100%);
    color: var(--text);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-synthesis: none;
}

body::before {
    content: none;
}

a {
    color: inherit;
    text-decoration: none;
}

:focus-visible {
    outline: 2px solid var(--accent-bright);
    outline-offset: 4px;
}

::selection {
    background: var(--accent);
    color: var(--background-deep);
}

#blazor-error-ui {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
