/* ═══════════════ DINGDONG — dark spotlight landing ═══════════════ */

:root {
  --bg: #070604;
  --bg-soft: #0d0b07;
  --gold: #f0b90b;
  --gold-soft: #d9a441;
  --gold-dim: #8a6d2f;
  --ink: #f5efe2;
  --ink-dim: #b8ac93;
  --ink-faint: #6f6350;
  --font-display: "Archivo Black", "Archivo", sans-serif;
  --font-body: "Archivo", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* film grain overlay */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 60;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-2%,3%); }
  40% { transform: translate(3%,-2%); }
  60% { transform: translate(-3%,-3%); }
  80% { transform: translate(2%,2%); }
}

/* ═══════════════ buttons ═══════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-body);
  font-weight: 700; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase;
  border-radius: 999px;
  padding: .85em 1.7em;
  transition: box-shadow .3s ease, background .3s ease, color .3s ease, transform .3s ease;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }

.btn--solid {
  background: var(--gold);
  color: #1a1200;
  box-shadow: 0 0 18px rgba(240,185,11,.35);
}
.btn--solid:hover {
  box-shadow: 0 0 34px rgba(240,185,11,.65);
  transform: translateY(-1px);
}

.btn--outline {
  border: 1px solid rgba(245,239,226,.45);
  color: var(--ink);
  background: rgba(255,255,255,.02);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 26px rgba(240,185,11,.3), inset 0 0 14px rgba(240,185,11,.08);
}

/* ═══════════════ navbar ═══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(7,6,4,.92), rgba(7,6,4,0));
  transition: background .4s ease, backdrop-filter .4s ease;
}
.nav.scrolled {
  background: rgba(7,6,4,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240,185,11,.08);
}

.nav__brand {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.15rem; letter-spacing: .04em;
  color: var(--gold);
}
.nav__bell { width: 1.5rem; height: 1.5rem; filter: drop-shadow(0 0 8px rgba(240,185,11,.6)); }

.nav__links {
  display: flex; gap: clamp(1.2rem, 3vw, 2.6rem);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-dim);
}
.nav__links a { transition: color .25s ease, text-shadow .25s ease; }
.nav__links a:hover { color: var(--gold); text-shadow: 0 0 12px rgba(240,185,11,.7); }

.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__icon { color: var(--ink-dim); transition: color .25s ease, filter .25s ease; }
.nav__icon svg { width: 1.05rem; height: 1.05rem; }
.nav__icon:hover { color: var(--gold); filter: drop-shadow(0 0 8px rgba(240,185,11,.8)); }

.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; }

/* ═══════════════ hero ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem clamp(1.2rem, 5vw, 4rem) 4rem;
  overflow: hidden;
}

/* ambient side glow behind the copy */
.hero__glow {
  position: absolute;
  left: -18%; top: 20%;
  width: 55%; height: 70%;
  background: radial-gradient(ellipse at center, rgba(240,185,11,.07), transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1200px, 100%);
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: .01em;
  text-shadow: 0 2px 30px rgba(0,0,0,.8);
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 32px rgba(240,185,11,.45);
}

.hero__sub {
  margin-top: 1.6rem;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-dim);
}

.hero__copy .btn { margin-top: 2.2rem; }

/* ── the spotlight stage ── */
.hero__stage {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  min-height: clamp(420px, 72vh, 680px);
}

/* faint posters on the back wall */
.stage__posters { position: absolute; inset: 0; pointer-events: none; }
.poster {
  position: absolute;
  width: 110px;
  padding: 10px 10px 6px;
  background: #151004;
  border: 1px solid rgba(240,185,11,.12);
  opacity: .16;
  filter: grayscale(.4) sepia(.5);
  text-align: center;
}
.poster img { filter: brightness(.85); }
.poster span {
  display: block; margin-top: 6px;
  font-family: var(--font-display);
  font-size: .5rem; letter-spacing: .12em;
  color: var(--gold);
}
.p1 { top: 4%;  left: 2%;  transform: rotate(-6deg); }
.p2 { top: 1%;  right: 4%; transform: rotate(4deg); width: 95px; }
.p3 { top: 38%; left: -2%; transform: rotate(3deg); width: 90px; }
.p4 { top: 34%; right: -1%; transform: rotate(-4deg); width: 100px; }

