/* Shared styles for the static utility pages (privacy, 404).
   External file, not inline <style>: the site's CSP is style-src
   'self', which forbids inline style blocks by design. */

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100vh;
  background: #0C0B1A;
  color: #C9C2D4;
  font-family: system-ui, sans-serif;
  line-height: 1.65;
}

h1, h2 { color: #F5F0EB; font-weight: 500; }
h1 { font-size: 30px; margin-bottom: 8px; }
h2 { font-size: 19px; margin: 36px 0 10px; }
p { margin-bottom: 14px; }
a { color: #F3A966; }

/* article layout (privacy) */
.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.updated { color: #8A8299; font-size: 14px; margin-bottom: 28px; }

/* centred layout (404) */
.center {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 24px;
}
.center h1 { font-size: 28px; }
.center p { max-width: 46ch; margin: 0; }
.center img { width: 72px; height: 72px; }
