/* ============================================================
   GameTown VI: Last Copy — teaser stylesheet
   One screen, no scroll. Palette sampled from the logo art:
   midnight violet base, hot pink / electric cyan / price-tag
   gold accents. Display face echoes the brush-stroke wordmark.
   ============================================================ */

: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 */
  --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, body {
  height: 100%;
}

body {
  background: var(--midnight);
  background-image:
    radial-gradient(ellipse 90% 60% at 50% -10%, #1d0640 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 115%, #12033a 0%, transparent 55%);
  color: var(--paper);
  font-family: var(--body);
  overflow: hidden; /* one screen — the layout is sized to always fit */
}

/* ---------- Stage: a single 100dvh flex column ---------- */

.stage {
  position: relative;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.5rem, 1.5vh, 1.25rem) clamp(1rem, 4vw, 3rem);
  text-align: center;
}

/* ---------- Ambient neon glows (behind everything) ---------- */

.glow {
  position: absolute;
  width: 42vmin;
  height: 42vmin;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.glow-pink { background: var(--pink); top: 6%; left: 8%; }
.glow-cyan { background: var(--cyan); bottom: 10%; right: 6%; }

/* ---------- Hero logo ---------- */

.hero {
  z-index: 1;
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(0.25rem, 1vh, 0.75rem);
}

.logo {
  height: min(46dvh, 78vw);
  width: auto;
  max-width: 92vw;
  border-radius: clamp(10px, 2vmin, 18px);
  box-shadow:
    0 0 40px rgba(180, 75, 255, 0.35),
    0 0 120px rgba(255, 45, 158, 0.18);
}

/* ---------- Pitch ---------- */

.pitch { z-index: 1; }

.tagline {
  font-family: var(--display);
  font-weight: 400; /* Luckiest Guy has a single weight */
  font-size: clamp(1.3rem, 3.6dvh, 2.2rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--paper);
  text-shadow:
    0 0 18px rgba(255, 45, 158, 0.55),
    0 2px 0 rgba(0, 0, 0, 0.6);
}

.sub {
  margin-top: clamp(0.3rem, 1dvh, 0.6rem);
  font-size: clamp(0.85rem, 2dvh, 1.05rem);
  font-weight: 600;
  color: var(--dim);
  letter-spacing: 0.04em;
}

/* ---------- Price-tag row (signature element) ---------- */

.tags {
  z-index: 1;
  display: flex;
  gap: clamp(0.5rem, 2vw, 1.25rem);
  flex-wrap: wrap;
  justify-content: center;
}

.tag {
  background: var(--midnight-2);
  border: 1px solid rgba(180, 75, 255, 0.45);
  border-radius: 6px;
  padding: clamp(0.4rem, 1.2dvh, 0.7rem) clamp(0.8rem, 2vw, 1.3rem);
  min-width: 9.5rem;
  position: relative;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

/* punched hang-hole, like a real shelf tag */
.tag::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--midnight);
  border: 1px solid rgba(168, 154, 196, 0.5);
}

.tag-label {
  display: block;
  margin-top: 8px;
  font-size: clamp(0.55rem, 1.2dvh, 0.65rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}

.tag-value {
  display: block;
  font-family: var(--display);
  font-size: clamp(0.9rem, 2.2dvh, 1.2rem);
  letter-spacing: 0.03em;
  color: var(--paper);
  margin-top: 2px;
}

.tag-sku {
  display: block;
  margin-top: 3px;
  font-size: clamp(0.5rem, 1.1dvh, 0.6rem);
  letter-spacing: 0.12em;
  color: var(--dim);
}

.tag-gold {
  border-color: var(--gold);
  box-shadow: 0 0 22px rgba(255, 194, 26, 0.25), 0 4px 18px rgba(0, 0, 0, 0.45);
}

.tag-gold .tag-label { color: var(--gold); }
.tag-gold .tag-value { color: var(--gold); }

/* ---------- Footer / parody disclaimer ---------- */

.footer {
  z-index: 1;
  max-width: 70ch;
}

.footer p {
  font-size: clamp(0.55rem, 1.3dvh, 0.7rem);
  line-height: 1.5;
  color: var(--dim);
  opacity: 0.85;
}

/* ---------- Short screens: shrink the logo first ---------- */

@media (max-height: 560px) {
  .logo { height: min(36dvh, 70vw); }
  .tag { min-width: 8rem; }
}

/* ---------- Narrow phones: stack tags tighter ---------- */

@media (max-width: 480px) {
  .tags { gap: 0.45rem; }
  .tag { min-width: 42vw; padding: 0.4rem 0.6rem; }
}

/* ---------- Reduced motion: nothing animates anyway, but be explicit ---------- */

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