/* Shared styling for the site-level text pages (about, privacy, terms,
   contact). These live at the site root and deliberately do not depend on any
   game's stylesheet — a game folder must never be able to break the legal
   pages an AdSense reviewer reads. */

:root { color-scheme: dark; background: #111111; }
* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #2a2a2a 0%, #151515 35%, #050505 100%);
  color: #f4f7ff;
  font-family: "Trebuchet MS", sans-serif;
}

a { color: #f9d649; }

.content-page { width: min(100%, 900px); margin: 0 auto; padding: 40px 24px; }

.content-shell {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(4, 7, 19, 0.86);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.content-shell h1, .content-shell h2 { color: #ffffff; line-height: 1.15; }
.content-shell h1 { margin: 0; font-size: 2.25rem; }
.content-shell h2 { margin: 32px 0 12px; font-size: 1.25rem; }
.content-shell p, .content-shell li { color: rgba(255, 255, 255, 0.8); line-height: 1.65; }
.content-shell ul { padding-left: 22px; }

.eyebrow {
  margin: 0 0 10px;
  color: #a2b4ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.content-footer { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.content-footer a { font-weight: 700; }

.site-footer {
  width: min(100vw, 1088px);
  margin: 0 auto;
  padding: 0 24px 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 8px;
}

.site-footer__nav a { color: #f4f7ff; font-weight: 700; text-decoration: none; }
.site-footer__nav a:hover, .site-footer__nav a:focus-visible { color: #f9d649; text-decoration: underline; }
.site-footer p { margin: 0; }

@media (max-width: 720px) {
  .content-page { padding: 24px 16px; }
  .content-shell { padding: 24px; }
  .content-shell h1 { font-size: 1.9rem; }
  .site-footer { padding: 0 16px 20px; }
}
