/* =====================================================
   SIX SAYVEN CAT — kitchen sink CSS
   warning: this file has had too much catnip
   ===================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

:root {
  --hot-pink: #ff2d95;
  --neon-yellow: #fff700;
  --neon-cyan: #00fff7;
  --acid-green: #39ff14;
  --neon-orange: #ff6b00;
  --neon-purple: #b400ff;
  --neon-red: #ff003c;
  --black: #0a0010;
}

@font-face { font-display: swap; }

body {
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', cursive, system-ui;
  background:
    radial-gradient(circle at 20% 10%, #ff2d95 0%, transparent 35%),
    radial-gradient(circle at 80% 30%, #00fff7 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, #fff700 0%, transparent 35%),
    radial-gradient(circle at 10% 90%, #39ff14 0%, transparent 35%),
    radial-gradient(circle at 90% 90%, #b400ff 0%, transparent 35%),
    linear-gradient(45deg, #ff003c, #ff6b00, #fff700, #39ff14, #00fff7, #b400ff, #ff003c);
  background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%, 600% 600%;
  background-attachment: fixed;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  animation: bg-pan 18s ease infinite, body-hue 22s linear infinite;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text y='26' font-size='28'>🐱</text></svg>") 4 4, auto;
  text-shadow: 0 0 1px rgba(0,0,0,.6);
}

@keyframes bg-pan {
  0%   { background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 100% 0%, 0% 50%; }
  50%  { background-position: 100% 100%, 0% 0%, 0% 0%, 100% 0%, 0% 100%, 100% 50%; }
  100% { background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 100% 0%, 0% 50%; }
}
@keyframes body-hue { from { filter: hue-rotate(0deg);} to { filter: hue-rotate(360deg);} }

/* ============ overlays ============ */
.strobe {
  position: fixed; inset: 0; pointer-events: none; z-index: 5;
  background: white; opacity: 0; mix-blend-mode: overlay;
  animation: strobe 8s steps(1) infinite;
}
@keyframes strobe {
  0%,98% { opacity: 0; }
  99%    { opacity: 0.35; }
  100%   { opacity: 0; }
}
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 4; opacity: .07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='.9' numOctaves='2' /></filter><rect width='200' height='200' filter='url(%23n)' opacity='.8'/></svg>");
  mix-blend-mode: overlay;
}
.vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 3;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,.55) 100%);
}
#confetti-layer, #rain-layer, #emoji-rain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999; overflow: hidden;
}
#cursor-trail { position: fixed; inset: 0; pointer-events: none; z-index: 9998; }
.trail-cat {
  position: absolute; width: 36px; height: 36px; border-radius: 50%;
  background-size: cover; background-position: center;
  pointer-events: none; transform: translate(-50%,-50%);
  animation: trail-fade 700ms forwards;
  box-shadow: 0 0 12px rgba(255,255,255,.5);
}
@keyframes trail-fade {
  from { opacity: 1; transform: translate(-50%,-50%) scale(1) rotate(0); }
  to   { opacity: 0; transform: translate(-50%,-50%) scale(.4) rotate(360deg); }
}

.rain-cat {
  position: absolute; top: -80px;
  width: 60px; height: 60px; border-radius: 50%;
  background-size: cover;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.6));
  animation: fall linear forwards;
}
@keyframes fall {
  from { transform: translateY(0) rotate(0); }
  to   { transform: translateY(110vh) rotate(720deg); }
}

.emoji-bit {
  position: absolute; top: -40px; font-size: 28px;
  animation: fall linear forwards;
  filter: drop-shadow(0 0 4px rgba(255,255,255,.5));
}

/* ============ audio toggle ============ */
.audio-toggle {
  position: fixed; right: 14px; top: 56px; z-index: 10000;
  background: var(--neon-yellow); color: #000; border: 4px dashed #000;
  font-family: inherit; font-weight: 900; font-size: 12px;
  padding: 8px 12px; border-radius: 16px; cursor: pointer;
  box-shadow: 4px 4px 0 #000, 8px 8px 0 var(--hot-pink);
  transition: transform .1s;
  text-transform: uppercase;
  max-width: 240px;
}
.audio-toggle:hover { transform: rotate(-4deg) scale(1.05); background: var(--neon-cyan); }
.audio-toggle.on { background: var(--acid-green); }

