/* ============================================================
   $ROBINHOOD: Robbed in Hood.
   palette: red #E53935 · black #111111 · cream #F7E7D1
            charcoal #444444 · orange #FF8A00
   ============================================================ */

:root {
  --red: #e53935;
  --red-dark: #a8241f;
  --black: #111111;
  --cream: #f7e7d1;
  --charcoal: #444444;
  --orange: #ff8a00;
  --paper: #e8d9b8;
  --font-graffiti: 'Rubik Wet Paint', cursive;
  --font-marker: 'Permanent Marker', cursive;
  --font-comic: 'Bangers', cursive;
  --font-body: 'Rubik', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
}

/* real cursor comes back on touch / reduced motion */
@media (hover: none), (prefers-reduced-motion: reduce) {
  body { cursor: auto; }
  #crosshair { display: none; }
}

a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; }
@media (hover: none) { a, button { cursor: auto; } }

::selection { background: var(--red); color: var(--cream); }

/* ---------- canvases & overlays ---------- */
#fx, #bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
#bg { z-index: 0; opacity: .55; }
#fx { z-index: 900; }

/* ---------- crosshair ---------- */
#crosshair {
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
}
.ch-ring {
  display: block;
  width: 34px; height: 34px;
  border: 2px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(229,57,53,.7), inset 0 0 6px rgba(229,57,53,.4);
  animation: chSpin 4s linear infinite;
  position: relative;
}
.ch-ring::before, .ch-ring::after {
  content: '';
  position: absolute;
  background: var(--red);
}
.ch-ring::before { left: 50%; top: -7px; width: 2px; height: 8px; transform: translateX(-50%); box-shadow: 0 40px 0 var(--red); }
.ch-ring::after  { top: 50%; left: -7px; height: 2px; width: 8px; transform: translateY(-50%); box-shadow: 40px 0 0 var(--red); }
.ch-dot {
  position: absolute;
  left: 50%; top: 50%;
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--orange);
}
@keyframes chSpin { to { transform: rotate(360deg); } }
#crosshair.firing .ch-ring { animation: chSpin 4s linear infinite, chPop .18s ease; }
@keyframes chPop {
  0% { scale: 1; } 40% { scale: 1.6; border-color: var(--orange); } 100% { scale: 1; }
}

/* ---------- HUD ---------- */
#hud {
  position: fixed;
  top: 84px; right: 18px;
  z-index: 950;
  text-align: right;
  pointer-events: none;
}
.hud-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(17,17,17,.82);
  border: 2px solid var(--red);
  border-radius: 14px;
  padding: 8px 14px 8px 8px;
}
.hud-face {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: #1a1a1a;
}
.hud-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--red);
  font-weight: 800;
}
.hud-score {
  font-family: var(--font-comic);
  font-size: 30px;
  line-height: 1;
  color: var(--cream);
  text-shadow: 2px 2px 0 var(--red-dark);
}
.hud-score.bump { animation: scoreBump .3s ease; }
@keyframes scoreBump { 40% { scale: 1.35; color: var(--orange); } }
.hud-hint {
  margin-top: 6px;
  font-family: var(--font-marker);
  font-size: 13px;
  color: rgba(247,231,209,.75);
  transform: rotate(-2deg);
}

/* ---------- rampage banner ---------- */
#rampage-banner {
  position: fixed;
  top: 40%; left: 50%;
  z-index: 980;
  transform: translate(-50%,-50%) scale(0) rotate(-6deg);
  font-family: var(--font-graffiti);
  font-size: clamp(40px, 9vw, 110px);
  color: var(--red);
  text-shadow: 0 0 30px rgba(229,57,53,.9), 4px 4px 0 #000;
  pointer-events: none;
  opacity: 0;
}
#rampage-banner.on {
  animation: rampageIn 1s cubic-bezier(.2,2.5,.4,1) forwards, rampageFlash .25s linear 1s infinite alternate;
}
@keyframes rampageIn { to { transform: translate(-50%,-50%) scale(1) rotate(-6deg); opacity: 1; } }
@keyframes rampageFlash { to { color: var(--orange); text-shadow: 0 0 50px rgba(255,138,0,1), 4px 4px 0 #000; } }

body.shake { animation: bodyShake .28s linear; }
@keyframes bodyShake {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-7px,4px) rotate(-.4deg); }
  40% { transform: translate(6px,-5px) rotate(.4deg); }
  60% { transform: translate(-5px,3px); }
  80% { transform: translate(4px,-2px); }
}

