:root {
  --bg: #101010;
  --text: #f5f5f5;
}
.light-theme {
  --bg: #f5f5f5;
  --text: #101010;
}
body {
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
}