/* ===================================================================
   StrikePoint Laser Tag — shared styles for standalone content pages
   (Privacy Policy, Terms of Service, FAQ). Component styles are copied
   from index.html so these pages match the main site exactly.
   =================================================================== */

:root {
  --bg-0: #05070d;
  --bg-1: #0a0f1c;
  --bg-2: #111a2e;
  --line: #1a2541;
  --line-bright: #2a3a66;
  --ink: #e6ecff;
  --ink-dim: #8a99bf;
  --ink-mute: #5b6a8f;
  --red: #ff2a3c;
  --red-glow: #ff4554;
  --blue: #1e88ff;
  --blue-glow: #4ea8ff;
  --steel: #c5cfe6;
  --amber: #ffb020;
  --good: #2cd673;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Oswald', sans-serif;
  background: var(--bg-0);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ----- Global tactical background ----- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(30,136,255,0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 30%, rgba(255,42,60,0.12), transparent 60%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(30,136,255,0.10), transparent 60%),
    linear-gradient(180deg, #05070d 0%, #0a0f1c 50%, #05070d 100%);
  pointer-events: none;
}

/* Subtle grid overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(30,136,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,136,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}

/* Scanline overlay */
.scanlines {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}

.wrap { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,7,13,0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 76px; width: auto; filter: drop-shadow(0 0 20px rgba(30,136,255,0.4)); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--ink-dim); text-decoration: none; font-weight: 600;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em;
  transition: color 0.2s; position: relative; padding: 4px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--red); transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--red); color: white; border: none;
  padding: 12px 22px; font-family: 'Oswald', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px;
  cursor: pointer; text-decoration: none; display: inline-block;
  box-shadow: 0 0 0 1px var(--red), 0 0 24px rgba(255,42,60,0.4);
  transition: all 0.2s; clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.nav-cta:hover { background: var(--red-glow); box-shadow: 0 0 0 1px var(--red-glow), 0 0 36px rgba(255,69,84,0.6); }

/* ============ SECTION HEADERS ============ */
.section { padding: 100px 0; position: relative; }
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--red-glow); text-transform: uppercase; letter-spacing: 0.3em;
  font-weight: 700; display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ""; width: 32px; height: 2px; background: var(--red);
}
h2.section-title {
  font-family: 'Black Ops One', sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.0; letter-spacing: 0.01em;
  margin-bottom: 20px; color: var(--ink);
}
.section-intro {
  font-size: 18px; color: var(--ink-dim); max-width: 640px;
}

/* ============ FAQ ============ */
.faq-list { margin-top: 56px; display: flex; flex-direction: column; gap: 12px; }
.faq {
  background: var(--bg-1); border: 1px solid var(--line);
  overflow: hidden; transition: all 0.2s;
}
.faq[open] { border-color: var(--blue); }
.faq summary {
  padding: 22px 28px; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; font-size: 17px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: 'JetBrains Mono', monospace;
  font-size: 24px; color: var(--blue-glow);
  transition: transform 0.2s;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 28px 24px; color: var(--ink-dim); font-size: 15px; line-height: 1.7;
}

/* ============ LEGAL / PROSE CONTENT ============ */
.legal { padding: 72px 0 100px; }
.legal-content { max-width: 880px; }
.legal-content h1 {
  font-family: 'Black Ops One', sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05; letter-spacing: 0.01em;
  color: var(--ink); margin-bottom: 14px;
}
.legal-effective {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  color: var(--blue-glow); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 36px;
}
.legal-content h2 {
  font-family: 'Black Ops One', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1; color: var(--ink);
  margin: 44px 0 16px; padding-top: 8px;
}
.legal-content p {
  color: var(--ink-dim); font-size: 16px; line-height: 1.8; margin-bottom: 16px;
}
.legal-content ul { list-style: none; margin: 0 0 18px; }
.legal-content li {
  color: var(--ink-dim); font-size: 16px; line-height: 1.7;
  position: relative; padding-left: 24px; margin-bottom: 10px;
}
.legal-content li::before {
  content: ">"; position: absolute; left: 0; top: 0;
  color: var(--red-glow); font-family: 'JetBrains Mono', monospace; font-weight: 700;
}
.legal-content a { color: var(--blue-glow); text-decoration: none; transition: color 0.2s; }
.legal-content a:hover { color: var(--ink); text-decoration: underline; }
.legal-content strong { color: var(--ink); font-weight: 600; }

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
  background: var(--bg-0);
  position: relative; z-index: 2;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 96px; margin-bottom: 16px; filter: drop-shadow(0 0 16px rgba(30,136,255,0.3)); }
.footer-brand p { color: var(--ink-dim); font-size: 14px; line-height: 1.7; }
.footer-col h5 {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--red-glow); letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 16px; font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-qr {
  margin-top: 16px; width: 120px; height: 120px; display: block;
  border-radius: 8px; background: #fff; padding: 6px;
  box-shadow: 0 0 16px rgba(30,136,255,0.25);
}
.footer-col a {
  color: var(--ink-dim); text-decoration: none; font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-mute); letter-spacing: 0.1em; text-transform: uppercase;
  flex-wrap: wrap; gap: 12px;
}
/* Legal link row in the footer bottom bar */
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-legal a { color: var(--ink-mute); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--ink); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-logo img { height: 60px; }
  .section { padding: 70px 0; }
  .legal { padding: 56px 0 70px; }
  .footer-grid { grid-template-columns: 1fr; }
}