/* ============ top marquee ============ */
.top-bar {
  position: sticky; top: 0; z-index: 100;
  background: black; color: var(--neon-yellow);
  font-weight: 900; font-size: 14px;
  border-bottom: 3px solid var(--neon-red);
  overflow: hidden; white-space: nowrap;
}
.marquee {
  display: inline-flex; gap: 60px; padding: 8px 0;
  animation: scroll-left 35s linear infinite;
  will-change: transform;
}
.marquee > span { display: inline-block; padding-right: 60px; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.marquee-break {
  background: var(--neon-purple); padding: 6px 0;
  border-top: 4px solid black; border-bottom: 4px solid black;
  overflow: hidden; color: #fff; font-weight: 900; font-size: 18px;
}
.marquee-break.reverse .marquee { animation-name: scroll-right; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 32px; z-index: 99;
  display: flex; gap: 8px; padding: 8px;
  flex-wrap: wrap; justify-content: center;
  background: rgba(0,0,0,.85); border-bottom: 3px dashed var(--neon-cyan);
}
.nav-cat {
  color: #fff; text-decoration: none; font-weight: 900;
  padding: 6px 12px; border: 3px solid var(--neon-yellow);
  border-radius: 999px; background: var(--hot-pink);
  text-transform: uppercase; font-size: 13px;
  transition: transform .15s, background .15s;
  box-shadow: 3px 3px 0 #000;
}
.nav-cat:hover {
  transform: rotate(-3deg) scale(1.15);
  background: var(--neon-cyan); color: #000;
}

/* ============ HERO ============ */
.hero {
  position: relative; padding: 60px 12px 40px;
  text-align: center;
  overflow: hidden;
}
.disco-floor {
  position: absolute; inset: 0; opacity: .5;
  background:
    repeating-linear-gradient(45deg,
      var(--hot-pink) 0 30px,
      var(--neon-yellow) 30px 60px,
      var(--neon-cyan) 60px 90px,
      var(--acid-green) 90px 120px,
      var(--neon-purple) 120px 150px);
  animation: disco-pan 4s linear infinite;
  mix-blend-mode: overlay;
}
@keyframes disco-pan { from { background-position: 0 0; } to { background-position: 300px 0; } }

.disco-lights { position: absolute; inset: 0; pointer-events: none; }
.disco-lights span {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  filter: blur(60px); opacity: .8;
  mix-blend-mode: screen;
  animation: float-light 7s ease-in-out infinite;
}
.disco-lights span:nth-child(1){ background: var(--hot-pink);   top: -200px; left: -200px;  animation-delay: 0s; }
.disco-lights span:nth-child(2){ background: var(--neon-cyan);  top: -150px; right: -200px; animation-delay: 1s; }
.disco-lights span:nth-child(3){ background: var(--neon-yellow);bottom: -200px; left: 10%;  animation-delay: 2s; }
.disco-lights span:nth-child(4){ background: var(--acid-green); bottom: -200px; right: 10%; animation-delay: 3s; }
.disco-lights span:nth-child(5){ background: var(--neon-purple);top: 30%; left: 40%;        animation-delay: 1.5s; }
.disco-lights span:nth-child(6){ background: var(--neon-orange);top: 20%; right: 30%;       animation-delay: 2.5s; }
@keyframes float-light {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(60px,-40px) scale(1.3); }
}

