/* Styling for the temporary deploy-test placeholder (src/pages/index.astro).
   An external stylesheet (served from /) so it passes the strict CSP's
   style-src 'self' without an inline-style hash. Removed at rollback. */
:root { color-scheme: dark; }
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  display: grid;
  place-items: center;
  background: #272e33;
  color: #d3c6aa;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
main { text-align: center; padding: 2rem; max-width: 34rem; }
.mark { font-size: 1.7rem; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 0.75rem; }
p { margin: 0 0 1.25rem; line-height: 1.55; color: #a7b39a; }
a { color: #dbbc7f; text-decoration: none; border-bottom: 1px solid currentColor; }
a:hover { color: #e69875; }
