/* Shared styling for the static content pages (about, privacy). */
:root {
  --bg-top: #1a0b3d;
  --bg-bottom: #0a0118;
  --neon: #00f0ff;
  --neon-2: #ff2d9b;
  --ink: #e9e6ff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(120% 80% at 50% -10%, var(--bg-top), var(--bg-bottom) 70%);
  color: var(--ink);
  font-family: "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  line-height: 1.65;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 22px 80px;
}

.brand-link {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--neon), var(--neon-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1 {
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}

.updated {
  color: rgba(233, 230, 255, 0.5);
  font-size: 13px;
  margin: 0 0 28px;
}

h2 {
  font-size: clamp(18px, 4.5vw, 22px);
  margin: 34px 0 10px;
  color: var(--neon);
}

p, li { color: rgba(233, 230, 255, 0.86); }

a { color: var(--neon); }

ul { padding-left: 22px; }
li { margin: 6px 0; }

.controls {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  margin: 16px 0;
}
.controls li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}
.controls .key {
  font-weight: 800;
  color: var(--neon-2);
  min-width: 130px;
}

.foot {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(233, 230, 255, 0.12);
  font-size: 13px;
  color: rgba(233, 230, 255, 0.5);
}
.foot a { margin-right: 16px; }

.play-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 30px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--bg-bottom);
  background: linear-gradient(90deg, var(--neon), var(--neon-2));
  border-radius: 999px;
}
