/* Shared layout for BaseStriker legal pages — Terms / Privacy / Disclaimer.
 * Same look-and-feel as the landing but optimised for long-form reading: a
 * comfortable sans-serif body, arcade-font headings. */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: #0a0014;
  color: #e0e0f0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.7;
  font-size: 15px;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(0,212,255,0.06), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(157,77,255,0.06), transparent 55%),
    #0a0014;
  z-index: -1;
}
.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 22px 80px;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(157,77,255,0.2);
  margin-bottom: 32px;
}
.topbar .brand {
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #00d4ff, #9d4dff);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-decoration: none;
}
.topbar nav a {
  color: #9ad0ff;
  font-size: 13px;
  margin-left: 14px;
  text-decoration: none;
}
.topbar nav a:hover { color: #fff; text-shadow: 0 0 6px currentColor; }
h1 {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(18px, 3vw, 26px);
  letter-spacing: 2px;
  color: #9d4dff;
  margin-bottom: 6px;
}
.effective {
  font-size: 12px;
  color: #7a7a9a;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Press Start 2P', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  color: #00d4ff;
  margin: 30px 0 12px;
}
p { margin-bottom: 14px; color: #cccce0; }
ul { margin: 0 0 16px 22px; }
li { margin-bottom: 8px; color: #cccce0; }
strong { color: #fff; }
code {
  background: rgba(157,77,255,0.12);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 13px;
  color: #cccce0;
}
a { color: #00d4ff; }
a:hover { text-shadow: 0 0 6px currentColor; }
footer {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(157,77,255,0.2);
  font-size: 12px;
  color: #7a7a9a;
  text-align: center;
}
footer a { color: #9ad0ff; margin: 0 6px; }
