/* Static content pages (legals, privacy). Plain prose layout. */

body {
  font-family: ui-monospace, "JetBrains Mono", "SF Mono", Menlo, monospace;
  background: white;
  color: black;
  min-height: 100vh;
}

.content {
  max-width: 640px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  line-height: 1.6;
}

.content h1 {
  font-size: clamp(28px, 6vmin, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  text-transform: none;
  margin-bottom: 32px;
}

/* Screen-style card matching the game-screen treatment (cool tone, thin
   border, soft shadow). For long-form content where 16:9 doesn't apply. */
.content-screen {
  border: 1px solid black;
  border-radius: 8px;
  background: hsl(218, 40%, 98%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin: 24px 0;
}
@media (max-width: 760px) {
  .content-screen { padding: 24px; }
}

.content h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 28px;
  margin-bottom: 8px;
}

.content p {
  font-size: 13px;
  margin: 0;
}
.content p + p { margin-top: 12px; }

.content a {
  color: black;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.content a:hover { background: black; color: white; }