/* hero orbit */
.hero-orbit {
  position: relative; width: 100%; max-width: 700px; height: 700px;
  margin: 0 auto;
}
.orbit-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  display: grid; place-items: center;
}
.ring-1 { animation: orbit-spin 28s linear infinite; }
.ring-2 { animation: orbit-spin 22s linear reverse infinite; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.orbit-cat {
  position: absolute;
  top: 50%; left: 50%;
  width: 90px; height: 90px; object-fit: cover; margin: -45px 0 0 -45px;
  border: 4px solid #fff; border-radius: 50%;
  box-shadow: 0 0 18px rgba(255,255,255,.6), 0 0 4px var(--neon-yellow);
}
.ring-2 .orbit-cat { width: 70px; height: 70px; margin: -35px 0 0 -35px; }

/* ring-1: 8 cats around a 700px circle, radius ~320 */
.ring-1 .orbit-cat:nth-child(1) { transform: rotate(  0deg) translateY(-320px) rotate(  0deg); }
.ring-1 .orbit-cat:nth-child(2) { transform: rotate( 45deg) translateY(-320px) rotate(-45deg); }
.ring-1 .orbit-cat:nth-child(3) { transform: rotate( 90deg) translateY(-320px) rotate(-90deg); }
.ring-1 .orbit-cat:nth-child(4) { transform: rotate(135deg) translateY(-320px) rotate(-135deg); }
.ring-1 .orbit-cat:nth-child(5) { transform: rotate(180deg) translateY(-320px) rotate(-180deg); }
.ring-1 .orbit-cat:nth-child(6) { transform: rotate(225deg) translateY(-320px) rotate(-225deg); }
.ring-1 .orbit-cat:nth-child(7) { transform: rotate(270deg) translateY(-320px) rotate(-270deg); }
.ring-1 .orbit-cat:nth-child(8) { transform: rotate(315deg) translateY(-320px) rotate(-315deg); }

/* ring-2: 6 cats around an inner circle */
.ring-2 .orbit-cat:nth-child(1) { transform: rotate(  0deg) translateY(-200px) rotate(  0deg); }
.ring-2 .orbit-cat:nth-child(2) { transform: rotate( 60deg) translateY(-200px) rotate(-60deg); }
.ring-2 .orbit-cat:nth-child(3) { transform: rotate(120deg) translateY(-200px) rotate(-120deg); }
.ring-2 .orbit-cat:nth-child(4) { transform: rotate(180deg) translateY(-200px) rotate(-180deg); }
.ring-2 .orbit-cat:nth-child(5) { transform: rotate(240deg) translateY(-200px) rotate(-240deg); }
.ring-2 .orbit-cat:nth-child(6) { transform: rotate(300deg) translateY(-200px) rotate(-300deg); }

.hero-center {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
}
.hero-frame {
  position: relative; width: 280px; height: 280px;
  border-radius: 50%; overflow: hidden;
  border: 8px solid #fff;
  box-shadow:
    0 0 0 4px var(--neon-red),
    0 0 0 8px var(--neon-yellow),
    0 0 0 12px var(--acid-green),
    0 0 60px rgba(255,255,255,.6);
  pointer-events: auto; cursor: pointer;
  animation: hero-bob 3s ease-in-out infinite, hero-spin-color 4s linear infinite;
}
@keyframes hero-bob { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes hero-spin-color {
  0%   { box-shadow: 0 0 0 4px var(--neon-red), 0 0 0 8px var(--neon-yellow), 0 0 0 12px var(--acid-green), 0 0 60px rgba(255,255,255,.6); }
  33%  { box-shadow: 0 0 0 4px var(--neon-cyan), 0 0 0 8px var(--hot-pink), 0 0 0 12px var(--neon-yellow), 0 0 60px rgba(255,255,255,.6); }
  66%  { box-shadow: 0 0 0 4px var(--neon-purple), 0 0 0 8px var(--acid-green), 0 0 0 12px var(--neon-orange), 0 0 60px rgba(255,255,255,.6); }
  100% { box-shadow: 0 0 0 4px var(--neon-red), 0 0 0 8px var(--neon-yellow), 0 0 0 12px var(--acid-green), 0 0 60px rgba(255,255,255,.6); }
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame-glow {
  position: absolute; inset: -50%; border-radius: 50%;
  background: conic-gradient(from 0deg,
    var(--hot-pink), var(--neon-yellow), var(--acid-green),
    var(--neon-cyan), var(--neon-purple), var(--hot-pink));
  z-index: -1; filter: blur(40px); animation: orbit-spin 8s linear infinite;
}
.hero-frame.click-pop { animation: hero-pop .4s; }
@keyframes hero-pop { 0%{transform:scale(1);} 50%{transform:scale(1.3) rotate(20deg);} 100%{transform:scale(1);} }

/* big title */
.big-title {
  font-family: 'Impact','Arial Black',sans-serif;
  font-size: clamp(48px, 9vw, 160px);
  letter-spacing: 2px;
  margin: 24px 0 6px;
  position: relative;
  text-transform: uppercase;
  -webkit-text-stroke: 3px black;
}
.big-title span {
  display: inline-block;
  background: linear-gradient(180deg, #fff700 0%, #ff2d95 50%, #00fff7 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 4px 4px 0 #000, 8px 8px 0 var(--hot-pink), 12px 12px 0 var(--neon-cyan);
  animation: letter-jump 1.4s ease-in-out infinite;
}
.big-title span:nth-child(2n)  { animation-delay: .1s; }
.big-title span:nth-child(3n)  { animation-delay: .2s; }
.big-title span:nth-child(4n)  { animation-delay: .3s; }
.big-title span:nth-child(5n)  { animation-delay: .4s; }
.big-title span:nth-child(7n)  { animation-delay: .5s; }
@keyframes letter-jump {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-12px) rotate(6deg); }
}

.subtitle {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative; display: inline-block;
  background: rgba(0,0,0,.45);
  padding: 6px 16px; border-radius: 99px;
  border: 3px solid var(--neon-yellow);
}

/* glitch */
.glitch { position: relative; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  padding: 6px 16px; border-radius: 99px;
  border: 3px solid var(--neon-yellow);
  pointer-events: none;
}
.glitch::before { color: var(--neon-cyan); transform: translate(-2px,-1px); clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); animation: glitch-shift 2s infinite linear; }
.glitch::after  { color: var(--hot-pink);  transform: translate(2px,1px);   clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); animation: glitch-shift 2.3s infinite linear reverse; }
@keyframes glitch-shift {
  0%, 100% { transform: translate(0,0); }
  20%      { transform: translate(-3px,1px); }
  40%      { transform: translate(2px,-2px); }
  60%      { transform: translate(-1px,2px); }
  80%      { transform: translate(3px,-1px); }
}