/* cone of light from above */
.stage__beam {
  position: absolute;
  top: -12%; left: 50%;
  width: 130%; height: 120%;
  transform: translateX(-50%);
  background: conic-gradient(
    from 180deg at 50% 0%,
    transparent 165deg,
    rgba(255,220,130,.05) 172deg,
    rgba(255,224,140,.13) 180deg,
    rgba(255,220,130,.05) 188deg,
    transparent 195deg
  );
  filter: blur(6px);
  pointer-events: none;
  animation: beamFlicker 7s ease-in-out infinite;
}
@keyframes beamFlicker {
  0%, 100% { opacity: 1; }
  46% { opacity: .82; }
  50% { opacity: .95; }
  54% { opacity: .85; }
}

/* warm halo hugging the mascot */
.stage__halo {
  position: absolute;
  top: 8%; left: 50%;
  width: 78%; aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(240,185,11,.22), rgba(240,185,11,.05) 45%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  animation: haloPulse 4.5s ease-in-out infinite;
}
@keyframes haloPulse {
  0%, 100% { opacity: .85; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.stage__mascot {
  position: relative;
  z-index: 2;
  width: clamp(240px, 34vw, 430px);
  margin-bottom: 8%;
  filter: drop-shadow(0 0 42px rgba(240,185,11,.28)) drop-shadow(0 24px 32px rgba(0,0,0,.75));
  animation: mascotFloat 6s ease-in-out infinite;
}
@keyframes mascotFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* lit floor ellipse + contact shadow */
.stage__floor {
  position: absolute;
  bottom: 2%; left: 50%;
  width: 95%; height: 26%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 45%, rgba(255,214,120,.16), rgba(120,95,40,.05) 55%, transparent 75%);
  filter: blur(4px);
  pointer-events: none;
}
.stage__shadow {
  position: absolute;
  bottom: 7%; left: 50%;
  width: 46%; height: 5%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,0,0,.85), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* DING DONG etched into the floor */
.stage__caption {
  position: absolute;
  bottom: 4.5%; left: 50%;
  transform: translateX(-50%) perspective(300px) rotateX(52deg);
  z-index: 3;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: .18em;
  white-space: nowrap;
  color: rgba(214,180,110,.28);
  text-shadow: 0 0 18px rgba(240,185,11,.25);
  pointer-events: none;
}

/* ═══════════════ DO NOT PRESS ═══════════════ */
.dnp {
  position: relative;
  margin-top: 2.4rem;
  padding: 1em 2.4em;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .22em;
  color: #ff5544;
  background: rgba(20, 6, 4, .6);
  border: 1px solid rgba(255, 85, 68, .55);
  border-radius: 999px;
  cursor: pointer;
  text-shadow: 0 0 12px rgba(255, 85, 68, .6);
  box-shadow: 0 0 22px rgba(255, 85, 68, .18), inset 0 0 18px rgba(255, 85, 68, .07);
  transition: box-shadow .3s ease, transform .15s ease, background .3s ease;
  animation: dnpPulse 2.6s ease-in-out infinite;
}
.dnp:hover {
  background: rgba(35, 8, 5, .8);
  box-shadow: 0 0 40px rgba(255, 85, 68, .4), inset 0 0 22px rgba(255, 85, 68, .12);
}
.dnp:active { transform: scale(.94); }
.dnp__ring {
  position: absolute; inset: -7px;
  border: 1px dashed rgba(255, 85, 68, .35);
  border-radius: 999px;
  pointer-events: none;
}
@keyframes dnpPulse {
  0%, 100% { box-shadow: 0 0 22px rgba(255,85,68,.18), inset 0 0 18px rgba(255,85,68,.07); }
  50% { box-shadow: 0 0 34px rgba(255,85,68,.34), inset 0 0 18px rgba(255,85,68,.1); }
}

/* ═══════════════ sightings ═══════════════ */
.sightings {
  position: relative;
  padding: 5.5rem clamp(1.2rem, 4vw, 3rem) 6rem;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(240,185,11,.05), transparent 70%),
    var(--bg);
}
.sightings__title {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(240,185,11,.4);
}
.sightings__grid {
  columns: 3;
  column-gap: 1.2rem;
  width: min(1150px, 100%);
  margin: 3.2rem auto 0;
}
.sight {
  break-inside: avoid;
  margin: 0 0 1.2rem;
  background: #0e0b06;
  border: 1px solid rgba(240,185,11,.12);
  padding: .55rem .55rem .7rem;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.sight img { width: 100%; filter: saturate(.92); }
.sight figcaption {
  margin-top: .65rem;
  font-size: .58rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-faint);
}
.sight:hover {
  transform: translateY(-4px) rotate(-.4deg);
  border-color: rgba(240,185,11,.45);
  box-shadow: 0 12px 34px rgba(0,0,0,.6), 0 0 26px rgba(240,185,11,.14);
}
.sight:hover figcaption { color: var(--gold-soft); }

