/* Shared shell for criczy.club static pages (index + legal). */
:root {
  --bg0: #070d16;
  --accent: #22d3ee;
  --accent2: #a78bfa;
  --text: #e8f4ff;
  --muted: rgba(232, 244, 255, 0.72);
  --border: rgba(255, 255, 255, 0.1);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "DM Sans", system-ui, sans-serif;
  background: radial-gradient(120% 80% at 50% -20%, rgba(34, 211, 238, 0.1), transparent 55%), var(--bg0);
  color: var(--text);
  line-height: 1.6;
}
.wrap {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 4vw, 1.5rem) 3rem;
}
.back {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.back:hover {
  text-decoration: underline;
}
h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 6vw, 2.75rem);
  letter-spacing: 0.03em;
  margin: 0 0 0.25rem;
  background: linear-gradient(120deg, var(--accent), #fff 50%, var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.updated {
  font-size: 0.8rem;
  color: rgba(232, 244, 255, 0.45);
  margin: 0 0 1.5rem;
}
.prose h2 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232, 244, 255, 0.85);
  margin: 1.75rem 0 0.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.35rem;
}
.prose p,
.prose li {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0.65rem 0;
}
.prose ul {
  padding-left: 1.25rem;
}
.prose a {
  color: var(--accent);
  text-decoration: none;
}
.prose a:hover {
  text-decoration: underline;
}
.legal-footer {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  text-align: center;
  color: rgba(232, 244, 255, 0.45);
}
.legal-footer a {
  color: var(--accent);
  text-decoration: none;
}
.legal-footer a:hover {
  text-decoration: underline;
}
