:root {
    color-scheme: dark;
    --bg: #121212;
    --text: #eaeaea;
    --font: 'Inter', system-ui, -apple-system, sans-serif;


}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    max-width: 800px;
    margin: auto;
}

.sketch-canvas {
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 600px) {
    body { padding: 1rem; }
}
