:root {
  --bg-color: #ffffff;
  --text-color: #222222;
  --accent: #2e7d32;
  --font-stack: system-ui, -apple-system, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root { --bg-color: #121212; --text-color: #e0e0e0; }
}
body {
  font-family: var(--font-stack);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}
header, footer { padding: 1rem 0; border-bottom: 1px solid #ccc; }
footer { border-top: 1px solid #ccc; border-bottom: none; font-size: 0.8rem; }
a { color: var(--accent); }
input, button { padding: 0.8rem; margin: 0.5rem 0; }
h1 { font-size: 1.8rem; }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
