/* Minimal stylesheet -- the real styles live in
 * grimwyrm-client/src/views/shared.css which Vite bundles
 * via the app.ts import. This file exists only so the
 * index.html link doesn't 404 + so the initial body
 * background is dark before the bundle hydrates (avoids a
 * flash of white).
 */

html,
body {
  margin: 0;
  padding: 0;
  background: #0d0a08;
  color: #e8dcc4;
  font-family: system-ui, sans-serif;
}