/* ticker */
.ticker-strip {
  display: inline-flex; gap: 14px; flex-wrap: wrap;
  background: #000; color: var(--acid-green);
  border: 3px solid var(--acid-green);
  font-family: 'Consolas','Courier New',monospace;
  font-size: 14px; font-weight: 700;
  padding: 8px 14px; border-radius: 6px;
  margin: 16px auto; box-shadow: 0 0 20px var(--acid-green);
  align-items: center; justify-content: center;
}
.ticker-strip .t-label {
  background: var(--neon-red); color: #fff; padding: 2px 6px;
  border-radius: 3px; font-size: 11px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }
.t-change { color: var(--acid-green); }

/* cta */
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 20px 0; }
.btn {
  display: inline-flex; gap: 6px; align-items: center;
  font-family: inherit; font-weight: 900; font-size: 16px;
  text-decoration: none; color: #000;
  padding: 12px 18px; border-radius: 14px;
  background: var(--neon-yellow);
  border: 4px solid #000; cursor: pointer;
  box-shadow: 4px 4px 0 #000, 8px 8px 0 var(--hot-pink);
  text-transform: uppercase; letter-spacing: 1px;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover {
  transform: translate(-3px,-3px) rotate(-2deg);
  box-shadow: 7px 7px 0 #000, 11px 11px 0 var(--hot-pink);
  background: var(--neon-cyan);
}
.btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 #000, 4px 4px 0 var(--hot-pink); }
.btn.buy   { background: var(--acid-green); }
.btn.chart { background: var(--neon-cyan); }
.btn.dex   { background: var(--neon-orange); color: #fff; }
.btn.tg    { background: var(--neon-purple); color: #fff; }
.btn.x     { background: #000; color: #fff; }

.big-btn { font-size: 22px; padding: 16px 26px; animation: btn-wiggle 2s ease-in-out infinite; }
@keyframes btn-wiggle {
  0%, 100% { transform: rotate(-3deg) scale(1); }
  50%      { transform: rotate(3deg)  scale(1.07); }
}
#buy-btn.runaway { transition: transform .25s; }

.btn.mega {
  font-size: 36px; padding: 24px 40px;
  background: linear-gradient(45deg, var(--hot-pink), var(--neon-yellow), var(--acid-green), var(--neon-cyan), var(--neon-purple));
  background-size: 400% 400%;
  animation: mega-pulse 1.2s ease-in-out infinite, bg-pan 3s ease infinite;
  color: #000; -webkit-text-stroke: 1px #000;
  border: 6px solid #000;
}
@keyframes mega-pulse {
  0%,100% { transform: scale(1) rotate(-2deg); }
  50%     { transform: scale(1.1) rotate(2deg); }
}

.contract-pill {
  display: inline-flex; gap: 8px; align-items: center; flex-wrap: wrap;
  background: #000; color: var(--neon-cyan);
  border: 3px dashed var(--neon-yellow);
  padding: 8px 14px; border-radius: 99px;
  font-family: 'Consolas','Courier New',monospace; font-size: 14px;
  margin-top: 10px; max-width: 92vw;
}
.contract-pill code { color: var(--neon-yellow); word-break: break-all; }
.copy-btn {
  background: var(--neon-yellow); color: #000; border: none;
  font-family: inherit; font-weight: 900; cursor: pointer;
  padding: 4px 10px; border-radius: 12px;
}
.copy-btn:hover { background: var(--acid-green); }
.copy-btn.copied { background: var(--hot-pink); color: #fff; }

/* ============ SECTIONS ============ */
.section {
  padding: 70px 5vw 50px;
  position: relative;
}
.section-title {
  font-family: 'Impact','Arial Black',sans-serif;
  font-size: clamp(34px, 6vw, 80px);
  text-align: center; margin-bottom: 30px;
  text-transform: uppercase;
  color: #fff;
  -webkit-text-stroke: 2px #000;
  text-shadow: 4px 4px 0 #000, 8px 8px 0 var(--hot-pink);
}

.wobble  { animation: wobble 3s ease-in-out infinite; }
@keyframes wobble {
  0%,100% { transform: rotate(-3deg); }
  50%     { transform: rotate(3deg); }
}
.shake { animation: shake .4s cubic-bezier(.36,.07,.19,.97) infinite; }
@keyframes shake {
  0%,100% { transform: translate(0,0); }
  25% { transform: translate(-4px, 2px); }
  50% { transform: translate(3px, -2px); }
  75% { transform: translate(-2px, 3px); }
}
.bounce { animation: bounce 1.5s ease-in-out infinite; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-16px); }
}
.spin-slow { animation: orbit-spin 10s linear infinite; }
.pulse { animation: pulse 1.3s ease-in-out infinite; }
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.15); }
}
.flash { animation: flashbg 1s steps(2) infinite; }
@keyframes flashbg {
  0%,100% { background: var(--neon-yellow); }
  50%     { background: var(--hot-pink); }
}
.flash-text {
  animation: flashtxt 1s steps(2) infinite;
}
@keyframes flashtxt {
  0%,100% { color: var(--neon-yellow); text-shadow: 4px 4px 0 #000, 8px 8px 0 var(--neon-red); }
  50%     { color: var(--neon-red);    text-shadow: 4px 4px 0 #000, 8px 8px 0 var(--neon-yellow); }
}
.rainbow-text {
  background: linear-gradient(90deg, #ff003c, #ff6b00, #fff700, #39ff14, #00fff7, #b400ff, #ff003c);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow-slide 3s linear infinite;
}
@keyframes rainbow-slide { from { background-position: 0% 0; } to { background-position: 300% 0; } }
.blink { animation: blink 1s steps(2) infinite; }

/* ============ WHAT ============ */
.what-grid {
  display: grid; gap: 24px; max-width: 1100px; margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.what-card {
  background: #fff; color: #000;
  border: 6px solid #000; border-radius: 18px;
  padding: 16px; text-align: center;
  box-shadow: 8px 8px 0 var(--neon-purple);
  transition: transform .2s;
}
.what-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 14px; border: 4px solid #000; margin-bottom: 12px; }
.what-card p { font-weight: 700; font-size: 17px; line-height: 1.4; }
.tilt-left  { transform: rotate(-4deg); }
.tilt-right { transform: rotate(4deg); }
.what-card:hover { transform: rotate(0) scale(1.05); }

/* ============ TOKENOMICS ============ */
.tokenomics-board {
  display: grid; gap: 14px; max-width: 1100px; margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.t-tile {
  background: var(--neon-yellow); color: #000;
  border: 5px solid #000; border-radius: 16px;
  padding: 18px 10px; text-align: center;
  box-shadow: 5px 5px 0 #000;
  transition: transform .15s;
}
.t-tile:hover { transform: rotate(2deg) scale(1.05); }
.t-tile .t-num {
  display: block; font-family: 'Impact',sans-serif; font-size: 44px;
  font-weight: 900; line-height: 1;
  color: var(--hot-pink); -webkit-text-stroke: 2px #000;
}
.t-tile .t-lbl { display: block; font-weight: 900; margin-top: 6px; }
.t-tile.huge .t-num { font-size: 72px; }

.contract-strip {
  display: flex; align-items: center; gap: 18px; justify-content: center;
  margin-top: 30px; flex-wrap: wrap;
  background: #000; padding: 16px; border: 3px dashed var(--neon-cyan);
  border-radius: 18px; max-width: 800px; margin-left: auto; margin-right: auto;
}
.contract-mascot {
  width: 90px; height: 90px; object-fit: cover; border-radius: 50%;
  border: 4px solid var(--neon-yellow);
  animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.contract-strip p { color: var(--neon-yellow); font-weight: 700; flex: 1; min-width: 200px; }

/* ============ ROADMAP ============ */
.roadmap-list {
  list-style: none; counter-reset: phase;
  max-width: 900px; margin: 0 auto;
  display: grid; gap: 30px; padding: 0;
}
.phase {
  background: #fff; color: #000;
  border: 6px solid #000; border-radius: 24px;
  padding: 18px; display: grid;
  grid-template-columns: 80px 120px 1fr; gap: 16px; align-items: center;
  box-shadow: 10px 10px 0 var(--acid-green);
  transition: transform .2s;
  position: relative;
}
.phase:nth-child(odd)  { transform: rotate(-1.5deg); box-shadow: 10px 10px 0 var(--hot-pink); }
.phase:nth-child(even) { transform: rotate(1.5deg);  box-shadow: 10px 10px 0 var(--neon-cyan); }
.phase:hover { transform: rotate(0) scale(1.03); }
.phase-num {
  background: var(--neon-purple); color: #fff;
  border: 4px solid #000; border-radius: 50%;
  font-family: 'Impact',sans-serif; font-size: 28px;
  width: 80px; height: 80px;
  display: grid; place-items: center;
  box-shadow: 4px 4px 0 #000;
}
.phase img {
  width: 120px; height: 120px; object-fit: cover;
  border: 4px solid #000; border-radius: 16px;
}
.phase h3 { font-family: 'Impact',sans-serif; font-size: 26px; margin-bottom: 6px; text-transform: uppercase; }
.phase p { font-weight: 700; }

@media (max-width: 640px) {
  .phase { grid-template-columns: 60px 90px 1fr; }
  .phase-num { width: 60px; height: 60px; font-size: 20px; }
  .phase img { width: 90px; height: 90px; }
}

/* ============ HOW TO BUY ============ */
.steps {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1100px; margin: 0 auto;
}
.step {
  background: #000; color: #fff;
  border: 4px solid var(--neon-yellow); border-radius: 18px;
  padding: 14px; text-align: center;
  position: relative;
  transition: transform .15s;
}
.step:hover { transform: scale(1.05); border-color: var(--hot-pink); }
.step:nth-child(odd)  { transform: rotate(-2deg); }
.step:nth-child(even) { transform: rotate(2deg); }
.step-num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  background: var(--neon-red); color: #fff;
  font-family: 'Impact',sans-serif; font-size: 22px;
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; border: 4px solid #fff;
}
.step img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; margin: 10px 0 8px; border: 3px solid #fff; }
.step p { font-weight: 700; font-size: 14px; }
.inline-ca { background: var(--neon-yellow); color: #000; padding: 1px 6px; border-radius: 4px; font-family: monospace; word-break: break-all; }

.buy-cta { text-align: center; margin-top: 30px; }
.not-advice {
  margin-top: 12px; color: #fff; font-weight: 700;
  background: rgba(0,0,0,.6); padding: 6px 12px; border-radius: 8px;
  display: inline-block;
}

/* ============ BRIGADE ============ */
.brigade { background: rgba(0,0,0,.5); }
.brigade-row {
  display: flex; align-items: center; justify-content: center; gap: 30px;
  flex-wrap: wrap; max-width: 900px; margin: 0 auto;
}
.brigade-cat {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.brigade-cat img { width: 200px; height: 200px; object-fit: cover; border-radius: 50%; border: 8px solid #fff;
  box-shadow: 0 0 30px var(--hot-pink);
  animation: brigade-pulse 2s ease-in-out infinite; }
@keyframes brigade-pulse {
  0%, 100% { box-shadow: 0 0 30px var(--hot-pink); }
  50%      { box-shadow: 0 0 60px var(--acid-green); }
}
.center-cat img { width: 260px; height: 260px; }
.big-num {
  font-family: 'Impact',sans-serif;
  font-size: 160px; line-height: 1;
  color: var(--neon-red);
  -webkit-text-stroke: 6px #fff;
  text-shadow: 6px 6px 0 #000, 12px 12px 0 var(--neon-yellow);
  animation: bounce 1.5s ease-in-out infinite;
}
.bn-7 { animation-delay: .4s; }
.brigade-quote { color: var(--neon-yellow); font-weight: 900; font-style: italic; text-align: center; font-size: 18px; }

/* ============ MEMES GALLERY ============ */
.gallery-sub { text-align: center; color: #fff; font-weight: 700; margin-bottom: 20px; }
.gallery {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  max-width: 1300px; margin: 0 auto;
}
.cat-card {
  position: relative;
  background: #fff; padding: 8px 8px 30px;
  border: 4px solid #000; border-radius: 12px;
  box-shadow: 6px 6px 0 #000;
  transition: transform .25s, box-shadow .25s, z-index 0s .25s;
  z-index: 1;
}
.cat-card:nth-child(3n)   { transform: rotate(-3deg); }
.cat-card:nth-child(3n+1) { transform: rotate(2deg); }
.cat-card:nth-child(3n+2) { transform: rotate(-1deg); }
.cat-card:hover {
  transform: rotate(0) scale(1.55) translateY(-10px) !important;
  box-shadow: 0 0 30px var(--hot-pink), 0 0 60px var(--neon-cyan);
  z-index: 10; transition-delay: 0s;
}
.cat-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; display: block; }
.cat-card figcaption {
  position: absolute; left: 8px; right: 8px; bottom: 6px;
  background: #000; color: var(--neon-yellow);
  font-weight: 900; text-align: center; font-size: 12px;
  padding: 2px; border-radius: 4px;
  text-transform: uppercase;
}

/* ============ FAQ ============ */
.faq-grid {
  display: grid; gap: 12px; max-width: 800px; margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.faq details {
  background: #fff; color: #000;
  border: 4px solid #000; border-radius: 14px;
  padding: 12px 14px; box-shadow: 5px 5px 0 var(--neon-orange);
  transition: transform .15s;
}
.faq details[open] {
  transform: scale(1.03);
  box-shadow: 5px 5px 0 var(--acid-green);
}
.faq summary {
  cursor: pointer; font-weight: 900; font-size: 16px;
  list-style: none; text-transform: uppercase;
}
.faq summary::before { content: "🐱 "; }
.faq details[open] summary::before { content: "😼 "; }
.faq p { margin-top: 8px; font-weight: 700; }

/* ============ FOOTER ============ */
.footer {
  background: black; color: #fff;
  padding: 40px 5vw 30px; text-align: center;
  border-top: 6px solid var(--neon-yellow);
  margin-top: 50px;
}
.footer-cats {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-cats img {
  width: 60px; height: 60px; object-fit: cover; border-radius: 50%;
  border: 3px solid var(--neon-yellow);
  animation: footer-spin 8s linear infinite;
}
.footer-cats img:nth-child(2n) { animation-direction: reverse; border-color: var(--hot-pink); }
.footer-cats img:nth-child(3n) { border-color: var(--neon-cyan); }
@keyframes footer-spin { to { transform: rotate(360deg); } }
.legal { color: #aaa; font-size: 14px; max-width: 800px; margin: 0 auto 14px; font-weight: 700; }
.konami-hint { color: var(--neon-yellow); font-weight: 900; font-size: 12px; }

/* ============ KONAMI MODE ============ */
body.konami {
  animation: bg-pan 1.5s ease infinite, body-hue 2s linear infinite;
}
body.konami .section-title,
body.konami .big-title span { animation-duration: .25s !important; }
body.konami .cat-card { animation: konami-jiggle .25s infinite; }
@keyframes konami-jiggle {
  0%,100% { transform: rotate(0); }
  25%     { transform: rotate(8deg); }
  75%     { transform: rotate(-8deg); }
}

/* ============ glitchEverything mode ============ */
body.full-glitch * {
  animation: full-glitch .15s steps(2) infinite !important;
}
@keyframes full-glitch {
  0% { transform: translate(0,0); filter: hue-rotate(0); }
  50% { transform: translate(2px,-2px); filter: hue-rotate(180deg) invert(.2); }
  100% { transform: translate(-2px,2px); filter: hue-rotate(360deg); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 700px) {
  .hero-orbit { height: 480px; max-width: 480px; }
  .hero-frame { width: 180px; height: 180px; }
  .orbit-cat { width: 60px; height: 60px; }
  .ring-2 .orbit-cat { width: 48px; height: 48px; }
  .big-num { font-size: 100px; }
  .center-cat img { width: 180px; height: 180px; }
  .brigade-cat img { width: 130px; height: 130px; }
}

/* ============ MUSIC START OVERLAY ============ */
.music-overlay {
  position: fixed; inset: 0; z-index: 100000;
  display: grid; place-items: center;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(8px);
  cursor: pointer;
  animation: overlay-pulse 2s ease-in-out infinite;
}
.music-overlay.hidden { display: none; }
@keyframes overlay-pulse {
  0%,100% { background: rgba(0,0,0,.92); }
  50%     { background: rgba(20,0,40,.95); }
}
.music-overlay-inner {
  text-align: center; padding: 20px; max-width: 90vw;
}
.overlay-cat-grid {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px;
}
.overlay-cat-grid img {
  width: 110px; height: 110px; object-fit: cover; border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 0 30px var(--hot-pink);
  animation: bounce 1.5s ease-in-out infinite;
}
.overlay-cat-grid img:nth-child(2) { animation-delay: .15s; border-color: var(--neon-yellow); box-shadow: 0 0 30px var(--neon-yellow); }
.overlay-cat-grid img:nth-child(3) { animation-delay: .3s;  border-color: var(--neon-cyan);   box-shadow: 0 0 30px var(--neon-cyan); }
.overlay-cat-grid img:nth-child(4) { animation-delay: .45s; border-color: var(--acid-green);  box-shadow: 0 0 30px var(--acid-green); }
.overlay-title {
  font-family: 'Impact',sans-serif;
  font-size: clamp(28px, 5vw, 60px);
  color: var(--neon-yellow); -webkit-text-stroke: 2px #000;
  text-shadow: 4px 4px 0 #000, 8px 8px 0 var(--hot-pink);
  margin-bottom: 12px;
  animation: wobble 2s ease-in-out infinite;
}
.overlay-sub {
  color: #fff; font-weight: 700; margin-bottom: 24px; font-size: 16px;
}
.overlay-btn {
  font-family: inherit; font-weight: 900;
  font-size: clamp(20px, 3vw, 32px);
  padding: 20px 36px; border: 6px solid #000;
  border-radius: 18px; cursor: pointer;
  background: linear-gradient(45deg, var(--acid-green), var(--neon-yellow), var(--neon-cyan), var(--hot-pink));
  background-size: 300% 300%;
  color: #000; -webkit-text-stroke: 1px #000;
  box-shadow: 8px 8px 0 #000, 16px 16px 0 var(--hot-pink);
  animation: btn-wiggle 1.4s ease-in-out infinite, bg-pan 4s ease infinite;
  text-transform: uppercase;
}
.overlay-btn:hover { transform: scale(1.08); }
.overlay-err {
  margin-top: 14px; color: var(--neon-red);
  font-weight: 900; background: #000; padding: 6px 12px;
  border-radius: 8px; display: inline-block;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  body { animation: none; }
  .strobe { display: none; }
}
