:root {
  --accent: #ff6b4a;
  --ink: #1a1a1a;
  --paper: #ffffff;
  --panel: #121212;
  --panel-soft: #1e1e1e;
}

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-copyright {
  text-align: center;
  font-size: 0.75rem;
  color: #ccc;
  padding: 2rem 1.5rem;
}

/* A quiet "jump to admin" link shown only to the logged-in site owner on otherwise-public pages. */
.admin-peek {
  color: #bbb;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: normal;
  margin-left: 0.5rem;
}

.admin-peek:hover {
  color: var(--accent);
}
