:root {
    --bg: #0b0d12;
    --surface: #11141b;
    --text: #e9edf5;
    --muted: #a7b0c3;
    --primary: #6fa4da;
    --accent: #ff9800;
    --stroke: #1f2533;
    --radius: 16px;
    --shadow: 0 10px 25px rgba(0, 0, 0, .35);
    --maxw: 1200px;
    --16px: 1rem;
}

/* Light theme (overruler dark) */
:root[data-theme="light"] {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #141922;
  --muted: #596179;
  --stroke: #e9ecf2;
}

/* Dark theme (overruler alt) */
:root[data-theme="dark"] {
  --bg: #0b0d12;
  --surface: #11141b;
  --text: #e9edf5;
  --muted: #a7b0c3;
  --stroke: #1f2533;
}

@media (prefers-color-scheme: light) {
    :root {
        --bg: #f7f8fb;
        --surface: #ffffff;
        --text: #141922;
        --muted: #596179;
        --stroke: #e9ecf2;
    }

    .glass {
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, .6);
    }
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Inter, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    background: var(--bg);
    color: var(--text);
}