: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);
    }
}

      * {
        box-sizing: border-box;
      }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);       /* 👈 styres af data-theme */
  color: var(--text);          /* 👈 du har --text, ikke --fg */
  min-height: 100vh;
}

      #app {
        min-height: 100vh;
      }