:root {
  --bg: #0f1115; --surface: #1a1d24; --border: #2a2f3a;
  --text: #e8eaed; --muted: #9aa0a6; --accent: #5b8def;
  --radius: 12px; --font: system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; padding: 24px 16px; }
.container { max-width: 700px; margin: 0 auto; }
header { text-align: center; margin-bottom: 20px; }
h1 { font-size: 1.6rem; margin-bottom: 6px; }
.subtitle { color: var(--muted); font-size: 0.9rem; }
textarea {
  width: 100%; height: 280px; background: var(--surface); border: 1px solid var(--border);
  color: var(--text); padding: 16px; border-radius: var(--radius); font-size: 1rem;
  font-family: inherit; resize: vertical; outline: none;
}
textarea:focus { border-color: var(--accent); }
.stats { margin: 12px 0; color: var(--muted); font-size: 0.9rem; }
.toolbar { display: flex; flex-wrap: wrap; gap: 8px; }
.toolbar button {
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  padding: 9px 14px; border-radius: 8px; cursor: pointer; font-size: 0.85rem;
}
.toolbar button:hover { border-color: var(--accent); background: var(--accent); color: #fff; }
footer { text-align: center; margin-top: 32px; color: var(--muted); font-size: 0.8rem; }
