:root {
  --bg: #ffffff;
  --text: #111111;
  --accent: #c59d5f;
}

body.dark {
  --bg: #0f0f0f;
  --text: #f5f5f5;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
}

header {
  padding: 3rem 1rem;
  text-align: center;
}

button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
