@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&display=swap');

:root {
  --bg: #0a0a0a; --surface: #111111; --surface2: #161616;
  --border: #1e1e1e; --accent: #c8f060; --accent2: #60f0c8;
  --text: #e8e8e8; --body: #bbbbbb; --muted: #666666;
  --dim: #333333; --danger: #f06060; --max: 900px;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background:var(--bg); color:var(--text);
  font-family:'DM Mono',monospace; font-size:14px;
  line-height:1.7; overflow-x:hidden;
}
a { color:var(--accent2); text-decoration:none; }
a:hover { color:var(--accent); }
