:root {
    --bg: white;
    --text: black;
    --font-size: 16px;
}

:root[data-theme="light"] {
    --bg: white;
    --text: black;
}

[data-theme="dark"] {
    --bg: #121212;
    --text: #e0e0e0;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-size: var(--font-size);
    font-family: system-ui;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 1rem;
}

nav a {
    margin-right: 10px;
}