/* ═══════════════ may or may not ═══════════════ */
.maybe {
  position: relative;
  padding: 5.5rem clamp(1.2rem, 4vw, 3rem) 6rem;
  text-align: center;
  background: var(--bg-soft);
  border-top: 1px solid rgba(240,185,11,.06);
}
.maybe__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink);
  max-width: 30ch;
  margin: 0 auto;
  line-height: 1.6;
}
.maybe__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  width: min(950px, 100%);
  margin: 3.2rem auto 0;
}
.mcard {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
  background: linear-gradient(165deg, #14100a, #0a0805);
  border: 1px solid rgba(240,185,11,.16);
  overflow: hidden;
  transition: border-color .35s ease, box-shadow .35s ease;
}
.mcard::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 110%, rgba(240,185,11,.13), transparent 65%);
  pointer-events: none;
}
.mcard:hover {
  border-color: rgba(240,185,11,.5);
  box-shadow: 0 0 30px rgba(240,185,11,.16);
}
.mcard svg { width: 42%; color: #2e2513; filter: blur(2px); }
.mcard img { width: 58%; }
.mcard__label {
  position: relative;
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--ink-dim);
}

.mcard--silhouette img {
  filter: brightness(0) drop-shadow(0 0 18px rgba(240,185,11,.35));
}
.mcard--crop img {
  width: 165%; max-width: none;
  margin-top: 55%;
  filter: blur(6px) brightness(.55);
}
.mcard--frost svg { filter: blur(7px); color: #4a3a17; }
.mcard--frost::after {
  content: "";
  position: absolute; inset: 0;
  backdrop-filter: blur(2px);
  background: linear-gradient(120deg, rgba(255,255,255,.03), transparent 55%);
}
.mcard--redacted svg { filter: blur(4px); color: #3a2e13; }
.mcard__redbar {
  position: absolute;
  top: 42%; left: 50%;
  transform: translate(-50%,-50%) rotate(-7deg);
  padding: .3em .9em;
  font-family: var(--font-body);
  font-weight: 700; font-size: .6rem;
  letter-spacing: .3em;
  color: #0a0805;
  background: #b03a2e;
  box-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.mcard--locked svg { filter: none; color: var(--gold-dim); width: 30%; }
.mcard--locked .mcard__label { color: var(--gold-dim); font-size: 1.2rem; }

/* ═══════════════ IP universe ═══════════════ */
.universe {
  position: relative;
  padding: 5rem clamp(1.2rem, 4vw, 3rem) 6rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(240,185,11,.05), transparent 70%),
    var(--bg);
}

.universe__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(240,185,11,.4);
}
.universe__sub {
  margin: 1rem auto 0;
  font-size: .85rem; line-height: 1.65;
  color: var(--ink-dim);
}

.universe__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: min(1200px, 100%);
  margin: 3.5rem auto 0;
}

