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

body {
  font-family: "Courier New", Courier, monospace;
  background: #000;
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 0.85rem;
  font-weight: 400;
  color: #c0c0c0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 2px solid #e0e0e0;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
}
.skip-link:focus {
  left: 1rem;
  z-index: 9999;
  background: #000;
  color: #e0e0e0;
  border: 1px solid #e0e0e0;
  padding: 0.5rem 1rem;
}

/* ── Legal pages ─────────────────────────────────────────── */

.container { width: 100%; max-width: 640px; }

.back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: #c0c0c0;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.back:hover { color: #fff; }

.container h1 { margin-bottom: 2rem; }

.container .card {
  border: 1px solid #1e1e1e;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.container section h2 {
  font-size: 0.75rem;
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}

.container section p,
.container section li {
  font-size: 0.9rem;
  color: #d0d0d0;
  line-height: 1.7;
}

.container section ul {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
}

.container section ul li::before {
  content: "- ";
  color: #c0c0c0;
}

.legal-ref { color: #e0e0e0; }

.container section a {
  color: #e0e0e0;
  text-decoration: none;
}
.container section a:hover { text-decoration: underline; }
