/* Shared styling for the static content pages (Privacy, Terms, About, etc.) */
:root {
  --bg1: #123762;
  --bg2: #0c274b;
  --bg3: #071630;
  --gold: #f4b400;
  --ink: #eef4ff;
  --muted: #9fb1cc;
  --line: rgba(255, 255, 255, 0.1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Montserrat', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(140% 120% at 50% 0%, var(--bg1) 0%, var(--bg2) 40%, var(--bg3) 78%, #040e1e 100%);
  background-attachment: fixed;
  line-height: 1.65;
}
a { color: #7fb0ff; text-decoration: none; }
a:hover { color: #a9caff; text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 22px;
  background: rgba(4, 14, 30, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(160deg, #2c2f38, #0a0b0e);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}
.brand-mark span {
  width: 24px; height: 24px; border-radius: 50%;
  background: conic-gradient(#e0322b 0 90deg, #f4b400 90deg 180deg, #159b45 180deg 270deg, #1273d8 270deg 360deg);
  box-shadow: inset 0 0 0 2px #fff;
}
.brand-name { font-weight: 800; letter-spacing: 0.06em; font-size: 18px; color: var(--ink); }
.brand-name b { color: var(--gold); }
nav.site-nav { display: flex; gap: 6px; flex-wrap: wrap; }
nav.site-nav a {
  color: var(--muted); font-weight: 700; font-size: 14px; padding: 7px 12px; border-radius: 9px;
}
nav.site-nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.08); text-decoration: none; }
nav.site-nav a.play { color: #08131f; background: linear-gradient(160deg, #ffd76b, #f4b400); }

/* Content */
main.content {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 22px 60px;
}
main.content h1 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 6px; letter-spacing: 0.02em; }
main.content h2 { font-size: 22px; margin: 34px 0 10px; color: #dbe7fb; }
main.content h3 { font-size: 17px; margin: 22px 0 6px; color: #cdd9ee; }
main.content p, main.content li { color: #cbd6e8; font-size: 16px; }
main.content ul, main.content ol { padding-left: 22px; }
main.content li { margin: 6px 0; }
.lead { font-size: 18px; color: var(--muted); margin-bottom: 8px; }
.updated { font-size: 13px; color: #7d90ac; margin: 0 0 24px; }
.card-note {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 18px 0;
}
table.rules { width: 100%; border-collapse: collapse; margin: 14px 0; }
table.rules th, table.rules td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: 15px; }
table.rules th { color: var(--gold); }
.btn-home {
  display: inline-block; margin-top: 26px; padding: 13px 26px; border-radius: 13px;
  font-weight: 800; color: #08131f; background: linear-gradient(160deg, #ffd76b, #f4b400);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}
.btn-home:hover { text-decoration: none; filter: brightness(1.05); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 22px 40px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.site-footer nav { display: flex; gap: 8px 18px; flex-wrap: wrap; justify-content: center; margin-bottom: 12px; }
.site-footer a { color: var(--muted); font-weight: 600; }
.site-footer a:hover { color: #fff; }
.site-footer .copy { opacity: 0.7; font-size: 13px; }
