*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --bg: #0b0e14; --bg-surface: #111620; --bg-elevated: #1a2030; --border: #252d3d; --text: #c5cdd9; --text-muted: #6b7a90; --text-bright: #e8ecf2; --accent: #3b82f6; --accent-hover: #2563eb; --green: #22c55e; --yellow: #eab308; --red: #ef4444; --orange: #f97316; --radius: 8px; --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', Menlo, monospace; --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; } body { font-family: var(--font-sans); background: var(--bg); color: var(--text); line-height: 1.5; -webkit-font-smoothing: antialiased; } a { color: var(--accent); text-decoration: none; } a:hover { color: var(--accent-hover); text-decoration: underline; } code, .mono { font-family: var(--font-mono); font-size: 0.85em; }