/* ============================================================
   GameTown VI: Last Copy — SUBPAGE stylesheet (pages.css)
   Used by every page EXCEPT the homepage (which keeps its own
   one-screen styles.css). Tokens are duplicated from styles.css
   on purpose so the two sheets never fight — if you change a
   brand color, change it in BOTH files.
   Signature element: every page opens with an "aisle shelf-tag"
   eyebrow, so the site reads as wayfinding inside the store.
   ============================================================ */

:root {
  --midnight: #070218;      /* page base — deep launch-night violet-black */
  --midnight-2: #14042e;    /* lifted panel violet */
  --pink: #ff2d9e;          /* "Game" pink */
  --cyan: #35e0ff;          /* "Town" cyan */
  --gold: #ffc21a;          /* "LAST COPY" gold */
  --violet: #b44bff;        /* VI neon violet */
  --paper: #f4ecff;         /* near-white text */
  --pale-pink: #ffd9ec;     /* tagline punchline pink */
  --dim: #a89ac4;           /* secondary text */

  --display: "Luckiest Guy", "Arial Black", sans-serif;
  --body: "Rubik", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--midnight);
  background-image:
    radial-gradient(ellipse 90% 40% at 50% -10%, #1d0640 0%, transparent 60%),
    radial-gradient(ellipse 70% 30% at 50% 110%, #12033a 0%, transparent 55%);
  background-attachment: fixed;
  color: var(--paper);
  font-family: var(--body);
  line-height: 1.65;
}

/* ---------- Header: wordmark + store directory ---------- */

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(180, 75, 255, 0.25);
}

.wordmark {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark .wm-title { color: var(--pink); }
.wordmark .wm-sub { color: var(--gold); font-size: 0.8em; margin-left: 0.45em; }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--dim);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cyan);
}

.site-nav a.nav-play {
  color: #fff;
  background: var(--pink);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
}

.site-nav a.nav-play:hover,
.site-nav a.nav-play:focus-visible {
  background: #ff5cb4;
}

/* ---------- Page column ---------- */

.page {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(1.75rem, 5vh, 3.5rem) clamp(1rem, 4vw, 2rem) 3rem;
}

/* The aisle shelf-tag eyebrow — the site's wayfinding signature. */
.aisle-tag {
  display: inline-block;
  background: var(--midnight-2);
  border: 1px solid rgba(180, 75, 255, 0.45);
  border-radius: 6px;
  padding: 0.3rem 0.85rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  margin-bottom: 1.1rem;
}

h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--paper);
  text-shadow:
    0 0 18px rgba(255, 45, 158, 0.45),
    0 2px 0 rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.05rem;
  color: var(--pale-pink);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  letter-spacing: 0.03em;
  color: var(--cyan);
  margin: 2.25rem 0 0.7rem;
}

p { margin-bottom: 1rem; color: var(--paper); }

.page a { color: var(--cyan); }
.page a:hover, .page a:focus-visible { color: var(--gold); }

ul { margin: 0 0 1rem 1.25rem; }
li { margin-bottom: 0.55rem; }

strong { color: var(--gold); font-weight: 700; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--pink);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 0.7rem 1.6rem;
  text-decoration: none;
  box-shadow: 0 0 22px rgba(255, 45, 158, 0.35);
  transition: transform 0.12s ease, background 0.12s ease;
}

.btn:hover, .btn:focus-visible {
  background: #ff5cb4;
  transform: translateY(-2px);
  color: #fff;
}

.page .btn { color: #fff; }
.page .btn:hover, .page .btn:focus-visible { color: #fff; }

.cta-row { margin: 1.4rem 0 0.6rem; }

/* ---------- Info card (facts, controls, kit blocks) ---------- */

.card {
  background: var(--midnight-2);
  border: 1px solid rgba(180, 75, 255, 0.35);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  margin: 1rem 0 1.4rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.card ul { margin-bottom: 0; }

/* ---------- FAQ ---------- */

.faq-item { margin-bottom: 1.6rem; }
.faq-item h2 { margin-top: 1.6rem; }

/* ---------- Receipt-style disclaimer + site footer ---------- */

.receipt {
  margin: 2.75rem auto 0;
  max-width: 44rem;
  border: 1px dashed rgba(168, 154, 196, 0.55);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  background: rgba(20, 4, 46, 0.55);
}

.receipt p {
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--dim);
  margin: 0;
}

.site-footer {
  max-width: 44rem;
  margin: 1.25rem auto 0;
  padding: 0 clamp(1rem, 4vw, 2rem) 2.5rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a { color: var(--dim); text-decoration: none; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--cyan); }

/* ---------- Quality floor ---------- */

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}

@media (max-width: 560px) {
  .site-header { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