/* ---------- sound button ---------- */
.sound-btn {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 960;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: rgba(17,17,17,.85);
  font-size: 22px;
  transition: transform .15s ease;
}
.sound-btn:hover { transform: scale(1.12) rotate(-6deg); }

/* ---------- targets ---------- */
#targets { position: fixed; inset: 0; z-index: 50; pointer-events: none; overflow: hidden; }
.target {
  position: absolute;
  left: 0; top: 0;
  pointer-events: auto;
  user-select: none;
  will-change: transform;
  line-height: 1;
}
.target .t-emoji { display: block; animation: targetBob 1.6s ease-in-out infinite; }
@keyframes targetBob { 50% { transform: translateY(-8px) rotate(4deg); } }
.target .t-tag {
  position: absolute;
  left: 50%; top: -14px;
  transform: translateX(-50%) rotate(-4deg);
  font-family: var(--font-marker);
  font-size: 11px;
  color: var(--orange);
  white-space: nowrap;
  text-shadow: 1px 1px 0 #000;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 940;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 22px;
  background: linear-gradient(180deg, rgba(10,10,10,.95), rgba(10,10,10,.75) 70%, transparent);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-face {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--red);
  transition: transform .3s cubic-bezier(.2,2,.4,1);
}
.nav-brand:hover .nav-face { transform: rotate(-14deg) scale(1.15); }
.nav-word {
  font-family: var(--font-graffiti);
  font-size: 22px;
  color: var(--cream);
  text-shadow: 2px 2px 0 var(--red-dark);
}
.nav-links { display: flex; gap: 18px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-marker);
  font-size: 15px;
  color: var(--cream);
  opacity: .85;
  transition: color .15s, transform .15s;
  display: inline-block;
}
.nav-links a:hover { color: var(--orange); transform: rotate(-3deg) scale(1.1); opacity: 1; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-comic);
  letter-spacing: 1.5px;
  padding: 10px 22px;
  border-radius: 12px;
  border: 2px solid var(--red);
  transition: transform .15s cubic-bezier(.2,2,.4,1), box-shadow .15s;
  transform: rotate(-1deg);
  position: relative;
}
.btn:nth-child(2n) { transform: rotate(1deg); }
.btn.big { font-size: 22px; padding: 13px 30px; }
.btn-red {
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  color: var(--cream);
  box-shadow: 0 5px 0 #6d1512, 0 8px 20px rgba(229,57,53,.35);
}
.btn-red:hover { transform: translateY(-3px) rotate(-1deg) scale(1.04); box-shadow: 0 8px 0 #6d1512, 0 14px 28px rgba(229,57,53,.5); }
.btn-red:active { transform: translateY(2px); box-shadow: 0 2px 0 #6d1512; }
.btn-ghost {
  background: rgba(17,17,17,.6);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px) scale(1.04); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 6vw 40px;
  z-index: 1;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 40% at 70% 20%, rgba(229,57,53,.10), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(229,57,53,.14), transparent 60%),
    var(--black);
}
.hero-moon {
  position: absolute;
  top: 8%; right: 12%;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f3e2c0, #cbb287 70%);
  box-shadow: 0 0 80px 20px rgba(243,226,192,.25);
  opacity: .5;
  animation: moonDrift 24s ease-in-out infinite alternate;
}
@keyframes moonDrift { to { transform: translate(-30px, 14px); } }
.hero-city {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 34vh;
  background:
    linear-gradient(180deg, transparent, rgba(17,17,17,.9) 80%),
    repeating-linear-gradient(90deg,
      #0a0a0a 0 60px, #151515 60px 120px, #0d0d0d 120px 210px, #101010 210px 280px);
  clip-path: polygon(0 45%, 6% 45%, 6% 25%, 12% 25%, 12% 55%, 19% 55%, 19% 10%,
    24% 10%, 24% 40%, 31% 40%, 31% 30%, 38% 30%, 38% 60%, 45% 60%, 45% 18%,
    51% 18%, 51% 48%, 58% 48%, 58% 35%, 64% 35%, 64% 8%, 69% 8%, 69% 42%,
    76% 42%, 76% 25%, 83% 25%, 83% 52%, 90% 52%, 90% 30%, 96% 30%, 96% 45%, 100% 45%,
    100% 100%, 0 100%);
  opacity: .8;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 30px;
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
}

.hero-wanted-tag {
  display: inline-block;
  font-family: var(--font-marker);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--orange);
  border: 2px dashed var(--orange);
  padding: 5px 14px;
  transform: rotate(-2deg);
  margin-bottom: 18px;
  background: rgba(255,138,0,.06);
}

