:root {
    --bg: #ffffff;
    --text: #1f2933;
    --card: #f5f7fb;
}

:root[data-theme="dark"] {
    --bg: #0f172a;
    --text: #e5e7eb;
    --card: #111827;
}

html {
    background: var(--bg);
    color: var(--text);
}

.navbar, .box, .hero, .section {
    background: var(--card);
}