.uitem {
  padding: 1.4rem 1rem;
  border-left: 1px solid rgba(240,185,11,.14);
  transition: background .35s ease;
}
.uitem:first-child { border-left: 0; }
.uitem:hover { background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(240,185,11,.07), transparent 75%); }

.uitem svg {
  width: 46px; height: 46px;
  margin: 0 auto 1.1rem;
  display: block;
  color: var(--gold-soft);
  filter: drop-shadow(0 0 6px rgba(240,185,11,.25));
  transition: filter .35s ease, transform .35s ease;
}
.uitem:hover svg {
  filter: drop-shadow(0 0 16px rgba(240,185,11,.7));
  transform: translateY(-3px);
}

.uitem h3 {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink);
}
.uitem p {
  margin-top: .55rem;
  font-size: .68rem; line-height: 1.55;
  color: var(--ink-faint);
}

/* ═══════════════ the future is loading ═══════════════ */
.loading {
  position: relative;
  padding: 5.5rem clamp(1.2rem, 4vw, 3rem) 4rem;
  text-align: center;
  background: var(--bg-soft);
  border-top: 1px solid rgba(240,185,11,.06);
  overflow: hidden;
}

/* second spotlight over the lit box */
.loading__spot {
  position: absolute;
  top: 0; left: 50%;
  width: 45%; height: 100%;
  transform: translateX(-50%);
  background: conic-gradient(
    from 180deg at 50% 0%,
    transparent 168deg,
    rgba(255,220,130,.09) 180deg,
    transparent 192deg
  );
  filter: blur(8px);
  pointer-events: none;
}

.loading__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  letter-spacing: .14em; text-transform: uppercase;
}
.loading__sub {
  margin-top: 1rem;
  font-size: .85rem; line-height: 1.65;
  color: var(--ink-dim);
}

.loading__row {
  display: flex; justify-content: center; align-items: flex-end;
  gap: clamp(.6rem, 1.6vw, 1.4rem);
  margin-top: 3rem;
}

.mbox {
  position: relative;
  width: clamp(64px, 9vw, 118px);
  aspect-ratio: 3 / 4;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #16110a, #0a0805);
  border: 1px solid rgba(240,185,11,.22);
  box-shadow: inset 0 0 24px rgba(0,0,0,.8), 0 6px 18px rgba(0,0,0,.6);
  transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}
.mbox span {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.3rem);
  color: var(--gold-dim);
  text-shadow: 0 0 10px rgba(240,185,11,.25);
  transition: color .35s ease, text-shadow .35s ease;
}
.mbox:hover {
  transform: translateY(-6px);
  border-color: rgba(240,185,11,.65);
  box-shadow: inset 0 0 24px rgba(0,0,0,.8), 0 0 28px rgba(240,185,11,.35);
}
.mbox:hover span { color: var(--gold); text-shadow: 0 0 20px rgba(240,185,11,.8); }

/* the one lit box with the mascot peeking */
.mbox--lit {
  border-color: rgba(240,185,11,.6);
  box-shadow: inset 0 0 24px rgba(0,0,0,.7), 0 0 34px rgba(240,185,11,.3);
  overflow: visible;
}
.mbox--lit img {
  position: absolute;
  bottom: 4%; left: 50%;
  width: 74%;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 14px rgba(240,185,11,.5));
  animation: peek 5s ease-in-out infinite;
}
@keyframes peek {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
  50% { transform: translateX(-50%) translateY(-6px) rotate(-2deg); }
}
.mbox--lit span { display: none; }

.loading__tag {
  margin-top: 3rem;
  font-family: var(--font-display);
  font-size: clamp(.95rem, 2vw, 1.25rem);
  letter-spacing: .2em;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(240,185,11,.5);
}
.loading__tag small {
  display: block; margin-top: .5rem;
  font-family: var(--font-body);
  font-size: .58rem; font-weight: 600;
  letter-spacing: .3em;
  color: var(--ink-faint);
  text-shadow: none;
}

