/*
 * info-pages.css — premium polish layer for the static info pages
 * (about / contact / terms / privacy-policy). Linked AFTER each page's
 * inline <style> so these rules layer on top without a rewrite.
 */

/* Match the main site's typeface. */
body {
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif !important;
}

/* Sticky, glassy header consistent with the homepage. */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 5, 18, .82) !important;
  border-bottom: 1px solid rgba(125, 249, 255, .18) !important;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
header h2 {
  letter-spacing: .01em;
}

/* Pill-style nav with hover glow. */
nav a {
  display: inline-block;
  padding: 7px 13px !important;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color .2s ease, background .2s ease, border-color .2s ease, text-shadow .2s ease;
}
nav a:hover {
  color: #7df9ff;
  border-color: rgba(125, 249, 255, .38);
  background: rgba(125, 249, 255, .08);
  text-shadow: 0 0 12px rgba(125, 249, 255, .8);
}

/* Elevated content panel with neon top edge + ambient glow. */
.content-box {
  position: relative;
  overflow: hidden;
  border-radius: 18px !important;
  border: 1px solid rgba(125, 249, 255, .3) !important;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, .5),
    inset 0 0 42px rgba(37, 231, 255, .06) !important;
}
.content-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #25e7ff, #fff, #ff43d1);
  box-shadow: 0 0 24px rgba(37, 231, 255, .5);
}
.content-box::after {
  content: "";
  position: absolute;
  right: -28%;
  top: -42%;
  width: 60%;
  height: 130%;
  background: radial-gradient(circle, rgba(255, 67, 209, .12), transparent 62%);
  pointer-events: none;
}
.content-box > * {
  position: relative;
  z-index: 1;
}

/* Heavier, tighter headings to match the brand. */
h1, h2 {
  font-weight: 1000;
  letter-spacing: -.01em;
}

.eyebrow {
  background: linear-gradient(90deg, rgba(37, 231, 255, .12), rgba(255, 67, 209, .12)) !important;
}

/* Game pills feel interactive. */
.game-pill {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.game-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 249, 255, .6);
  box-shadow: 0 0 26px rgba(37, 231, 255, .3);
}

/* CTA lift. */
.cta-link {
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.cta-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(255, 67, 209, .4);
  filter: saturate(1.1);
}

@media (prefers-reduced-motion: reduce) {
  nav a, .content-box, .game-pill, .cta-link { transition: none !important; }
}