.hero-title {
  font-family: var(--font-graffiti);
  font-size: clamp(34px, 7vw, 100px);
  line-height: .95;
  color: var(--cream);
  text-shadow: 4px 4px 0 #000, 0 0 40px rgba(229,57,53,.25);
  letter-spacing: 2px;
  white-space: nowrap;
}
.hero-title .dollar {
  color: var(--red);
  text-shadow: 3px 3px 0 #000, 0 0 30px rgba(229,57,53,.6);
  display: inline-block;
  animation: dollarPulse 2.2s ease-in-out infinite;
}
@keyframes dollarPulse { 50% { transform: scale(1.12) rotate(-4deg); text-shadow: 3px 3px 0 #000, 0 0 55px rgba(229,57,53,1); } }

.hero-underline {
  width: min(430px, 80%);
  height: 16px;
  margin: 8px 0 18px;
  background: var(--red);
  border-radius: 3px;
  transform: rotate(-1.2deg) skewX(-14deg);
  box-shadow: 0 4px 16px rgba(229,57,53,.5);
  position: relative;
}
.hero-underline::after {
  content: '';
  position: absolute;
  right: -6px; top: 12px;
  width: 8px; height: 26px;
  background: var(--red);
  border-radius: 0 0 6px 6px;
  opacity: .8;
}

.hero-tag {
  font-family: var(--font-marker);
  font-size: clamp(18px, 2.5vw, 30px);
  color: var(--cream);
  margin-bottom: 14px;
}
.hero-tag span { color: var(--red); }

.hero-sub {
  max-width: 520px;
  line-height: 1.65;
  color: rgba(247,231,209,.85);
  margin-bottom: 26px;
}
.hero-sub b { color: var(--orange); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.ca-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  background: rgba(255,255,255,.04);
  border: 2px solid var(--charcoal);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  transition: border-color .15s, transform .15s;
}
.ca-bar:hover { border-color: var(--red); transform: scale(1.02); }
.ca-label {
  font-family: var(--font-comic);
  color: var(--red);
  font-size: 18px;
  letter-spacing: 1px;
}
.ca-value {
  color: rgba(247,231,209,.8);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ca-copy {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 6px;
  padding: 3px 8px;
}
.ca-bar.copied .ca-copy { color: #3ddc84; border-color: #3ddc84; }

/* hero cat */
.hero-cat-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-cat {
  width: min(430px, 90%);
  position: relative;
  z-index: 2;
  animation: catFloat 4s ease-in-out infinite;
  transition: transform .2s cubic-bezier(.2,2,.4,1);
  user-select: none;
  -webkit-user-drag: none;
}
.hero-cat:hover { transform: scale(1.04) rotate(-2deg); }
.hero-cat.recoil { animation: catFloat 4s ease-in-out infinite, catRecoil .22s ease; }
@keyframes catFloat { 50% { transform: translateY(-14px); } }
@keyframes catRecoil {
  30% { transform: translate(7px, -10px) rotate(3.5deg); }
  100% { transform: translate(0, 0); }
}
.cat-glow {
  position: absolute;
  inset: 10% 5% 5% 5%;
  background: radial-gradient(circle, rgba(229,57,53,.30), transparent 65%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 50% { opacity: .5; } }
.cat-shadow {
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 26px;
  background: radial-gradient(ellipse, rgba(0,0,0,.8), transparent 70%);
  animation: shadowPulse 4s ease-in-out infinite;
}
@keyframes shadowPulse { 50% { scale: .85; opacity: .7; } }

.scroll-hint {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  color: var(--red);
  font-size: 22px;
  animation: hintBounce 1.4s ease-in-out infinite;
  text-shadow: 0 0 12px rgba(229,57,53,.8);
}
@keyframes hintBounce { 50% { transform: translate(-50%, 10px); } }

/* ---------- ticker ---------- */
.ticker {
  position: relative;
  z-index: 5;
  background: var(--red);
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  overflow: hidden;
  transform: rotate(-1deg) scale(1.02);
  box-shadow: 0 6px 30px rgba(229,57,53,.35);
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 10px 0;
  white-space: nowrap;
  animation: tickerScroll 22s linear infinite;
}
.ticker-track span {
  font-family: var(--font-comic);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--black);
}
.ticker-track em { color: var(--cream); font-style: normal; }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section {
  position: relative;
  z-index: 1;
  padding: 90px 6vw;
  max-width: 1250px;
  margin: 0 auto;
}
.section.dark {
  max-width: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(229,57,53,.08), transparent 70%),
    #0b0b0b;
  border-top: 2px solid rgba(229,57,53,.2);
  border-bottom: 2px solid rgba(229,57,53,.2);
}
.section.dark > * { max-width: 1250px; margin-left: auto; margin-right: auto; }

.section-title {
  font-family: var(--font-graffiti);
  font-size: clamp(34px, 5vw, 64px);
  color: var(--cream);
  text-shadow: 3px 3px 0 #000;
  margin-bottom: 10px;
  transform: rotate(-1deg);
}
.section-title span { color: var(--red); }
.section-sub {
  font-family: var(--font-marker);
  color: var(--orange);
  margin-bottom: 40px;
  transform: rotate(-1deg);
}

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 30px;
}
.wanted-poster {
  background: var(--paper);
  color: #241a0e;
  text-align: center;
  padding: 22px 18px 26px;
  border: 6px double #5c452a;
  transform: rotate(-3deg);
  box-shadow: 0 14px 40px rgba(0,0,0,.6);
  transition: transform .25s cubic-bezier(.2,2,.4,1);
  position: relative;
  font-family: var(--font-marker);
}
.wanted-poster:hover { transform: rotate(1deg) scale(1.04); }
.wanted-poster::before {
  content: '📌';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  font-size: 26px;
}
.wp-head { font-size: 44px; letter-spacing: 8px; }
.wanted-poster img {
  width: 78%;
  margin: 12px 0;
  border: 3px solid #5c452a;
  background: #1a1a1a;
}
.wp-name { font-size: 24px; }
.wp-crime { font-size: 13px; margin: 6px 0 10px; opacity: .8; }
.wp-reward {
  font-size: 16px;
  color: var(--red-dark);
  border-top: 2px dashed #5c452a;
  padding-top: 10px;
}
.about-copy p { line-height: 1.75; margin-bottom: 18px; font-size: 17px; color: rgba(247,231,209,.9); }
.about-copy b { color: var(--red); }
.about-badges { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.about-badges li {
  background: rgba(255,255,255,.04);
  border-left: 4px solid var(--red);
  border-radius: 0 10px 10px 0;
  padding: 10px 16px;
  font-size: 15px;
  transition: transform .2s, background .2s;
}
.about-badges li:hover { transform: translateX(8px); background: rgba(229,57,53,.1); }
.about-badges li b { color: var(--cream); margin-right: 8px; }
.about-badges li span { color: rgba(247,231,209,.6); font-family: var(--font-marker); font-size: 13px; }

/* ---------- tokenomics ---------- */
.tok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.tok-card {
  background: rgba(255,255,255,.03);
  border: 2px solid var(--charcoal);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  transition: transform .2s cubic-bezier(.2,2,.4,1), border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.tok-card::before {
  content: '$';
  position: absolute;
  right: -12px; bottom: -26px;
  font-family: var(--font-graffiti);
  font-size: 110px;
  color: rgba(229,57,53,.07);
  transform: rotate(-12deg);
}
.tok-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: var(--red);
  box-shadow: 0 16px 40px rgba(229,57,53,.25);
}
.tok-num {
  font-family: var(--font-comic);
  font-size: 44px;
  color: var(--red);
  text-shadow: 2px 2px 0 #000;
  letter-spacing: 1px;
}
.tok-label { font-weight: 800; letter-spacing: 3px; font-size: 13px; margin: 8px 0 4px; }
.tok-note { font-family: var(--font-marker); font-size: 13px; color: rgba(247,231,209,.55); }

/* ---------- heistmap ---------- */
.heist-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  counter-reset: heist;
}
.heist-card {
  background: rgba(255,255,255,.03);
  border: 2px solid var(--charcoal);
  border-radius: 18px;
  padding: 26px 22px;
  transition: transform .2s cubic-bezier(.2,2,.4,1), border-color .2s;
}
.heist-card:nth-child(odd) { transform: rotate(-.8deg); }
.heist-card:nth-child(even) { transform: rotate(.8deg); }
.heist-card:hover { transform: translateY(-8px) rotate(0deg); border-color: var(--orange); }
.hc-phase {
  font-family: var(--font-comic);
  color: var(--orange);
  letter-spacing: 3px;
  font-size: 15px;
}
.hc-title {
  font-family: var(--font-graffiti);
  font-size: 24px;
  color: var(--cream);
  margin: 6px 0 14px;
}
.heist-card ul { list-style: none; }
.heist-card li {
  font-size: 14px;
  color: rgba(247,231,209,.8);
  padding: 5px 0 5px 22px;
  position: relative;
}
.heist-card li::before {
  content: '➤';
  position: absolute;
  left: 0;
  color: var(--red);
}

/* ---------- how to buy ---------- */
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}
.how-card {
  background: rgba(255,255,255,.03);
  border: 2px solid var(--charcoal);
  border-radius: 18px;
  padding: 30px 22px 24px;
  position: relative;
  transition: transform .2s cubic-bezier(.2,2,.4,1), border-color .2s;
}
.how-card:hover { transform: translateY(-8px) rotate(-1deg); border-color: var(--red); }
.how-num {
  position: absolute;
  top: -18px; left: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-comic);
  font-size: 24px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 0 var(--red-dark);
  transform: rotate(-6deg);
}
.how-card h3 { font-family: var(--font-marker); color: var(--orange); margin: 6px 0 10px; font-size: 18px; }
.how-card p { font-size: 14px; line-height: 1.6; color: rgba(247,231,209,.8); }
.how-card p a { color: var(--orange); text-decoration: underline; }
.how-card p a:hover { color: var(--red); }
.how-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---------- footer ---------- */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 70px 6vw 40px;
  background: linear-gradient(180deg, transparent, rgba(229,57,53,.08));
  border-top: 2px solid rgba(229,57,53,.15);
}
.footer-cat { width: 120px; animation: catFloat 4s ease-in-out infinite; }
.footer-word {
  font-family: var(--font-graffiti);
  font-size: 34px;
  color: var(--cream);
  text-shadow: 2px 2px 0 var(--red-dark);
  margin: 10px 0 16px;
}
.footer-links { display: flex; gap: 26px; justify-content: center; margin-bottom: 26px; }
.footer-links a {
  font-family: var(--font-marker);
  color: var(--orange);
  transition: transform .15s, color .15s;
  display: inline-block;
}
.footer-links a:hover { color: var(--red); transform: rotate(-4deg) scale(1.15); }
.footer-disclaimer {
  max-width: 640px;
  margin: 0 auto 14px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(247,231,209,.45);
}
.footer-love { font-family: var(--font-marker); font-size: 13px; color: rgba(247,231,209,.6); }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px) rotate(-.5deg);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,1.4,.4,1);
}
.reveal.in { opacity: 1; transform: translateY(0) rotate(0); }

/* ---------- floating pew text (spawned by JS) ---------- */
.pew-text {
  position: fixed;
  z-index: 990;
  pointer-events: none;
  font-family: var(--font-comic);
  color: var(--orange);
  text-shadow: 2px 2px 0 #000, 0 0 18px rgba(255,138,0,.8);
  animation: pewFloat .9s cubic-bezier(.2,1.5,.4,1) forwards;
  white-space: nowrap;
}
@keyframes pewFloat {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(.3) rotate(var(--rot)); }
  20% { opacity: 1; transform: translate(-50%,-70%) scale(1.25) rotate(var(--rot)); }
  100% { opacity: 0; transform: translate(-50%,-190%) scale(.9) rotate(var(--rot)); }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-underline { margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .wanted-poster { max-width: 320px; margin: 0 auto; }
  .nav-links { display: none; }
  .nav-buy { margin-left: auto; white-space: nowrap; font-size: 15px; padding: 8px 14px; }
  #hud { top: 70px; right: 10px; scale: .85; transform-origin: top right; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