/* ═══════════════ footer ═══════════════ */
.footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  padding: 1.4rem clamp(1.2rem, 4vw, 3rem);
  border-top: 1px solid rgba(240,185,11,.08);
  font-size: .6rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint);
  background: var(--bg);
}

/* ═══════════════ scroll reveal ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════ airdrop modal ═══════════════ */
.airdrop {
  position: fixed; inset: 0;
  z-index: 80;
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem;
}
.airdrop[hidden] { display: none; }
.airdrop__backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 3, 1, .82);
  backdrop-filter: blur(6px);
}
.airdrop__card {
  position: relative;
  width: min(430px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.2rem 2rem 2rem;
  background: linear-gradient(170deg, #16110a, #0b0805);
  border: 1px solid rgba(240,185,11,.35);
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 44px rgba(240,185,11,.14);
  text-align: center;
  animation: airdropIn .35s ease;
}
@keyframes airdropIn {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.airdrop__close {
  position: absolute;
  top: .6rem; right: .8rem;
  background: none; border: 0;
  font-size: 1.5rem;
  color: var(--ink-faint);
  cursor: pointer;
  transition: color .25s ease;
}
.airdrop__close:hover { color: var(--gold); }
.airdrop__eyebrow {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: #ff5544;
  text-shadow: 0 0 12px rgba(255,85,68,.5);
}
.airdrop__title {
  margin-top: .7rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: .06em;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(240,185,11,.4);
}
.airdrop__sub {
  margin-top: .8rem;
  font-size: .78rem; line-height: 1.6;
  color: var(--ink-dim);
}
.airdrop__form {
  margin-top: 1.6rem;
  display: flex; flex-direction: column; gap: 1rem;
  text-align: left;
}
.airdrop__form label { display: flex; flex-direction: column; gap: .4rem; }
.airdrop__form label span {
  font-size: .58rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-faint);
}
.airdrop__form input,
.airdrop__form select {
  width: 100%;
  padding: .8em 1em;
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--ink);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(240,185,11,.22);
  border-radius: 8px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
  appearance: none;
}
.airdrop__form select { cursor: pointer; }
.airdrop__form select option { background: #16110a; color: var(--ink); }
.airdrop__form input::placeholder { color: var(--ink-faint); }
.airdrop__form input:focus,
.airdrop__form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(240,185,11,.18);
}
.airdrop__hp { position: absolute !important; left: -9999px; opacity: 0; height: 0; }
.airdrop__submit { justify-content: center; margin-top: .4rem; }
.airdrop__status {
  min-height: 1em;
  font-size: .72rem;
  color: var(--gold-soft);
  text-align: center;
}
.airdrop__card--done .airdrop__form,
.airdrop__card--done .airdrop__sub { display: none; }
.airdrop__done {
  margin-top: 1.6rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.airdrop__done img {
  width: 130px;
  filter: drop-shadow(0 0 30px rgba(240,185,11,.5));
}
.airdrop__done p {
  font-size: .8rem; line-height: 1.6;
  color: var(--ink-dim);
}

/* ═══════════════ DO NOT PRESS effects ═══════════════ */
.fx-layer {
  position: fixed; inset: 0;
  z-index: 90;
  pointer-events: none;
  overflow: hidden;
}

body.fx-shake { animation: fxShake .4s ease; }
@keyframes fxShake {
  0%, 100% { transform: translate(0,0); }
  20% { transform: translate(-8px, 4px); }
  40% { transform: translate(7px, -5px); }
  60% { transform: translate(-5px, -3px); }
  80% { transform: translate(4px, 5px); }
}

body.fx-bellcursor, body.fx-bellcursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24'%3E%3Cpath d='M12 3c.6 0 1 .4 1 1v.6c3.1.5 5.5 3.1 5.5 6.4v4l1.5 2.5c.3.5-.1 1.1-.7 1.1H4.7c-.6 0-1-.6-.7-1.1L5.5 15v-4c0-3.3 2.4-5.9 5.5-6.4V4c0-.6.4-1 1-1Z' fill='%23f0b90b'/%3E%3Cpath d='M10 20a2 2 0 0 0 4 0h-4Z' fill='%23f0b90b'/%3E%3C/svg%3E") 14 14, auto !important;
}

.fx-giant {
  position: absolute;
  left: 50%; top: 50%;
  width: min(85vmin, 700px);
  transform: translate(-50%,-50%);
  filter: drop-shadow(0 0 80px rgba(240,185,11,.8));
  animation: fxGiant .55s ease forwards;
}
@keyframes fxGiant {
  0% { transform: translate(-50%,-50%) scale(.2); opacity: 0; }
  15% { transform: translate(-50%,-50%) scale(1.05); opacity: 1; }
  80% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(1.1); opacity: 0; }
}

.fx-closeup {
  position: absolute;
  left: 50%; top: 50%;
  width: 260%; max-width: none;
  transform: translate(-50%,-32%);
  animation: fxCloseup .9s ease forwards;
}
@keyframes fxCloseup {
  0% { opacity: 0; }
  20%, 75% { opacity: 1; }
  100% { opacity: 0; }
}

.fx-peek {
  position: absolute;
  bottom: 6%;
  width: clamp(140px, 22vw, 240px);
  animation: fxPeek 2.2s ease forwards;
}
.fx-peek--left { left: 0; transform: translateX(-100%) rotate(12deg); }
.fx-peek--right { right: 0; transform: translateX(100%) rotate(-12deg) scaleX(-1); }
@keyframes fxPeek {
  0% {}
  25%, 70% { transform: translateX(-14%) rotate(0deg) var(--flip, ); }
  100% {}
}
.fx-peek--left { --flip: ; }
.fx-peek--right { --flip: scaleX(-1); }

.fx-sticker {
  position: absolute;
  top: -160px;
  width: clamp(70px, 9vw, 120px);
  animation: fxFall 2.6s cubic-bezier(.3,.1,.6,1) forwards;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.6));
}
@keyframes fxFall {
  0% { transform: translateY(0) rotate(-20deg); }
  100% { transform: translateY(120vh) rotate(28deg); }
}

.fx-walker {
  position: absolute;
  bottom: 0;
  left: -140px;
  width: clamp(56px, 7vw, 90px);
  animation: fxWalk 6s linear forwards;
}
@keyframes fxWalk {
  0% { transform: translateX(0) rotate(0deg); }
  10% { transform: translateX(10vw) rotate(-4deg); }
  20% { transform: translateX(20vw) rotate(4deg); }
  30% { transform: translateX(30vw) rotate(-4deg); }
  40% { transform: translateX(40vw) rotate(4deg); }
  50% { transform: translateX(50vw) rotate(-4deg); }
  60% { transform: translateX(60vw) rotate(4deg); }
  70% { transform: translateX(70vw) rotate(-4deg); }
  80% { transform: translateX(80vw) rotate(4deg); }
  90% { transform: translateX(90vw) rotate(-4deg); }
  100% { transform: translateX(110vw) rotate(0deg); }
}

.fx-silhouette {
  position: absolute;
  left: 50%; top: 50%;
  width: min(60vmin, 480px);
  transform: translate(-50%,-50%);
  filter: brightness(0) drop-shadow(0 0 60px rgba(240,185,11,.5));
  animation: fxSil .5s ease forwards;
}
@keyframes fxSil {
  0%, 100% { opacity: 0; }
  40%, 70% { opacity: 1; }
}

.fx-candle {
  position: absolute;
  bottom: -10px;
  right: clamp(20px, 8vw, 120px);
  width: 16px;
  background: linear-gradient(to top, #0f9d58, #34e07a);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 22px rgba(52,224,122,.7);
  animation: fxCandle 1.6s cubic-bezier(.2,.9,.3,1) forwards;
}
.fx-candle::before {
  content: "";
  position: absolute;
  top: -34px; left: 7px;
  width: 2px; height: 34px;
  background: #34e07a;
}
@keyframes fxCandle {
  0% { height: 0; opacity: 1; }
  70% { height: 62vh; opacity: 1; }
  100% { height: 66vh; opacity: 0; }
}

.fx-toast {
  position: fixed;
  right: 1.2rem; top: 4.6rem;
  z-index: 95;
  max-width: 300px;
  padding: .9rem 1.1rem;
  background: rgba(14, 11, 6, .96);
  border: 1px solid rgba(240,185,11,.4);
  color: var(--ink);
  font-size: .74rem; line-height: 1.5;
  box-shadow: 0 10px 34px rgba(0,0,0,.6), 0 0 22px rgba(240,185,11,.12);
  animation: fxToast 2.8s ease forwards;
  pointer-events: none;
}
.fx-toast strong {
  display: block;
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.fx-toast--alert { border-color: rgba(255,85,68,.5); }
.fx-toast--alert strong { color: #ff5544; }
@keyframes fxToast {
  0% { opacity: 0; transform: translateX(30px); }
  12%, 82% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(30px); }
}

.fx-bigtext {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 7rem);
  letter-spacing: .08em;
  white-space: nowrap;
  color: var(--gold);
  text-shadow: 0 0 60px rgba(240,185,11,.8);
  animation: fxBigtext 1s ease forwards;
}
@keyframes fxBigtext {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(.7); }
  20%, 70% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.15); }
}

/* rare: secret universe takeover */
.fx-universe {
  position: fixed; inset: 0;
  z-index: 99;
  background: radial-gradient(ellipse at 50% 40%, #2a1f05, #0d0900 70%);
  display: flex; align-items: center; justify-content: center;
  animation: fxUniverse 2.4s ease forwards;
  pointer-events: none;
  overflow: hidden;
}
.fx-universe::before {
  content: "";
  position: absolute; inset: -20%;
  background-image: radial-gradient(circle 2px at 20% 30%, rgba(240,185,11,.8) 99%, transparent), radial-gradient(circle 1px at 70% 20%, rgba(240,185,11,.6) 99%, transparent), radial-gradient(circle 2px at 85% 60%, rgba(240,185,11,.7) 99%, transparent), radial-gradient(circle 1px at 40% 80%, rgba(240,185,11,.6) 99%, transparent), radial-gradient(circle 2px at 10% 70%, rgba(240,185,11,.5) 99%, transparent), radial-gradient(circle 1px at 55% 50%, rgba(240,185,11,.8) 99%, transparent);
  background-size: 300px 300px;
  animation: fxStars 2.4s linear forwards;
}
@keyframes fxStars { to { transform: translateY(80px); } }
.fx-universe img {
  width: min(50vmin, 380px);
  filter: drop-shadow(0 0 90px rgba(240,185,11,.9));
  animation: haloPulse 1.2s ease-in-out infinite;
}
.fx-universe span {
  position: absolute;
  bottom: 12%;
  font-family: var(--font-display);
  font-size: clamp(.9rem, 2.4vw, 1.5rem);
  letter-spacing: .3em;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(240,185,11,.8);
}
@keyframes fxUniverse {
  0% { opacity: 0; }
  10%, 82% { opacity: 1; }
  100% { opacity: 0; }
}

/* ═══════════════ responsive ═══════════════ */
@media (max-width: 960px) {
  .universe__grid { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
  .uitem:nth-child(4) { border-left: 0; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 0;
    display: none;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.2rem;
    background: rgba(7,6,4,.97);
    font-size: .95rem;
  }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; position: relative; z-index: 51; }
  .nav__right .btn { display: none; }

  .hero { padding-top: 5.5rem; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; display: flex; flex-direction: column; align-items: center; }
  .hero__stage { order: 1; min-height: 62vw; }
  .stage__mascot { width: min(64vw, 300px); }
  .poster { display: none; }

  .loading__row { flex-wrap: wrap; justify-content: center; }
  .mbox { width: 21vw; max-width: 96px; }

  .footer { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .universe__grid { grid-template-columns: repeat(2, 1fr); }
  .uitem { border-left: 0 !important; }
}
