@font-face {
  font-family: "Upheaval Pro";
  src:
    url("./UpheavalPro.ttf") format("truetype"),
    url("./UpheavalPro.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --purple: #6c2bd9;
  --acid: #b4f000;
  --ink: #111111;
  --white: #ffffff;
  --pink: #ff2e63;
  --site-max-width: 1280px;
  --site-content-gutter: clamp(0.72rem, 2.2vw, 2.2rem);
  --scroll-track: rgba(10, 10, 12, 0.92);
  --scroll-thumb-solid: #b4f000;
  --scroll-thumb-border: rgba(17, 17, 17, 0.92);
  --panel-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --display-font: "Bungee", cursive;
  --tag-font: "Permanent Marker", "Rubik Glitch Pop", "Rubik Glitch", cursive;
  --graffiti-font: "Permanent Marker", cursive;
  --body-font: "Space Grotesk", sans-serif;
  --pixel-font: "Press Start 2P", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: clamp(15px, 0.22vw + 14px, 18px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100svh;
  font-family: var(--body-font);
  color: var(--white);
  background:
    radial-gradient(circle at 8% 12%, rgba(108, 43, 217, 0.25), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(255, 46, 99, 0.18), transparent 34%),
    linear-gradient(120deg, #050505, #111111 38%, #181218 75%, #0f0f12);
  overflow: hidden;
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  background:
    radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.5) 100%),
    repeating-linear-gradient(
      -12deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 2px,
      transparent 2px,
      transparent 12px
    );
}

main {
  position: relative;
  z-index: 45;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scrollbar-gutter: stable;
  scroll-snap-type: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

html,
body,
main {
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-thumb-solid) var(--scroll-track);
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
main::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
main::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), var(--scroll-track));
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
main::-webkit-scrollbar-thumb {
  border: 2px solid var(--scroll-thumb-border);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--acid), var(--pink));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.26),
    0 0 10px rgba(180, 240, 0, 0.25);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
main::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #d3ff37, #ff4f80);
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner,
main::-webkit-scrollbar-corner {
  background: transparent;
}

img,
svg,
canvas {
  display: block;
  max-width: 100%;
}

a,
button {
  color: inherit;
}

.grain-layer {
  position: fixed;
  inset: -80%;
  pointer-events: none;
  z-index: 50;
  opacity: 0.11;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.85) 0.4px, transparent 0.6px),
    radial-gradient(circle, rgba(0, 0, 0, 0.8) 0.6px, transparent 0.8px);
  background-size: 3px 3px, 2px 2px;
  mix-blend-mode: soft-light;
  animation: grainShift 900ms steps(5) infinite;
}

@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2%, 1.5%);
  }
  50% {
    transform: translate(1.5%, -2%);
  }
  75% {
    transform: translate(2%, 1%);
  }
  100% {
    transform: translate(0, 0);
  }
}

.panel {
  position: relative;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(1rem, 2.8vw, 2.8rem);
  padding-inline: var(--site-content-gutter);
  padding-left: max(var(--site-content-gutter), env(safe-area-inset-left));
  padding-right: max(var(--site-content-gutter), env(safe-area-inset-right));
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04), transparent 20%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 8px
    );
  mix-blend-mode: overlay;
  opacity: 0.35;
}

.toxic-divider {
  position: relative;
  min-height: clamp(72px, 9.5vh, 96px);
  padding: clamp(0.36rem, 0.9vh, 0.62rem) clamp(0.9rem, 2.5vw, 2.3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  z-index: 5;
  pointer-events: auto;
  scroll-snap-align: none;
  background:
    radial-gradient(circle at 12% 46%, rgba(180, 240, 0, 0.28), transparent 34%),
    radial-gradient(circle at 84% 52%, rgba(255, 46, 99, 0.22), transparent 38%),
    repeating-linear-gradient(
      -18deg,
      rgba(30, 28, 42, 0.88) 0,
      rgba(30, 28, 42, 0.88) 9px,
      rgba(18, 16, 28, 0.94) 9px,
      rgba(18, 16, 28, 0.94) 20px
    ),
    linear-gradient(180deg, rgba(9, 9, 13, 0.96), rgba(13, 11, 21, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(180, 240, 0, 0.38),
    0 -8px 20px rgba(0, 0, 0, 0.26),
    0 8px 18px rgba(0, 0, 0, 0.26);
}

.toxic-divider::before {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: -16px;
  height: 32px;
  background:
    radial-gradient(ellipse at 14% 72%, rgba(187, 255, 0, 0.86), rgba(187, 255, 0, 0.04) 64%),
    radial-gradient(ellipse at 56% 58%, rgba(187, 255, 0, 0.78), rgba(187, 255, 0, 0.04) 64%),
    radial-gradient(ellipse at 86% 66%, rgba(187, 255, 0, 0.8), rgba(187, 255, 0, 0.04) 62%);
  filter: blur(2px);
  opacity: 0.72;
  animation: toxicDividerFlow 4.8s ease-in-out infinite;
}

.toxic-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 28%, rgba(255, 255, 255, 0.07), transparent 18%),
    radial-gradient(circle at 72% 72%, rgba(180, 240, 0, 0.12), transparent 24%);
  mix-blend-mode: screen;
}

.toxic-divider-copy {
  position: relative;
  pointer-events: auto;
  max-width: min(100%, var(--site-max-width));
  border: 2px solid rgba(17, 17, 17, 0.94);
  border-radius: 12px;
  padding: 0.52rem 0.9rem 0.56rem;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  background:
    linear-gradient(145deg, rgba(180, 240, 0, 0.96), rgba(226, 255, 103, 0.9));
  color: #101111;
  font-family: var(--pixel-font);
  font-size: clamp(0.44rem, 0.58vw, 0.62rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow:
    0 3px 0 rgba(17, 17, 17, 0.94),
    0 0 20px rgba(180, 240, 0, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.toxic-divider-prefix {
  opacity: 0.82;
}

.toxic-divider-value {
  color: #1a1f29;
  font-size: clamp(0.44rem, 0.56vw, 0.6rem);
}

.toxic-divider-copy::after {
  content: attr(data-feedback);
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%) translateY(-4px);
  min-width: 6.6ch;
  padding: 0.16rem 0.28rem;
  border-radius: 6px;
  border: 1px solid rgba(17, 17, 17, 0.92);
  background: linear-gradient(145deg, #1a1e2c, #11131c);
  color: rgba(234, 243, 255, 0.96);
  font-family: var(--pixel-font);
  font-size: 0.4rem;
  letter-spacing: 0.03em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
}

.toxic-divider-copy.is-copied::after,
.toxic-divider-copy.is-copy-error::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toxic-divider-copy:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 5px 0 rgba(17, 17, 17, 0.94),
    0 0 24px rgba(180, 240, 0, 0.42);
}

.toxic-divider-copy:focus-visible {
  outline: 2px solid #f0ff92;
  outline-offset: 2px;
}

.toxic-divider-copy.is-copied {
  filter: saturate(1.12);
  box-shadow:
    0 4px 0 rgba(17, 17, 17, 0.94),
    0 0 26px rgba(180, 240, 0, 0.56);
}

.toxic-divider-copy.is-copy-error {
  background: linear-gradient(145deg, #ff7ba8, #ff3f7c);
  color: #1d0f14;
  box-shadow:
    0 4px 0 rgba(17, 17, 17, 0.94),
    0 0 20px rgba(255, 63, 124, 0.46);
}

.toxic-divider-drips {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 44px;
  pointer-events: none;
  z-index: 0;
}

.toxic-divider-drips span {
  position: absolute;
  top: -6px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(198, 255, 56, 0.92), rgba(122, 174, 21, 0.68));
  box-shadow:
    0 0 10px rgba(180, 240, 0, 0.34),
    inset 0 0 0 1px rgba(236, 255, 170, 0.3);
  transform-origin: top center;
  animation: toxicDripPulse 3.4s ease-in-out infinite;
}

@keyframes toxicDividerFlow {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(1.4%);
    opacity: 0.95;
  }
}

@keyframes toxicDripPulse {
  0%,
  100% {
    transform: scaleY(0.9);
    opacity: 0.78;
  }
  50% {
    transform: scaleY(1.14);
    opacity: 1;
  }
}

.kicker {
  margin: 0;
  letter-spacing: 0.2em;
  font-size: clamp(0.7rem, 0.8vw, 0.9rem);
  text-transform: uppercase;
  color: var(--acid);
  font-weight: 700;
}

.section-head {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(1rem, 2vh, 1.4rem);
}

.join .join-grid {
  width: min(100%, var(--site-max-width));
  margin-inline: auto;
}

.section-head h2 {
  margin: 0.45rem 0 0;
  font-family: var(--display-font);
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: var(--white);
  text-shadow: 0 6px 0 var(--ink), 0 0 20px rgba(255, 46, 99, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}


#cursor {
  --cursor-main: #ffffff;
  --cursor-mid: #ffffff;
  --cursor-accent: #ffffff;
  --cursor-glow: rgba(255, 255, 255, 0.45);
  --cursor-sheen: rgba(255, 255, 255, 1);
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 42px;
  pointer-events: none;
  z-index: 1202;
  mix-blend-mode: difference;
  transform: translate(-2px, -2px);
  opacity: 0;
  transition: transform 120ms ease, opacity 160ms ease, filter 220ms ease;
  filter:
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.96))
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.7));
  will-change: transform, filter;
}

#cursor::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  transform: translate(-46%, -42%) scale(0.2);
  transition:
    opacity 140ms ease,
    transform 140ms ease,
    width 140ms ease,
    height 140ms ease;
}

#cursor::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-46%, -42%) scale(0.5);
  transition:
    opacity 140ms ease,
    transform 140ms ease,
    width 140ms ease,
    height 140ms ease;
}

.cursor-core {
  position: relative;
  display: block;
  width: 24px;
  height: 35px;
  background:
    linear-gradient(162deg, var(--cursor-main) 0%, var(--cursor-mid) 58%, var(--cursor-accent) 100%);
  clip-path: polygon(0 0, 0 100%, 28% 74%, 41% 100%, 58% 93%, 44% 66%, 100% 66%);
  transform: rotate(-8deg);
  margin-left: 1px;
  margin-top: 1px;
  transition: transform 140ms ease, opacity 140ms ease;
}

.cursor-core::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.96);
  clip-path: inherit;
}

.cursor-core::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 3px;
  height: 13px;
  border-radius: 999px;
  background: var(--cursor-sheen);
  opacity: 0.82;
  transform: rotate(-20deg);
  filter: blur(0.2px);
}

#cursor.is-hover {
  transform: translate(-2px, -2px) scale(1.12);
}

#cursor.is-click {
  transform: translate(-2px, -2px) scale(0.9);
}

#cursor.is-special .cursor-core {
  opacity: 1;
  transform: rotate(-8deg) scale(1.06);
}

#cursor.is-special {
  filter:
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.94))
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.58));
}

#cursor.is-special::before,
#cursor.is-special::after {
  width: 0;
  height: 0;
  opacity: 0;
}

#cursor.is-special.is-hover .cursor-core {
  transform: rotate(-8deg) scale(1.14);
}

#cursor.is-special.is-click .cursor-core {
  transform: rotate(-8deg) scale(0.98);
}

#cursor.theme-acid {
  --cursor-main: #ffffff;
  --cursor-mid: #ffffff;
  --cursor-accent: #ffffff;
  --cursor-glow: rgba(255, 255, 255, 0.45);
}

#cursor.theme-purple {
  --cursor-main: #ffffff;
  --cursor-mid: #ffffff;
  --cursor-accent: #ffffff;
  --cursor-glow: rgba(255, 255, 255, 0.45);
}

#cursor.theme-pink {
  --cursor-main: #ffffff;
  --cursor-mid: #ffffff;
  --cursor-accent: #ffffff;
  --cursor-glow: rgba(255, 255, 255, 0.45);
}

#cursor.theme-cyan {
  --cursor-main: #ffffff;
  --cursor-mid: #ffffff;
  --cursor-accent: #ffffff;
  --cursor-glow: rgba(255, 255, 255, 0.45);
}

#cursor-splash-layer {
  position: fixed;
  inset: 0;
  z-index: 1201;
  mix-blend-mode: difference;
  pointer-events: none;
}

body.is-rm-modal-open #cursor,
body.is-rm-modal-open #cursor-splash-layer {
  mix-blend-mode: normal;
}

.cursor-splash {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--splash-color, var(--pink));
  box-shadow: 0 0 20px var(--splash-glow, rgba(255, 46, 99, 0.6));
  transform: translate(-50%, -50%);
  animation: splashBurst 460ms ease forwards;
}

@keyframes splashBurst {
  from {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.4);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.6);
  }
}

.neon-scroll-layer {
  position: fixed;
  inset: 0;
  z-index: 46;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(circle at center, transparent 22%, #000 56%);
  mask-image: radial-gradient(circle at center, transparent 22%, #000 56%);
}

.neon-scroll-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 28%, rgba(180, 240, 0, 0.08), transparent 40%),
    radial-gradient(circle at 82% 72%, rgba(255, 46, 99, 0.08), transparent 42%);
  opacity: 0.75;
}

.neon-scroll-word {
  --token-glow: rgba(180, 240, 0, 0.72);
  --token-glow-soft: rgba(180, 240, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  padding: clamp(0.26rem, 0.58vw, 0.56rem) clamp(0.48rem, 1.08vw, 0.98rem);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(125deg, rgba(8, 10, 15, 0.9), rgba(10, 10, 14, 0.58)),
    linear-gradient(145deg, rgba(180, 240, 0, 0.4), rgba(255, 46, 99, 0.3));
  color: #f8ffd5;
  font-family: "Rubik Glitch Pop", "Bungee", cursive;
  font-size: clamp(0.76rem, 1.12vw, 1.36rem);
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  mix-blend-mode: screen;
  opacity: 0.66;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.6),
    0 0 14px rgba(180, 240, 0, 0.8),
    0 0 30px rgba(180, 240, 0, 0.66),
    0 0 48px rgba(255, 46, 99, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    0 0 18px var(--token-glow),
    0 0 42px var(--token-glow-soft);
  backdrop-filter: blur(1px) saturate(122%);
  transform:
    translate3d(var(--neon-x, -200px), var(--neon-y, -200px), 0)
    rotate(var(--neon-r, 0deg))
    scale(var(--neon-s, 1));
  will-change: transform, opacity, filter;
  animation: neonScrollPulse 3.6s ease-in-out infinite;
}

.neon-scroll-word::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid currentColor;
  opacity: 0.38;
  filter: blur(1px);
  animation: neonScrollFlicker 2.8s steps(2, end) infinite;
}

.neon-scroll-word:nth-child(2n) {
  --token-glow: rgba(255, 46, 99, 0.74);
  --token-glow-soft: rgba(255, 46, 99, 0.4);
  color: #ffedf4;
}

.neon-scroll-word:nth-child(3n) {
  --token-glow: rgba(108, 43, 217, 0.56);
  --token-glow-soft: rgba(108, 43, 217, 0.3);
  color: #e8f3ff;
}

@keyframes neonScrollPulse {
  0%,
  100% {
    filter: brightness(0.92) saturate(1.04);
  }
  50% {
    filter: brightness(1.24) saturate(1.32);
  }
}

@keyframes neonScrollFlicker {
  0%,
  18%,
  20%,
  62%,
  64%,
  100% {
    opacity: 0.32;
  }
  19%,
  63% {
    opacity: 0.08;
  }
}

@media (max-width: 900px) {
  .neon-scroll-word {
    font-size: clamp(0.7rem, 2.4vw, 1.02rem);
    letter-spacing: 0.06em;
    opacity: 0.56;
  }
}

@media (max-width: 640px) {
  .neon-scroll-word {
    padding: 0.2rem 0.5rem;
    border-radius: 14px;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.18),
      0 0 12px var(--token-glow),
      0 0 24px var(--token-glow-soft);
  }
}

@media (prefers-reduced-motion: reduce) {
  .neon-scroll-word,
  .neon-scroll-word::after {
    animation: none;
  }
}

.floating-stickers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-stickers span {
  position: absolute;
  padding: 0.25rem 0.5rem;
  border: 2px solid var(--ink);
  background: linear-gradient(145deg, var(--pink), #ff7298);
  color: var(--white);
  font-family: var(--graffiti-font);
  font-size: clamp(0.85rem, 1.2vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 4px 4px 0 var(--ink);
  animation: floatSticker 8s ease-in-out infinite;
}

.floating-stickers span:nth-child(1) {
  top: 11%;
  left: 6%;
  transform: rotate(-11deg);
}

.floating-stickers span:nth-child(2) {
  top: 16%;
  right: 8%;
  transform: rotate(9deg);
  animation-delay: -1.2s;
}

.floating-stickers span:nth-child(3) {
  right: 4%;
  bottom: 12%;
  transform: rotate(-8deg);
  animation-delay: -2s;
}

.floating-stickers span:nth-child(4) {
  left: 5%;
  bottom: 16%;
  transform: rotate(8deg);
  animation-delay: -3.5s;
}

.floating-stickers span:nth-child(5) {
  left: 48%;
  top: 8%;
  transform: rotate(-5deg);
  animation-delay: -4.1s;
}

.hero .floating-stickers span:nth-child(1) {
  top: 10%;
  left: 5.5%;
  transform: rotate(-12deg);
}

.hero .floating-stickers span:nth-child(2) {
  top: 41%;
  right: 3.5%;
  transform: rotate(11deg);
}

.hero .floating-stickers span:nth-child(3) {
  right: clamp(2rem, 4.6vw, 4rem);
  top: auto;
  bottom: calc(16% + 60px);
  transform: rotate(-9deg);
}

.hero .floating-stickers span:nth-child(4) {
  left: 4%;
  bottom: 13%;
  right: auto;
  top: auto;
  transform: rotate(9deg);
}

.hero .floating-stickers span:nth-child(5) {
  left: auto;
  right: calc(18% - 265px);
  top: calc(9% - 20px + 300px);
  transform: rotate(6deg);
}

.hero .floating-stickers {
  z-index: 0;
  filter: brightness(0.82) saturate(0.92);
}

.hero-graffiti {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-tentacle {
  --hero-block-tentacle-rotate: rotate(0deg);
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.82;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 8px 12px rgba(0, 0, 0, 0.56))
    drop-shadow(0 0 14px rgba(203, 255, 51, 0.24))
    drop-shadow(0 0 12px rgba(178, 109, 255, 0.2));
  transform: var(--hero-block-tentacle-rotate);
  transform-origin: center;
  animation: heroBlockTentacleSway 7.2s ease-in-out infinite;
}

.hero-tentacle-a {
  left: calc(-2.4% + 60px);
  top: calc(-3.2% - 80px);
  width: clamp(104px, 10.8vw, 188px);
  aspect-ratio: 236 / 339;
  background-image: url("./images/tentakls/tentakl (2).webp");
  --hero-block-tentacle-rotate: rotate(206deg);
  animation-delay: -0.8s;
}

.hero-tentacle-b {
  right: -2.8%;
  top: -2.8%;
  width: clamp(165px, 17.1vw, 294px);
  aspect-ratio: 409 / 373;
  background-image: url("./images/tentakls/tentakl (4).webp");
  --hero-block-tentacle-rotate: rotate(180deg);
  animation-delay: -2.1s;
}

.hero-tentacle-c {
  left: -3.2%;
  bottom: -4.2%;
  width: clamp(124px, 13.2vw, 224px);
  aspect-ratio: 368 / 276;
  background-image: url("./images/tentakls/tentakl (1).webp");
  --hero-block-tentacle-rotate: rotate(14deg);
  animation-delay: -1.4s;
}

.hero-tentacle-d {
  right: calc(-3.6% + 200px);
  bottom: -4.6%;
  width: clamp(136px, 14vw, 236px);
  aspect-ratio: 429 / 398;
  background-image: url("./images/tentakls/tentakl (5).webp");
  --hero-block-tentacle-rotate: rotate(-18deg);
  animation-delay: -3s;
}

@keyframes heroBlockTentacleSway {
  0%,
  100% {
    transform: var(--hero-block-tentacle-rotate) translateY(0) scale(1);
    opacity: 0.76;
  }
  50% {
    transform: var(--hero-block-tentacle-rotate) translateY(-7px) scale(1.04);
    opacity: 0.9;
  }
}

.graffiti-tag {
  position: absolute;
  padding: 0.18rem 0.52rem 0.24rem;
  border: 2px solid rgba(10, 10, 11, 0.95);
  border-radius: 7px;
  font-family: var(--graffiti-font);
  font-size: clamp(0.72rem, 0.94vw, 1rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 rgba(10, 10, 11, 0.95);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  animation: graffitiTagFloat 5.6s ease-in-out infinite;
}

.tag-toxic {
  top: 34%;
  right: 4%;
  color: #111111;
  background: linear-gradient(140deg, var(--acid), #e4ff61);
  transform: rotate(-7deg);
  animation-delay: -0.8s;
}

.tag-spray {
  left: 2.8%;
  top: 27%;
  bottom: auto;
  color: var(--white);
  background: linear-gradient(145deg, #ff2e63, #ff7aa2);
  transform: rotate(-9deg);
  animation-delay: -2.2s;
}

.tag-crew {
  right: 25%;
  bottom: 16%;
  color: rgba(233, 255, 171, 0.95);
  background: linear-gradient(145deg, #14141c, #2d2348);
  border-color: rgba(180, 240, 0, 0.78);
  box-shadow: 0 0 0 1px rgba(8, 8, 10, 0.92) inset, 3px 3px 0 rgba(8, 8, 10, 0.95);
  transform: rotate(8deg);
  animation-delay: -3.1s;
}

.graffiti-tape {
  position: absolute;
  left: -7%;
  bottom: 10%;
  display: inline-block;
  white-space: nowrap;
  padding: 0.2rem 0.66rem 0.24rem;
  border: 2px solid rgba(8, 8, 10, 0.95);
  background: repeating-linear-gradient(90deg, #f6ff39 0, #f6ff39 18px, #111111 18px, #111111 32px);
  color: #111111;
  font-family: var(--pixel-font);
  font-size: clamp(0.48rem, 0.56vw, 0.62rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 5px 0 rgba(8, 8, 10, 0.96), 0 0 18px rgba(180, 240, 0, 0.38);
  transform: rotate(-4deg);
  opacity: 0.9;
  animation: graffitiTapeShift 12s linear infinite;
}

.spray-mark {
  position: absolute;
  border-radius: 46% 54% 57% 43% / 44% 36% 64% 56%;
  filter: blur(1px);
  mix-blend-mode: screen;
  opacity: 0.42;
  animation: sprayPulse 6.5s ease-in-out infinite;
}

.spray-mark-a {
  left: 17%;
  top: 18%;
  width: 120px;
  height: 86px;
  background: radial-gradient(circle at 30% 35%, rgba(180, 240, 0, 0.72), rgba(180, 240, 0, 0.05) 68%, transparent 74%);
  animation-delay: -1s;
}

.spray-mark-b {
  right: 13%;
  top: 46%;
  width: 98px;
  height: 72px;
  background: radial-gradient(circle at 46% 44%, rgba(255, 46, 99, 0.7), rgba(255, 46, 99, 0.06) 66%, transparent 74%);
  animation-delay: -2.8s;
}

.spray-mark-c {
  left: 52%;
  bottom: 14%;
  width: 84px;
  height: 66px;
  background: radial-gradient(circle at 46% 44%, rgba(108, 43, 217, 0.7), rgba(108, 43, 217, 0.06) 66%, transparent 74%);
  animation-delay: -4.2s;
}

.doodle {
  --doodle-rot: 0deg;
  position: absolute;
  opacity: 0.74;
  filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.32));
  animation: doodleWobble 4.4s ease-in-out infinite;
}

.doodle-zig {
  --doodle-rot: -6deg;
  left: 36%;
  top: 17%;
  width: 110px;
  height: 18px;
  background: repeating-linear-gradient(
    -35deg,
    rgba(255, 46, 99, 0.9) 0 8px,
    rgba(255, 46, 99, 0) 8px 14px
  );
  animation-delay: -0.9s;
}

.doodle-arrow {
  --doodle-rot: -16deg;
  right: 8%;
  bottom: 24%;
  width: 72px;
  height: 20px;
  border-top: 3px dashed rgba(180, 240, 0, 0.94);
  animation-delay: -2.4s;
}

.doodle-arrow::before {
  content: "";
  position: absolute;
  right: -2px;
  top: -7px;
  width: 12px;
  height: 12px;
  border-top: 3px solid rgba(180, 240, 0, 0.94);
  border-right: 3px solid rgba(180, 240, 0, 0.94);
  transform: rotate(45deg);
}

.doodle-cross {
  --doodle-rot: 0deg;
  left: 21%;
  bottom: 16%;
  width: 28px;
  height: 28px;
  animation-delay: -3.3s;
}

.doodle-cross::before,
.doodle-cross::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  transform-origin: center;
}

.doodle-cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.doodle-cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes graffitiTagFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes graffitiTapeShift {
  0%,
  100% {
    transform: rotate(-4deg) translateX(0);
  }
  50% {
    transform: rotate(-4deg) translateX(8px);
  }
}

@keyframes sprayPulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(1);
  }
  50% {
    opacity: 0.58;
    transform: scale(1.08);
  }
}

@keyframes doodleWobble {
  0%,
  100% {
    transform: translateY(0) rotate(var(--doodle-rot));
  }
  50% {
    transform: translateY(-3px) rotate(calc(var(--doodle-rot) - 2deg));
  }
}

@keyframes floatSticker {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

.hero {
  --hero-painted-layer: none;
  display: grid;
  align-items: center;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: clamp(1rem, 2.3vh, 1.9rem);
  padding-bottom: clamp(3.4rem, 7.6vh, 5rem);
  background:
    linear-gradient(132deg, rgba(7, 7, 8, 0.374) 6%, rgba(10, 10, 12, 0.35) 44%, rgba(20, 15, 27, 0.394) 100%),
    radial-gradient(circle at 14% 22%, rgba(180, 240, 0, 0.15), transparent 36%),
    radial-gradient(circle at 78% 16%, rgba(108, 43, 217, 0.42), transparent 44%),
    radial-gradient(circle at 82% 78%, rgba(255, 46, 99, 0.24), transparent 40%),
    url("./images/bg/bg1.webp") center 45% / cover no-repeat;
  transition: background 380ms ease, filter 280ms ease;
}

.hero.has-painted-wall {
  background:
    var(--hero-painted-layer),
    linear-gradient(132deg, rgba(8, 8, 10, 0.34) 8%, rgba(12, 12, 16, 0.3) 52%, rgba(16, 14, 24, 0.32) 100%),
    radial-gradient(circle at 12% 20%, rgba(180, 240, 0, 0.18), transparent 38%),
    radial-gradient(circle at 82% 16%, rgba(108, 43, 217, 0.22), transparent 44%),
    url("./images/bg/wall1.webp") center center / cover no-repeat;
  background-blend-mode: normal, multiply, screen, screen, normal;
}

.hero.has-painted-wall::after {
  opacity: 0.14;
  mix-blend-mode: soft-light;
}

.hero.is-graffiti-mode {
  background:
    linear-gradient(135deg, rgba(6, 6, 8, 0.54) 8%, rgba(14, 11, 16, 0.42) 100%),
    url("./images/bg/wall1.webp") center center / cover no-repeat;
}

.hero-left,
.hero-right,
.hero-graffiti,
.hero .floating-stickers,
.more-info {
  transition:
    transform 420ms cubic-bezier(0.2, 0.85, 0.24, 1),
    opacity 320ms ease,
    filter 320ms ease;
}

.hero.is-graffiti-mode .hero-layout {
  pointer-events: none;
}

.hero.is-graffiti-mode .hero-left {
  transform: translateX(-34%) scale(0.82) rotate(-2.5deg);
  opacity: 0.13;
  filter: blur(2px);
}

.hero.is-graffiti-mode .hero-right {
  transform: translateX(34%) scale(0.82) rotate(2.5deg);
  opacity: 0.11;
  filter: blur(2.4px);
}

.hero.is-graffiti-mode .hero-graffiti,
.hero.is-graffiti-mode .floating-stickers,
.hero.is-graffiti-mode .more-info {
  opacity: 0;
  transform: scale(0.88);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 40%, rgba(0, 0, 0, 0.3375), transparent 35%),
    radial-gradient(circle at 72% 68%, rgba(0, 0, 0, 0.3), transparent 30%);
  animation: driftShadow 11s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 76%, rgba(255, 46, 99, 0.2), transparent 34%),
    radial-gradient(circle at 77% 20%, rgba(180, 240, 0, 0.16), transparent 29%),
    repeating-linear-gradient(
      18deg,
      rgba(255, 255, 255, 0.024) 0,
      rgba(255, 255, 255, 0.024) 2px,
      transparent 2px,
      transparent 13px
    );
  mix-blend-mode: overlay;
  opacity: 0.3;
}

@keyframes driftShadow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-2%, 2%) scale(1.08);
  }
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(340px, 0.95fr);
  width: min(var(--site-max-width), 100%);
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  gap: clamp(0.7rem, 1.7vw, 1.6rem);
  align-items: center;
}

.hero-left {
  justify-self: start;
  position: relative;
  isolation: isolate;
  min-width: 0;
  width: min(100%, 700px);
  margin-top: clamp(0.7rem, 2vh, 1.4rem);
}

.sequence-frame {
  position: relative;
  width: min(49vw, 66vh, 650px);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: visible;
  isolation: isolate;
  pointer-events: none;
  transform: translateX(-7%);
}

.sequence-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("./images/with-skeat.webp") center center / contain no-repeat;
  opacity: 0;
  transform: translateX(-85%) scale(0.82) scaleX(-1) rotate(-14deg);
  filter: blur(7px) saturate(1.45) brightness(1.18);
  animation: heroGhostTrail 1050ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
}

.sequence-frame::after {
  content: "";
  position: absolute;
  left: 26%;
  top: 22%;
  width: 56%;
  aspect-ratio: 1;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 46, 99, 0.5) 0%,
    rgba(108, 43, 217, 0.44) 38%,
    rgba(108, 43, 217, 0) 76%
  );
  filter: blur(22px);
  opacity: 0;
  animation:
    heroAuraBurst 1200ms ease-out 140ms both,
    heroAuraPulse 4.5s ease-in-out 1.3s infinite;
}

.hero-launch-streak {
  position: absolute;
  left: -40%;
  top: 41%;
  width: 74%;
  height: 17%;
  z-index: 0;
  background: linear-gradient(
    95deg,
    rgba(180, 240, 0, 0),
    rgba(180, 240, 0, 0.85) 40%,
    rgba(255, 46, 99, 0.75) 73%,
    rgba(255, 46, 99, 0)
  );
  filter: blur(7px);
  transform-origin: right center;
  opacity: 0;
  animation:
    heroStreakBurst 900ms cubic-bezier(0.18, 1, 0.3, 1) 60ms both,
    heroStreakDrift 3.2s linear 1.2s infinite;
}

.hero-launch-flash {
  position: absolute;
  left: 44%;
  top: 58%;
  width: 18%;
  aspect-ratio: 1;
  z-index: 2;
  border: 3px solid rgba(180, 240, 0, 0.82);
  border-radius: 50%;
  box-shadow:
    0 0 22px rgba(180, 240, 0, 0.72),
    inset 0 0 14px rgba(255, 46, 99, 0.6);
  transform: translate(-50%, -50%) scale(0.15);
  opacity: 0;
  animation: heroShockwave 900ms cubic-bezier(0.2, 1, 0.35, 1) 360ms both;
}

.hero-backtag {
  position: absolute;
  left: 50%;
  top: 8%;
  z-index: 7;
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
  white-space: nowrap;
  isolation: isolate;
  font-family: var(--tag-font);
  font-size: clamp(2.3rem, 5.4vw, 6rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #f2ff2e;
  -webkit-text-stroke: 2.2px rgba(8, 9, 12, 0.96);
  text-shadow:
    0 2px 0 rgba(9, 9, 12, 0.96),
    0 0 14px rgba(180, 240, 0, 0.96),
    0 0 28px rgba(180, 240, 0, 0.9),
    0 0 42px rgba(255, 46, 99, 0.78);
  filter: saturate(1.34) contrast(1.1);
  pointer-events: none;
  opacity: 0;
  transform-origin: center center;
  transform: translate3d(-66%, 150%, 0) scale(0.22) rotate(-18deg);
  will-change: transform, opacity, filter, text-shadow;
  animation:
    heroTagIntro 1320ms cubic-bezier(0.16, 1, 0.3, 1) 210ms both,
    heroTagGlowPulse 2.2s ease-in-out 1580ms infinite,
    heroTagFloatHold 4.8s ease-in-out 1580ms infinite;
}

.hero-backtag .arc-char {
  display: inline-block;
  transform-origin: center bottom;
  transform: translateY(calc(var(--arc-y, 0) * 1em)) rotate(calc(var(--arc-r, 0) * 1deg));
}

.hero-backtag .arc-char.is-space {
  width: 0.32em;
}

.hero-backtag.hero-backtag-image {
  line-height: 0;
  width: clamp(186px, 35.4vw, 524px);
  top: -2%;
  left: calc(50% - 65px);
}

.hero-backtag.hero-backtag-image::before,
.hero-backtag.hero-backtag-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("./images/logos/MC Octopussy.webp") center / contain no-repeat;
}

.hero-backtag.hero-backtag-image::before {
  z-index: 3;
  clip-path: polygon(0 2%, 100% 0, 100% 39%, 0 43%);
  mix-blend-mode: screen;
  filter: hue-rotate(-18deg) saturate(1.75) brightness(1.18);
  opacity: 0;
  animation: heroTagGlitchA 2.4s steps(2, end) 1620ms infinite;
}

.hero-backtag.hero-backtag-image::after {
  z-index: 3;
  clip-path: polygon(0 56%, 100% 52%, 100% 100%, 0 100%);
  mix-blend-mode: screen;
  filter: hue-rotate(28deg) saturate(1.62) brightness(1.16);
  opacity: 0;
  animation: heroTagGlitchB 2.1s steps(2, end) 1560ms infinite;
}

.hero-backtag-logo {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  position: relative;
  z-index: 2;
}

.hero-tag-splash {
  --splash-rot: 0deg;
  position: absolute;
  z-index: 6;
  border-radius: 48% 52% 56% 44% / 46% 36% 64% 54%;
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px) scale(0.3) rotate(var(--splash-rot));
  filter: blur(0.25px) saturate(1.2);
  animation:
    heroTagSplashIn 860ms cubic-bezier(0.2, 1, 0.35, 1) 260ms both,
    heroTagSplashFlicker 3.2s ease-in-out 1500ms infinite;
}

.hero-tag-splash-a {
  left: 31%;
  top: 9.5%;
  width: 94px;
  height: 58px;
  --splash-rot: -16deg;
  background: radial-gradient(circle at 36% 32%, rgba(180, 240, 0, 0.82), rgba(180, 240, 0, 0.2) 62%, transparent 74%);
}

.hero-tag-splash-b {
  left: 56%;
  top: 8.5%;
  width: 82px;
  height: 52px;
  --splash-rot: 14deg;
  background: radial-gradient(circle at 40% 36%, rgba(255, 46, 99, 0.82), rgba(255, 46, 99, 0.2) 62%, transparent 74%);
  animation-delay: 340ms, 1750ms;
}

.hero-tag-splash-c {
  left: 48%;
  top: 18%;
  width: 66px;
  height: 42px;
  --splash-rot: -10deg;
  background: radial-gradient(circle at 45% 35%, rgba(79, 216, 255, 0.8), rgba(79, 216, 255, 0.18) 62%, transparent 74%);
  animation-delay: 420ms, 1880ms;
}

.hero-backtag::before {
  content: attr(data-tag);
  position: absolute;
  inset: 0;
  z-index: 1;
  color: rgba(255, 46, 99, 0.9);
  -webkit-text-stroke: 0.8px rgba(9, 10, 13, 0.74);
  text-shadow:
    0 0 9px rgba(255, 46, 99, 0.94),
    0 0 20px rgba(255, 46, 99, 0.72);
  mix-blend-mode: screen;
  clip-path: polygon(0 2%, 100% 0, 100% 35%, 0 38%);
  opacity: 0.85;
  animation: heroTagGlitchA 2.4s steps(2, end) 1620ms infinite;
}

.hero-backtag::after {
  content: attr(data-tag);
  position: absolute;
  inset: 0;
  z-index: 1;
  color: rgba(97, 227, 255, 0.92);
  -webkit-text-stroke: 0.8px rgba(9, 10, 13, 0.7);
  text-shadow:
    0 0 8px rgba(79, 216, 255, 0.86),
    0 0 18px rgba(79, 216, 255, 0.66);
  mix-blend-mode: screen;
  clip-path: polygon(0 58%, 100% 54%, 100% 100%, 0 100%);
  opacity: 0.84;
  pointer-events: none;
  animation: heroTagGlitchB 2.1s steps(2, end) 1560ms infinite;
}

#octoSequence,
#octoFallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#octoFallback.hero-mascot {
  position: relative;
  top: -19%;
  left: calc(-10% + 30px);
  inset: auto;
  z-index: 3;
  width: 106.72%;
  height: 106.72%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-140%, 10%, 0) rotate(-18deg) scale(0.58) scaleX(-1);
  filter:
    drop-shadow(0 14px 22px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 24px rgba(255, 76, 171, 0.5))
    drop-shadow(0 0 30px rgba(79, 216, 255, 0.4));
  will-change: transform, opacity, filter;
  animation:
    heroMascotLaunch 1250ms cubic-bezier(0.16, 1, 0.3, 1) 120ms forwards,
    heroMascotFloat 5.8s ease-in-out 1450ms infinite,
    heroMascotGlow 2.9s ease-in-out 1450ms infinite;
}

#octoFallback.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes heroGhostTrail {
  0% {
    opacity: 0;
    transform: translateX(-92%) scale(0.76) scaleX(-1) rotate(-16deg);
  }
  48% {
    opacity: 0.38;
  }
  100% {
    opacity: 0;
    transform: translateX(-18%) scale(0.98) scaleX(-1) rotate(-2deg);
  }
}

@keyframes heroAuraBurst {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  45% {
    opacity: 0.86;
  }
  100% {
    opacity: 0;
    transform: scale(1.38);
  }
}

@keyframes heroAuraPulse {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(1);
  }
  50% {
    opacity: 0.38;
    transform: scale(1.1);
  }
}

@keyframes heroStreakBurst {
  0% {
    opacity: 0;
    transform: translateX(-70%) skewX(-22deg) scaleX(0.12);
  }
  55% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.28;
    transform: translateX(4%) skewX(-22deg) scaleX(1);
  }
}

@keyframes heroStreakDrift {
  0% {
    transform: translateX(0) skewX(-22deg) scaleX(1);
  }
  100% {
    transform: translateX(24%) skewX(-22deg) scaleX(1.1);
  }
}

@keyframes heroShockwave {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.15);
  }
  30% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3);
  }
}

@keyframes heroTagIntro {
  0% {
    opacity: 0;
    filter: saturate(0.95) brightness(0.82);
    transform: translate3d(-68%, 160%, 0) scale(0.16) rotate(-16deg);
  }
  24% {
    opacity: 0.95;
  }
  58% {
    opacity: 1;
    filter: saturate(1.4) brightness(1.18);
    transform: translate3d(-18%, -22%, 0) scale(1.14) rotate(-9deg);
  }
  78% {
    transform: translate3d(-49%, -8%, 0) scale(0.97) rotate(-5.2deg);
  }
  100% {
    opacity: 1;
    filter: saturate(1.28) brightness(1.05);
    transform: translate3d(-50%, -6%, 0) scale(1) rotate(-6deg);
  }
}

@keyframes heroTagGlowPulse {
  0%,
  100% {
    text-shadow:
      0 2px 0 rgba(9, 9, 12, 0.96),
      0 0 12px rgba(180, 240, 0, 0.9),
      0 0 26px rgba(180, 240, 0, 0.84),
      0 0 38px rgba(255, 46, 99, 0.64);
    filter: saturate(1.28) brightness(1.02);
  }
  50% {
    text-shadow:
      0 2px 0 rgba(9, 9, 12, 0.96),
      0 0 20px rgba(180, 240, 0, 1),
      0 0 34px rgba(180, 240, 0, 0.94),
      0 0 54px rgba(255, 46, 99, 0.88);
    filter: saturate(1.45) brightness(1.16);
  }
}

@keyframes heroTagFloatHold {
  0%,
  100% {
    transform: translate3d(-50%, -6%, 0) scale(1) rotate(-6deg);
    opacity: 1;
  }
  50% {
    transform: translate3d(-50%, -10%, 0) scale(1.025) rotate(-4.6deg);
    opacity: 1;
  }
}

@keyframes heroTagGlitchA {
  0%,
  12%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }
  13% {
    opacity: 0.85;
    transform: translate3d(-2%, -5%, 0) skewX(-5deg);
  }
  15% {
    opacity: 0.5;
    transform: translate3d(1.4%, -1%, 0) skewX(3deg);
  }
  17% {
    opacity: 0.82;
    transform: translate3d(-1.1%, -3.1%, 0) skewX(-3deg);
  }
  19% {
    opacity: 0;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }
  52% {
    opacity: 0;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }
  53% {
    opacity: 1;
    transform: translate3d(-0.7%, -2.2%, 0) skewX(-2deg);
  }
  56% {
    opacity: 0.42;
    transform: translate3d(1.2%, -0.5%, 0) skewX(2deg);
  }
  58% {
    opacity: 0;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }
}

@keyframes heroTagGlitchB {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }
  22% {
    opacity: 0;
  }
  23% {
    opacity: 0.82;
    transform: translate3d(2.3%, 2.2%, 0) skewX(6deg);
  }
  26% {
    opacity: 0.54;
    transform: translate3d(-1.4%, 0.7%, 0) skewX(-4deg);
  }
  29% {
    opacity: 0;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }
  73% {
    opacity: 0;
  }
  74% {
    opacity: 0.94;
    transform: translate3d(1.1%, 1.9%, 0) skewX(3deg);
  }
  77% {
    opacity: 0.36;
    transform: translate3d(-0.8%, 0.3%, 0) skewX(-2deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) skewX(0deg);
  }
}

@keyframes heroTagSplashIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.3) rotate(var(--splash-rot));
  }
  100% {
    opacity: 0.88;
    transform: translateY(0) scale(1) rotate(var(--splash-rot));
  }
}

@keyframes heroTagSplashFlicker {
  0%,
  100% {
    opacity: 0.7;
    filter: blur(0.25px) saturate(1.15);
  }
  50% {
    opacity: 0.96;
    filter: blur(0.15px) saturate(1.35);
  }
}

@keyframes heroMascotLaunch {
  0% {
    opacity: 0;
    transform: translate3d(-140%, 10%, 0) rotate(-18deg) scale(0.58) scaleX(-1);
  }
  58% {
    opacity: 1;
    transform: translate3d(8%, -1%, 0) rotate(4deg) scale(1.06) scaleX(-1);
  }
  76% {
    transform: translate3d(-2%, 1%, 0) rotate(-2deg) scale(0.98) scaleX(-1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1) scaleX(-1);
  }
}

@keyframes heroMascotFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1) scaleX(-1);
  }
  50% {
    transform: translate3d(0, -2.8%, 0) rotate(1deg) scale(1.02) scaleX(-1);
  }
}

@keyframes heroMascotGlow {
  0%,
  100% {
    filter:
      drop-shadow(0 16px 22px rgba(0, 0, 0, 0.62))
      drop-shadow(0 0 24px rgba(255, 76, 171, 0.48))
      drop-shadow(0 0 30px rgba(79, 216, 255, 0.4));
  }
  50% {
    filter:
      drop-shadow(0 20px 26px rgba(0, 0, 0, 0.68))
      drop-shadow(0 0 36px rgba(255, 88, 178, 0.74))
      drop-shadow(0 0 44px rgba(99, 226, 255, 0.62));
  }
}

.hero-right {
  --comic-ink: #0f1117;
  --comic-acid: #cbff33;
  --comic-pink: #ff4ca8;
  --comic-cyan: #b26dff;
  --comic-yellow: #e8ff7a;
  position: relative;
  z-index: 2;
  width: min(560px, 41vw);
  justify-self: end;
  align-self: center;
  margin-block: auto;
  max-width: 100%;
  padding: clamp(1.42rem, 2.03vw, 1.85rem) clamp(0.94rem, 1.32vw, 1.2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.72rem, 1.32vw, 1.08rem);
  text-align: left;
  border: 3px solid rgba(203, 255, 51, 0.94);
  border-radius: 20px;
  -webkit-clip-path: none;
  clip-path: none;
  background:
    radial-gradient(circle at 14% 12%, rgba(203, 255, 51, 0.2), transparent 36%),
    radial-gradient(circle at 86% 14%, rgba(255, 76, 168, 0.22), transparent 38%),
    radial-gradient(circle at 18% 84%, rgba(178, 109, 255, 0.3), transparent 42%),
    linear-gradient(154deg, rgba(27, 12, 36, 0.96), rgba(10, 12, 18, 0.98) 54%, rgba(34, 12, 52, 0.95));
  box-shadow:
    0 0 0 2px rgba(11, 12, 18, 0.94) inset,
    0 0 0 1px rgba(230, 255, 134, 0.3) inset,
    0.22rem 0.22rem 0 var(--comic-ink),
    0.56rem 0.64rem 0 rgba(0, 0, 0, 0.42),
    0 0 22px rgba(203, 255, 51, 0.24),
    0 0 36px rgba(178, 109, 255, 0.22);
  transform: none;
  min-width: 0;
  overflow: hidden;
}

.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle, rgba(238, 245, 255, 0.16) 1.2px, transparent 1.4px) 0 0 / 12px 12px,
    radial-gradient(circle at 74% 74%, rgba(255, 76, 168, 0.16), transparent 34%),
    radial-gradient(circle at 22% 28%, rgba(203, 255, 51, 0.14), transparent 34%),
    linear-gradient(126deg, rgba(255, 255, 255, 0.07), transparent 46%);
  mix-blend-mode: multiply;
  opacity: 0.54;
}

.hero-right::after {
  content: "";
  position: absolute;
  inset: 0.36rem;
  pointer-events: none;
  z-index: 1;
  border: 2px dashed rgba(203, 255, 51, 0.56);
  border-radius: 14px;
  opacity: 0.66;
}

.hero-right > * {
  position: relative;
  z-index: 3;
}

.hero-corner-tentacle {
  --tentacle-transform: rotate(0deg);
  position: absolute;
  z-index: 2;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.82;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 6px 10px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 12px rgba(203, 255, 51, 0.22))
    drop-shadow(0 0 10px rgba(178, 109, 255, 0.2));
  transform: var(--tentacle-transform);
  transform-origin: center;
  animation: heroCornerTentacleSway 6s ease-in-out infinite;
}

.hero-corner-tentacle-tl {
  left: -14px;
  top: -18px;
  width: clamp(82px, 8.8vw, 134px);
  aspect-ratio: 236 / 339;
  background-image: url("./images/tentakls/tentakl (2).webp");
  --tentacle-transform: rotate(206deg);
  animation-delay: -0.6s;
}

.hero-corner-tentacle-tr {
  right: -18px;
  top: -14px;
  width: clamp(84px, 9.2vw, 142px);
  aspect-ratio: 383 / 298;
  background-image: url("./images/tentakls/tentakl (3).webp");
  --tentacle-transform: rotate(-14deg);
  animation-delay: -2.1s;
}

.hero-corner-tentacle-bl {
  left: -26px;
  bottom: -24px;
  width: clamp(98px, 10.8vw, 160px);
  aspect-ratio: 368 / 276;
  background-image: url("./images/tentakls/tentakl (1).webp");
  --tentacle-transform: rotate(16deg);
  animation-delay: -1.2s;
}

.hero-corner-tentacle-br {
  right: -28px;
  bottom: -26px;
  width: clamp(106px, 11.2vw, 172px);
  aspect-ratio: 429 / 398;
  background-image: url("./images/tentakls/tentakl (5).webp");
  --tentacle-transform: rotate(-20deg);
  animation-delay: -3.1s;
}

@keyframes heroCornerTentacleSway {
  0%,
  100% {
    transform: var(--tentacle-transform) translateY(0) scale(1);
    opacity: 0.78;
  }
  50% {
    transform: var(--tentacle-transform) translateY(-6px) scale(1.04);
    opacity: 0.92;
  }
}

.hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  margin: 0;
  max-width: 100%;
  padding: 0.2rem 0.56rem 0.22rem;
  border: 2.5px solid var(--comic-ink);
  border-radius: 999px 999px 960px 999px;
  background: linear-gradient(138deg, #e6ff73, #cbff33 56%, #a9df09);
  color: #101217;
  font-family: var(--pixel-font);
  font-size: clamp(0.5rem, 0.6vw, 0.64rem);
  letter-spacing: 0.11em;
  line-height: 1;
  transform: rotate(-2.4deg);
  box-shadow:
    0.09rem 0.09rem 0 var(--comic-ink),
    0 0 0 1px rgba(255, 255, 255, 0.46) inset,
    0 0 10px rgba(203, 255, 51, 0.34);
  z-index: 6;
}

.hero .kicker::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 3px;
  background: linear-gradient(150deg, #ff6ec4, #b26dff);
  box-shadow:
    0 0 0 2px rgba(15, 17, 23, 0.92),
    0 0 0 4px rgba(255, 255, 255, 0.38) inset;
}

.hero-title-draw {
  display: grid;
  gap: 0.04em;
  width: fit-content;
  transform: rotate(-0.8deg);
}

.hero h1 {
  margin: 0;
  font-family: "Upheaval Pro", var(--display-font);
  font-size: clamp(2.5rem, 7vw, 6.2rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.016em;
  max-width: 8.4ch;
  color: var(--white);
  position: relative;
}

.hero h1 .hero-title-main {
  display: inline-grid;
  position: relative;
  width: fit-content;
  max-width: 100%;
  isolation: isolate;
  padding: 0.15em 0.24em 0.21em;
  line-height: 0.76;
  transform: rotate(-2.2deg);
  border: 3px solid rgba(11, 11, 13, 0.97);
  border-radius: 0.17em 0.22em 0.17em 0.2em;
  background: linear-gradient(145deg, #dfff63 0%, #cbff33 56%, #abdc1e 100%);
  box-shadow:
    0.08em 0.08em 0 rgba(11, 11, 13, 0.97),
    0.16em 0.18em 0 rgba(0, 0, 0, 0.44),
    0 0 0.24em rgba(255, 76, 168, 0.28);
}

.hero h1 .hero-title-main > span {
  grid-area: 1 / 1;
  display: block;
}

.hero h1 .hero-title-main::before {
  content: "";
  position: absolute;
  inset: -0.44em -0.32em -0.36em -0.34em;
  pointer-events: none;
  z-index: -2;
  background: linear-gradient(140deg, #ff4ca8 0%, #b26dff 58%, #cbff33 100%);
  clip-path: polygon(50% 0%, 60% 14%, 78% 5%, 73% 25%, 100% 30%, 81% 43%, 95% 62%, 72% 63%, 76% 93%, 53% 75%, 39% 100%, 31% 78%, 8% 89%, 19% 65%, 0% 57%, 22% 44%, 6% 24%, 29% 28%, 23% 7%, 44% 18%);
  filter:
    drop-shadow(0.045em 0.045em 0 rgba(11, 11, 13, 0.95))
    drop-shadow(0.12em 0.14em 0 rgba(0, 0, 0, 0.46));
  animation: comicBurstPulse 3.2s ease-in-out infinite;
}

.hero h1 .hero-title-main::after {
  content: "";
  position: absolute;
  inset: 0.09em;
  z-index: 0;
  pointer-events: none;
  border-radius: 0.07em 0.12em 0.08em 0.12em;
  background:
    radial-gradient(circle, rgba(24, 26, 36, 0.28) 1.2px, transparent 1.4px) 0 0 / 10px 10px,
    linear-gradient(160deg, rgba(255, 255, 255, 0.28), transparent 45%);
  mix-blend-mode: multiply;
  opacity: 0.5;
}

.hero h1 .hero-title-stencil {
  position: relative;
  z-index: 1;
  color: #ff84e2;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 2.2px rgba(11, 11, 13, 0.97);
  text-shadow: 0.07em 0.07em 0 rgba(11, 11, 13, 0.97);
  transform: translate(0.058em, 0.05em);
  opacity: 0.95;
  animation: comicOffsetJitter 1.5s steps(2, end) infinite;
}

.hero h1 .hero-title-stencil::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 34%, rgba(255, 255, 255, 0.46) 34% 46%, transparent 46%),
    repeating-linear-gradient(-62deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 10px);
  mix-blend-mode: screen;
  opacity: 0.24;
}

.hero h1 .hero-title-white {
  position: relative;
  z-index: 2;
  color: #e6ff72;
  -webkit-text-stroke: 2.2px rgba(11, 11, 13, 0.97);
  opacity: 1;
  text-shadow:
    0.08em 0.08em 0 rgba(11, 11, 13, 0.97),
    -0.04em -0.03em 0 rgba(255, 76, 168, 0.88),
    0.04em -0.02em 0 rgba(178, 109, 255, 0.78);
  transform: translate(-0.014em, -0.01em);
  animation: comicMainBounce 2.8s ease-in-out infinite;
}

.hero h1 .hero-title-token {
  position: relative;
  display: block;
  width: fit-content;
  margin-top: 0.22em;
  margin-left: 0.08em;
  padding: 0.1em 0.32em 0.14em;
  line-height: 0.8;
  font-size: 0.58em;
  letter-spacing: 0.09em;
  color: #dfff77;
  background: linear-gradient(148deg, rgba(14, 12, 24, 0.96) 0%, rgba(36, 18, 54, 0.95) 52%, rgba(22, 14, 30, 0.96) 100%);
  border: 3px solid rgba(199, 255, 62, 0.94);
  border-radius: 0.16em 0.2em 0.16em 0.2em;
  transform: rotate(3.2deg) translateX(0.06em);
  text-shadow:
    0.04em 0.04em 0 rgba(11, 11, 13, 0.97),
    0 0 10px rgba(203, 255, 51, 0.42);
  box-shadow:
    0.08em 0.08em 0 rgba(11, 11, 13, 0.97),
    0.16em 0.16em 0 rgba(0, 0, 0, 0.42),
    0 0 0.2em rgba(255, 76, 168, 0.28);
  opacity: 0;
  animation:
    heroOctoIgnite 320ms steps(2, end) 240ms forwards,
    octoLimePulse 2.15s steps(2, end) 620ms infinite;
  will-change: transform, box-shadow;
}

.hero h1 .hero-title-token::after {
  content: "";
  position: absolute;
  right: 0.2em;
  top: -0.24em;
  width: 0.52em;
  height: 0.2em;
  border: 2px solid rgba(14, 12, 22, 0.96);
  border-bottom: 0;
  border-radius: 0.08em 0.08em 0 0;
  background: rgba(255, 130, 203, 0.92);
  transform: rotate(-9deg);
  box-shadow: 0 0.05em 0 rgba(11, 11, 13, 0.35);
}

@keyframes comicBurstPulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    filter:
      drop-shadow(0.045em 0.045em 0 rgba(11, 11, 13, 0.95))
      drop-shadow(0.12em 0.14em 0 rgba(0, 0, 0, 0.46));
  }
  50% {
    transform: scale(1.04) rotate(-1.2deg);
    filter:
      drop-shadow(0.055em 0.055em 0 rgba(11, 11, 13, 0.95))
      drop-shadow(0.16em 0.16em 0 rgba(0, 0, 0, 0.5));
  }
}

@keyframes comicOffsetJitter {
  0%,
  100% {
    transform: translate(0.058em, 0.05em);
  }
  35% {
    transform: translate(0.04em, 0.072em);
  }
  70% {
    transform: translate(0.068em, 0.038em);
  }
}

@keyframes comicMainBounce {
  0%,
  100% {
    transform: translate(-0.014em, -0.01em);
  }
  45% {
    transform: translate(-0.004em, -0.024em);
  }
  72% {
    transform: translate(-0.018em, 0.002em);
  }
}

@keyframes heroStencilPlate {
  0% {
    opacity: 0;
    transform: translate(-14px, -2px) rotate(-0.8deg) scale(0.98);
  }
  10% {
    opacity: 0.96;
  }
  74% {
    opacity: 0.92;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(14px, -6px) rotate(2.4deg) scale(0.96);
  }
}

@keyframes heroStencilSpray {
  0% {
    opacity: 0.9;
    transform: translateX(-18px) rotate(-3deg);
  }
  90% {
    opacity: 0.84;
    transform: translateX(calc(100% - 8px)) rotate(1.4deg);
  }
  100% {
    opacity: 0;
    transform: translateX(calc(100% + 14px)) rotate(2.6deg);
  }
}

@keyframes heroStencilInk {
  0% {
    opacity: 0.04;
    clip-path: inset(0 100% 0 0);
  }
  14% {
    opacity: 0.98;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes heroStencilDust {
  0% {
    opacity: 0;
    transform: translateX(-8px) scale(0.94);
  }
  24% {
    opacity: 0.46;
  }
  62% {
    opacity: 0.24;
  }
  100% {
    opacity: 0;
    transform: translateX(6px) scale(1.03);
  }
}

@keyframes heroStencilLift {
  to {
    opacity: 0;
    transform: translateY(-5px) scale(0.986);
    filter: blur(0.5px) saturate(0.86);
  }
}

@keyframes heroStencilRevealWhite {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    filter: blur(2.4px);
  }
  56% {
    opacity: 0.98;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: blur(0);
  }
}

@keyframes heroOctoIgnite {
  from {
    opacity: 0;
    transform: rotate(3.2deg) translateX(0.06em) scale(0.78);
    box-shadow:
      0.05em 0.05em 0 rgba(11, 11, 13, 0.95),
      0.1em 0.1em 0 rgba(0, 0, 0, 0.3);
  }
  to {
    opacity: 1;
    transform: rotate(3.2deg) translateX(0.06em) scale(1);
    box-shadow:
      0.08em 0.08em 0 rgba(11, 11, 13, 0.97),
      0.16em 0.16em 0 rgba(0, 0, 0, 0.42);
  }
}

@keyframes octoLimePulse {
  0%,
  100% {
    transform: rotate(3.2deg) translateX(0.06em) scale(1);
    box-shadow:
      0.08em 0.08em 0 rgba(11, 11, 13, 0.97),
      0.16em 0.16em 0 rgba(0, 0, 0, 0.42);
    text-shadow:
      0.04em 0.04em 0 rgba(11, 11, 13, 0.97),
      0 0 9px rgba(203, 255, 51, 0.4);
  }
  50% {
    transform: rotate(2.2deg) translateX(0.04em) translateY(-0.02em) scale(1.06);
    box-shadow:
      0.09em 0.09em 0 rgba(11, 11, 13, 0.97),
      0.2em 0.18em 0 rgba(0, 0, 0, 0.48);
    text-shadow:
      0.04em 0.04em 0 rgba(11, 11, 13, 0.97),
      0 0 14px rgba(203, 255, 51, 0.62),
      0 0 18px rgba(255, 76, 168, 0.3);
  }
}

.hero-copy {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 42ch;
  padding: 0.58rem 0.74rem 0.62rem;
  border: 2.5px solid rgba(203, 255, 51, 0.9);
  border-radius: 12px 16px 12px 15px;
  background:
    linear-gradient(154deg, rgba(18, 12, 30, 0.96), rgba(10, 12, 18, 0.97) 58%, rgba(28, 12, 42, 0.95));
  box-shadow:
    0.16rem 0.16rem 0 var(--comic-ink),
    0 0 0 2px rgba(255, 76, 168, 0.2) inset,
    0 0 12px rgba(203, 255, 51, 0.2);
  font-size: clamp(0.95rem, 0.88vw, 1.02rem);
  line-height: 1.3;
  font-weight: 700;
  color: rgba(238, 245, 255, 0.93);
  text-wrap: pretty;
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  bottom: -0.52rem;
  width: 0.9rem;
  height: 0.9rem;
  border-right: 2.5px solid rgba(203, 255, 51, 0.9);
  border-bottom: 2.5px solid rgba(203, 255, 51, 0.9);
  background: linear-gradient(154deg, rgba(18, 12, 30, 0.96), rgba(10, 12, 18, 0.97) 58%, rgba(28, 12, 42, 0.95));
  transform: rotate(34deg) skew(-12deg);
  box-shadow: 0.08rem 0.08rem 0 var(--comic-ink);
}

.toxic-plaque {
  position: relative;
  margin: 0;
  width: 100%;
  padding: 0.5rem 0.62rem 0.5rem;
  border: 2px solid rgba(203, 255, 51, 0.6);
  border-radius: 10px;
  background:
    linear-gradient(138deg, rgba(203, 255, 51, 0.12) 0%, rgba(178, 109, 255, 0.2) 48%, rgba(255, 76, 168, 0.16) 100%),
    linear-gradient(155deg, rgba(11, 12, 18, 0.92), rgba(28, 12, 41, 0.92));
  box-shadow:
    0 0 0 1px rgba(10, 10, 12, 0.96) inset,
    inset 0 0 0 1px rgba(215, 255, 95, 0.12),
    inset 14px 7px 28px rgba(203, 255, 51, 0.14),
    inset -16px 0 30px rgba(178, 109, 255, 0.18),
    inset 0 -12px 28px rgba(255, 76, 168, 0.16),
    0 4px 0 rgba(8, 8, 10, 0.96),
    0 8px 16px rgba(0, 0, 0, 0.34),
    0 0 14px rgba(203, 255, 51, 0.16);
  overflow: hidden;
}

.toxic-plaque-copy {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 180ms ease;
}

.toxic-plaque-copy:hover {
  transform: translateY(-1px);
}

.toxic-plaque-copy:focus-visible {
  outline: 2px solid rgba(240, 255, 146, 0.92);
  outline-offset: 2px;
}

.toxic-plaque::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(238, 245, 255, 0.16) 1.1px, transparent 1.3px) 0 0 / 10px 10px,
    repeating-linear-gradient(-24deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 10px);
  mix-blend-mode: screen;
  opacity: 0.36;
}

.toxic-plaque::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(203, 255, 51, 0.24), transparent 56%),
    radial-gradient(ellipse at 72% 20%, rgba(178, 109, 255, 0.3), transparent 58%),
    radial-gradient(ellipse at 78% 86%, rgba(255, 76, 168, 0.26), transparent 60%);
  filter: blur(6px) saturate(1.45);
  mix-blend-mode: screen;
  opacity: 0.5;
}

.toxic-plaque-kicker {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0.09rem 0.32rem 0.12rem;
  border: 2px solid rgba(8, 8, 10, 0.95);
  border-radius: 999px;
  background: linear-gradient(130deg, var(--acid), #e2ff5e);
  color: #111111;
  font-family: var(--graffiti-font);
  font-size: clamp(0.5rem, 0.62vw, 0.64rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow:
    0 2px 0 rgba(8, 8, 10, 0.92),
    0 0 0 1px rgba(225, 255, 143, 0.58) inset,
    0 0 6px rgba(182, 255, 0, 0.46),
    0 0 5px rgba(114, 61, 255, 0.38),
    0 0 5px rgba(255, 36, 138, 0.4);
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.12);
}

.toxic-plaque-text {
  position: relative;
  z-index: 2;
  margin: 0.26rem 0 0;
  font-size: clamp(0.65rem, 0.76vw, 0.78rem);
  line-height: 1.3;
  color: rgba(233, 241, 255, 0.92);
  text-wrap: pretty;
}

.toxic-plaque-ca-prefix {
  display: inline-block;
  font-family: var(--pixel-font);
  font-size: clamp(0.54rem, 0.68vw, 0.68rem);
  letter-spacing: 0.08em;
  color: rgba(217, 255, 121, 0.98);
}

.toxic-plaque-ca-value {
  display: block;
  margin-top: 0.16rem;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: clamp(0.638rem, 0.9vw, 0.842rem);
  line-height: 1.22;
  letter-spacing: 0.01em;
  color: rgba(241, 246, 255, 0.95);
  text-shadow:
    0 0 8px rgba(203, 255, 51, 0.22),
    0 0 10px rgba(178, 109, 255, 0.14);
}

.toxic-plaque-feedback {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
  margin-top: 0.32rem;
  padding: 0.06rem 0.36rem 0.1rem;
  border-radius: 999px;
  border: 1px solid rgba(203, 255, 51, 0.26);
  background: rgba(12, 10, 20, 0.58);
  color: rgba(228, 236, 252, 0.86);
  font-family: var(--pixel-font);
  font-size: clamp(0.42rem, 0.52vw, 0.54rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.toxic-plaque-feedback::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: radial-gradient(circle at 40% 35%, rgba(203, 255, 51, 0.95), rgba(203, 255, 51, 0.32));
  box-shadow: 0 0 8px rgba(203, 255, 51, 0.5);
}

.toxic-plaque-copy[data-copy-state="copied"] {
  border-color: rgba(203, 255, 51, 0.78);
  box-shadow:
    0 0 0 1px rgba(10, 10, 12, 0.94) inset,
    inset 0 0 0 1px rgba(215, 255, 121, 0.18),
    inset 14px 7px 28px rgba(203, 255, 51, 0.2),
    inset -16px 0 30px rgba(178, 109, 255, 0.2),
    inset 0 -12px 28px rgba(255, 76, 168, 0.2),
    0 4px 0 rgba(8, 8, 10, 0.96),
    0 8px 16px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(203, 255, 51, 0.36);
}

.toxic-plaque-copy[data-copy-state="copied"] .toxic-plaque-feedback {
  border-color: rgba(203, 255, 51, 0.46);
  background: rgba(42, 62, 12, 0.42);
  color: rgba(229, 255, 161, 0.98);
}

.toxic-plaque-copy[data-copy-state="error"] {
  border-color: rgba(255, 116, 166, 0.72);
}

.toxic-plaque-copy[data-copy-state="error"] .toxic-plaque-feedback {
  border-color: rgba(255, 122, 172, 0.54);
  background: rgba(66, 14, 38, 0.48);
  color: rgba(255, 189, 214, 0.96);
}

.toxic-plaque-copy[data-copy-state="error"] .toxic-plaque-feedback::before {
  background: radial-gradient(circle at 40% 35%, rgba(255, 126, 174, 0.94), rgba(255, 74, 134, 0.32));
  box-shadow: 0 0 8px rgba(255, 87, 156, 0.46);
}

.toxic-plaque-chips {
  position: relative;
  z-index: 2;
  margin-top: 0.28rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem;
}

.toxic-plaque-chips span {
  display: inline-block;
  padding: 0.08rem 0.3rem 0.11rem;
  border: 1px solid rgba(203, 255, 51, 0.28);
  border-radius: 999px;
  background: rgba(12, 8, 20, 0.58);
  color: rgba(236, 243, 255, 0.88);
  font-size: clamp(0.46rem, 0.56vw, 0.58rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plaque-drip {
  position: absolute;
  width: 11px;
  border-radius: 999px;
  opacity: 0.9;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.34));
  animation: plaqueDripSway 5.8s ease-in-out infinite;
}

.plaque-drip::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 12px;
  height: 8px;
  border-radius: 999px;
  transform: translateX(-50%);
}

.plaque-drip-a {
  right: 13%;
  top: -1px;
  height: 28px;
  background: linear-gradient(180deg, rgba(225, 255, 74, 0.94), rgba(160, 245, 0, 0.86));
  animation-delay: -0.7s;
}

.plaque-drip-a::before {
  background: rgba(192, 246, 20, 0.95);
}

.plaque-drip-b {
  right: 25%;
  top: -1px;
  height: 22px;
  background: linear-gradient(180deg, rgba(255, 137, 182, 0.92), rgba(255, 46, 99, 0.84));
  animation-delay: -2.2s;
}

.plaque-drip-b::before {
  background: rgba(255, 96, 147, 0.92);
}

.plaque-drip-c {
  right: 5%;
  top: -1px;
  height: 18px;
  background: linear-gradient(180deg, rgba(164, 121, 255, 0.9), rgba(108, 43, 217, 0.82));
  animation-delay: -3.5s;
}

.plaque-drip-c::before {
  background: rgba(136, 75, 241, 0.92);
}

@keyframes plaqueDripSway {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2px);
  }
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.64rem;
  align-items: center;
  width: 100%;
  margin: 0;
}

.img-btn {
  --btn-main-1: #4f2aa3;
  --btn-main-2: #6f42e6;
  --btn-glow: rgba(117, 85, 255, 0.4);
  --btn-edge: rgba(9, 9, 12, 0.98);
  --btn-tilt: 0deg;
  position: relative;
  width: 100%;
  min-width: 0;
  height: clamp(70px, 6.1vw, 84px);
  padding: 0.34rem 0.4rem 0.36rem;
  border: 2px solid rgba(8, 9, 12, 0.98);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 40%),
    linear-gradient(160deg, var(--btn-main-1), var(--btn-main-2));
  box-shadow:
    0 4px 0 var(--btn-edge),
    0 10px 20px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(203, 255, 51, 0.16) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    filter 220ms ease;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  align-items: center;
  gap: 0.08rem;
  text-decoration: none;
  isolation: isolate;
  transform: rotate(var(--btn-tilt));
}

.img-btn img {
  position: relative;
  z-index: 3;
  width: 75%;
  height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.55));
}

.img-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.24), transparent 32%),
    radial-gradient(circle, rgba(18, 20, 30, 0.24) 1.1px, transparent 1.3px) 0 0 / 10px 10px,
    repeating-linear-gradient(
      -18deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 10px
    );
  opacity: 0.56;
}

.img-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(118deg, transparent 20%, rgba(255, 255, 255, 0.38) 48%, transparent 76%);
  transform: translateX(-140%);
  transition: transform 320ms ease;
}

.img-btn:hover {
  transform: translateY(-4px) rotate(calc(var(--btn-tilt) + 0.22deg)) scale(1.02);
  box-shadow:
    0 6px 0 var(--btn-edge),
    0 0 16px var(--btn-glow),
    0 12px 24px rgba(0, 0, 0, 0.44);
  filter: saturate(1.08);
  animation: btnBounce 360ms ease;
}

.img-btn:hover::after {
  transform: translateX(130%);
}

.img-btn:active {
  transform: translateY(-1px) rotate(calc(var(--btn-tilt) + 0.08deg)) scale(1.01);
}

.img-btn:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

@keyframes btnBounce {
  0% {
    transform: translateY(0) rotate(var(--btn-tilt)) scale(1);
  }
  45% {
    transform: translateY(-6px) rotate(calc(var(--btn-tilt) + 0.34deg)) scale(1.03);
  }
  75% {
    transform: translateY(-3px) rotate(calc(var(--btn-tilt) + 0.2deg)) scale(1.015);
  }
  100% {
    transform: translateY(-4px) rotate(calc(var(--btn-tilt) + 0.22deg)) scale(1.02);
  }
}

.btn-fallback-icon {
  position: relative;
  z-index: 3;
  width: clamp(25px, 2.4vw, 35px);
  height: clamp(25px, 2.4vw, 35px);
  fill: rgba(255, 255, 255, 0.96);
  opacity: 0;
  transform: translateY(1px);
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.55));
}

.img-btn-text {
  position: relative;
  z-index: 3;
  font-family: var(--graffiti-font);
  font-weight: 700;
  font-size: clamp(0.56rem, 0.67vw, 0.76rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(255, 255, 255, 0.98);
  padding: 0.1rem 0.42rem 0.12rem;
  border: 1px solid rgba(8, 8, 10, 0.92);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(11, 12, 18, 0.94), rgba(24, 16, 34, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 1px 0 rgba(0, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.98);
  text-shadow:
    0 1px 0 rgba(8, 8, 10, 0.9),
    0 0 8px rgba(255, 255, 255, 0.28);
  transform: rotate(-1deg);
}

.img-btn.is-fallback img {
  display: none;
}

.img-btn.is-fallback .btn-fallback-icon {
  opacity: 1;
}

.action-pump {
  --btn-tilt: -3.9deg;
  --btn-main-1: #1f3608;
  --btn-main-2: #bdf62f;
  --btn-edge: #12190a;
  --btn-glow: rgba(203, 255, 51, 0.52);
  background:
    radial-gradient(circle at 18% 14%, rgba(247, 255, 220, 0.42), transparent 34%),
    repeating-linear-gradient(
      -22deg,
      rgba(23, 37, 8, 0.16) 0 2px,
      rgba(23, 37, 8, 0) 2px 10px
    ),
    linear-gradient(160deg, var(--btn-main-1) 0%, #78c718 52%, var(--btn-main-2) 100%);
}

.action-twitter {
  --btn-tilt: 3.4deg;
  --btn-main-1: #28153d;
  --btn-main-2: #b26dff;
  --btn-edge: #160c22;
  --btn-glow: rgba(178, 109, 255, 0.5);
  background:
    radial-gradient(circle at 20% 14%, rgba(231, 228, 255, 0.36), transparent 35%),
    repeating-linear-gradient(
      -22deg,
      rgba(20, 14, 46, 0.16) 0 2px,
      rgba(20, 14, 46, 0) 2px 10px
    ),
    linear-gradient(160deg, var(--btn-main-1) 0%, #7737ca 54%, var(--btn-main-2) 100%);
}

.action-dex {
  --btn-tilt: -3.1deg;
  --btn-main-1: #361029;
  --btn-main-2: #ff4ca8;
  --btn-edge: #1f0b17;
  --btn-glow: rgba(255, 76, 168, 0.52);
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 224, 239, 0.36), transparent 34%),
    repeating-linear-gradient(
      -22deg,
      rgba(48, 14, 29, 0.16) 0 2px,
      rgba(48, 14, 29, 0) 2px 10px
    ),
    linear-gradient(160deg, var(--btn-main-1) 0%, #9d2f64 55%, var(--btn-main-2) 100%);
}

.graffiti-toggle {
  position: absolute;
  right: clamp(1rem, 2.3vw, 2.5rem);
  top: clamp(3.2rem, 8.8vh, 5.4rem);
  left: auto;
  bottom: auto;
  z-index: 32;
  width: clamp(132px, 13.4vw, 194px);
  aspect-ratio: 1;
  border: 4px solid rgba(8, 8, 10, 0.98);
  border-radius: 999px;
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.54), transparent 36%),
    radial-gradient(circle at 78% 82%, rgba(255, 46, 99, 0.62), transparent 42%),
    conic-gradient(from 210deg, #d6ff3a 0deg, #b4f000 110deg, #3fe0ff 220deg, #ff2e63 330deg, #d6ff3a 360deg);
  color: #0d1116;
  padding: 0;
  display: block;
  text-align: center;
  box-shadow:
    0 9px 0 var(--ink),
    0 0 34px rgba(180, 240, 0, 0.95),
    0 0 58px rgba(255, 46, 99, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, filter 220ms ease;
  animation: graffitiTogglePulse 1.9s ease-in-out infinite;
  isolation: isolate;
  overflow: visible;
  cursor: pointer;
  transform: rotate(-4.5deg);
}

.graffiti-toggle-art {
  position: absolute;
  inset: 0 5% 18%;
  z-index: 1;
  border-radius: 0;
  background: url("./images/buttons/balon.webp") center 58% / contain no-repeat;
  box-shadow: none;
  transform: rotate(-2deg) scale(1.18);
  transform-origin: 50% 28%;
  pointer-events: none;
}

.graffiti-toggle-label {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 7%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 0.08rem;
  padding: 0.32rem 0.3rem 0.34rem;
  border: 1.5px solid rgba(8, 8, 10, 0.84);
  border-radius: 14px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(229, 239, 255, 0.78)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    0 4px 0 rgba(8, 8, 10, 0.9),
    0 0 18px rgba(255, 255, 255, 0.44);
}

.graffiti-toggle::before {
  content: "";
  position: absolute;
  inset: -11px;
  border: 2px dashed rgba(255, 46, 99, 0.74);
  border-radius: 999px;
  transform: rotate(0deg) scale(1);
  opacity: 0.84;
  pointer-events: none;
  animation: graffitiToggleSweep 3.1s ease-in-out infinite;
}

.graffiti-toggle::after {
  content: none;
  position: absolute;
  right: -0.24rem;
  top: -0.62rem;
  border: 2px solid rgba(8, 8, 10, 0.96);
  border-radius: 999px;
  background: linear-gradient(140deg, #ff2e63, #ff6fa2);
  color: #ffffff;
  font-family: var(--pixel-font);
  font-size: 0.42rem;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.12rem 0.38rem 0.16rem;
  box-shadow:
    0 4px 0 rgba(8, 8, 10, 0.96),
    0 0 18px rgba(255, 46, 99, 0.76);
  pointer-events: none;
  animation: graffitiToggleBadge 1.9s ease-in-out infinite;
}

.graffiti-toggle:hover {
  transform: translateY(-6px) rotate(-5deg) scale(1.08);
  box-shadow:
    0 10px 0 var(--ink),
    0 0 44px rgba(180, 240, 0, 1),
    0 0 72px rgba(255, 46, 99, 0.8);
  filter: saturate(1.24) brightness(1.08);
}

.graffiti-toggle:hover .graffiti-toggle-art {
  transform: rotate(-3.5deg) scale(1.24);
}

.graffiti-toggle:active {
  transform: translateY(-2px) rotate(-4.4deg) scale(1.02);
}

.graffiti-toggle:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

.graffiti-toggle.is-active {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.5), transparent 38%),
    conic-gradient(from 210deg, rgba(255, 84, 139, 0.98), rgba(255, 46, 99, 0.98), rgba(108, 43, 217, 0.95), rgba(255, 84, 139, 0.98));
  color: rgba(255, 251, 254, 0.98);
  box-shadow:
    0 9px 0 var(--ink),
    0 0 32px rgba(255, 46, 99, 0.84),
    0 0 56px rgba(108, 43, 217, 0.62);
}

.graffiti-toggle.is-active .graffiti-toggle-art {
  filter: saturate(1.16) contrast(1.06);
}

.graffiti-toggle.is-active .graffiti-toggle-label {
  border-color: rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(150deg, rgba(19, 10, 28, 0.84), rgba(52, 10, 38, 0.82)),
    rgba(20, 12, 30, 0.76);
  box-shadow:
    0 4px 0 rgba(8, 8, 10, 0.92),
    0 0 16px rgba(255, 46, 99, 0.45);
}

.graffiti-toggle.is-active::after {
  background: linear-gradient(140deg, #d8ff47, #b6f900);
  color: rgba(16, 18, 22, 0.98);
  box-shadow:
    0 3px 0 rgba(8, 8, 10, 0.96),
    0 0 14px rgba(180, 240, 0, 0.76);
}

.graffiti-toggle-kicker {
  font-family: var(--pixel-font);
  font-size: 0.34rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(14, 16, 22, 0.9);
  border: 1px solid rgba(8, 8, 10, 0.76);
  border-radius: 999px;
  padding: 0.05rem 0.24rem 0.08rem;
  background: rgba(255, 255, 255, 0.72);
}

.graffiti-toggle-text {
  font-family: var(--display-font);
  font-size: clamp(0.66rem, 0.9vw, 0.86rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(13, 15, 20, 0.97);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.54),
    0 0 10px rgba(255, 255, 255, 0.36);
}

.graffiti-toggle-hint {
  font-family: var(--body-font);
  font-size: clamp(0.42rem, 0.52vw, 0.54rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.08;
  text-transform: uppercase;
  color: rgba(13, 15, 20, 0.8);
}

.graffiti-toggle.is-active .graffiti-toggle-kicker {
  color: rgba(255, 241, 247, 0.96);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(12, 12, 18, 0.35);
}

.graffiti-toggle.is-active .graffiti-toggle-text,
.graffiti-toggle.is-active .graffiti-toggle-hint {
  color: rgba(255, 245, 250, 0.98);
  text-shadow:
    0 1px 0 rgba(12, 12, 18, 0.56),
    0 0 12px rgba(255, 255, 255, 0.44);
}

.graffiti-wall {
  position: absolute;
  inset: 0;
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 340ms ease;
}

.hero.is-graffiti-mode .graffiti-wall {
  opacity: 1;
  pointer-events: auto;
}

#graffitiCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.04), transparent 40%),
    radial-gradient(circle at 84% 74%, rgba(255, 46, 99, 0.05), transparent 36%);
}

.graffiti-tools {
  position: absolute;
  left: clamp(0.8rem, 1.9vw, 1.4rem);
  top: clamp(0.85rem, 2.1vh, 1.35rem);
  z-index: 7;
  width: min(348px, calc(100% - 1.6rem));
  border: 1px solid rgba(220, 230, 255, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% -12%, rgba(203, 255, 51, 0.18), transparent 45%),
    radial-gradient(circle at -12% 118%, rgba(255, 76, 168, 0.16), transparent 48%),
    linear-gradient(160deg, rgba(9, 12, 20, 0.92), rgba(18, 14, 28, 0.94));
  color: #fbfdff;
  padding: 0.72rem 0.74rem 0.78rem;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 0 24px rgba(97, 227, 255, 0.15);
  backdrop-filter: blur(12px) saturate(1.12);
  display: grid;
  gap: 0.52rem;
  opacity: 0;
  transform: translateY(-10px) scale(0.96);
  transition:
    transform 260ms ease,
    opacity 260ms ease,
    width 260ms ease,
    padding 260ms ease,
    gap 260ms ease;
}

.graffiti-tools-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.42rem;
}

.graffiti-tools-heading {
  min-width: 0;
  display: grid;
  gap: 0.08rem;
}

.graffiti-tools-body {
  display: grid;
  gap: 0.52rem;
  overflow: hidden;
  max-height: min(62vh, 560px);
  opacity: 1;
  transform: translateY(0) scaleY(1);
  transform-origin: top center;
  visibility: visible;
  transition:
    max-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.graffiti-tools-footer {
  margin-top: 0.1rem;
  padding-top: 0.28rem;
  border-top: 1px dashed rgba(220, 230, 255, 0.28);
}

.graffiti-tools-toggle {
  width: 100%;
  border: 1.5px solid rgba(203, 255, 51, 0.52);
  border-radius: 12px;
  padding: 0.34rem 0.5rem 0.36rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  background:
    linear-gradient(165deg, rgba(203, 255, 51, 0.2), rgba(164, 121, 255, 0.16)),
    linear-gradient(160deg, rgba(14, 18, 28, 0.92), rgba(14, 16, 24, 0.9));
  color: rgba(246, 250, 255, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 3px 0 rgba(7, 8, 12, 0.88),
    0 0 12px rgba(203, 255, 51, 0.18);
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.graffiti-tools-toggle:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 4px 0 rgba(7, 8, 12, 0.88),
    0 0 16px rgba(203, 255, 51, 0.28);
  filter: brightness(1.08);
}

.graffiti-tools-toggle:focus-visible {
  outline: 2px solid rgba(232, 255, 122, 0.92);
  outline-offset: 2px;
}

.graffiti-tools-toggle-arrow {
  display: inline-grid;
  place-items: center;
  width: 0.72rem;
  height: 0.72rem;
  font-family: var(--pixel-font);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  color: currentColor;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
  background: none;
  clip-path: none;
  transition: transform 180ms ease, filter 180ms ease;
  transform-origin: center;
}

.graffiti-tools-toggle-text {
  display: inline-block;
  font-family: var(--pixel-font);
  font-size: 0.36rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.hero.is-graffiti-mode .graffiti-tools {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.graffiti-tools.is-collapsed {
  width: min(246px, calc(100% - 1.6rem));
  padding-bottom: 0.62rem;
  gap: 0.18rem;
}

.graffiti-tools.is-collapsed .graffiti-tools-body {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px) scaleY(0.96);
  visibility: hidden;
  pointer-events: none;
  transition:
    max-height 280ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 180ms ease,
    transform 240ms ease,
    visibility 0s linear 280ms;
}

.graffiti-tools.is-collapsed .graffiti-tools-footer {
  margin-top: 0;
  padding-top: 0.18rem;
  border-top-color: rgba(203, 255, 51, 0.28);
}

.graffiti-tools.is-collapsed .graffiti-tools-toggle-arrow {
  transform: rotate(180deg);
}

.graffiti-tools-title {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f7fbff;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.38),
    0 0 12px rgba(203, 255, 51, 0.5);
}

.graffiti-tools-subtitle {
  margin: -0.12rem 0 0.1rem;
  font-family: var(--pixel-font);
  font-size: 0.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(233, 241, 255, 0.82);
}

.graffiti-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.28rem;
  margin-bottom: 0.02rem;
}

.graffiti-status span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(224, 235, 255, 0.24);
  border-radius: 12px;
  padding: 0.24rem 0.34rem 0.22rem;
  gap: 0.03rem;
  font-family: var(--pixel-font);
  font-size: 0.44rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04) 44%, rgba(120, 134, 165, 0.08)),
    rgba(10, 12, 18, 0.46);
  color: rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 6px 12px rgba(0, 0, 0, 0.24);
}

.graffiti-status span::before {
  content: attr(data-label);
  font-size: 0.3rem;
  letter-spacing: 0.1em;
  color: rgba(180, 240, 0, 0.8);
}

.graffiti-group-title {
  margin: 0.08rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-family: var(--pixel-font);
  font-size: 0.4rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(235, 241, 255, 0.86);
}

.graffiti-inline-icon {
  width: clamp(1.08rem, 1.58vw, 1.44rem);
  height: clamp(1.08rem, 1.58vw, 1.44rem);
  object-fit: contain;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 8px rgba(203, 255, 51, 0.32));
  flex: 0 0 auto;
}

.graffiti-tool-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
}

.graffiti-colors {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  gap: 0.26rem;
}

.graffiti-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 0.26rem;
}

.graffiti-swatch {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1.5px solid rgba(8, 8, 10, 0.88);
  border-radius: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 4px 10px rgba(0, 0, 0, 0.34);
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.graffiti-swatch::after {
  content: "";
  position: absolute;
  inset: 24%;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 140ms ease, transform 140ms ease;
}

.graffiti-swatch[data-graffiti-color="#b4f000"] {
  background: #b4f000;
}

.graffiti-swatch[data-graffiti-color="#ff2e63"] {
  background: #ff2e63;
}

.graffiti-swatch[data-graffiti-color="#6c2bd9"] {
  background: #6c2bd9;
}

.graffiti-swatch[data-graffiti-color="#e6f1ff"] {
  background: #e6f1ff;
}

.graffiti-swatch[data-graffiti-color="#1f2128"] {
  background: #1f2128;
}

.graffiti-swatch.is-active {
  transform: translateY(-1px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 0 0 2px rgba(180, 240, 0, 0.42),
    0 0 18px rgba(180, 240, 0, 0.38);
}

.graffiti-swatch.is-active::after {
  opacity: 1;
  transform: scale(1);
}

.graffiti-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  border: 1px solid rgba(248, 250, 255, 0.24);
  border-radius: 12px;
  padding: 0.3rem 0.54rem;
  background:
    linear-gradient(158deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04) 40%, rgba(84, 96, 125, 0.12)),
    rgba(12, 14, 22, 0.52);
  font-family: var(--pixel-font);
  font-size: 0.44rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 250, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 5px 12px rgba(0, 0, 0, 0.3);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.graffiti-chip-icon {
  width: clamp(1.62rem, 2.42vw, 2.28rem);
  height: clamp(1.62rem, 2.42vw, 2.28rem);
  object-fit: contain;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.54))
    drop-shadow(0 0 6px rgba(180, 240, 0, 0.18));
  flex: 0 0 auto;
}

.graffiti-actions .graffiti-chip {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 10px;
  padding: 0;
  gap: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.graffiti-actions .graffiti-chip .graffiti-chip-icon {
  width: clamp(2.86rem, 5.8vw, 3.55rem);
  height: clamp(2.86rem, 5.8vw, 3.55rem);
}

.graffiti-chip:hover,
.graffiti-swatch:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.graffiti-chip.is-active {
  border-color: rgba(180, 240, 0, 0.62);
  background:
    linear-gradient(158deg, rgba(181, 240, 0, 0.28), rgba(133, 188, 0, 0.2)),
    rgba(12, 16, 12, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 6px 12px rgba(0, 0, 0, 0.32),
    0 0 12px rgba(180, 240, 0, 0.36);
}

.graffiti-chip.ghost {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(129, 141, 172, 0.1) 46%, rgba(52, 62, 84, 0.18)),
    rgba(10, 12, 20, 0.52);
}

.graffiti-chip:disabled {
  opacity: 0.36;
  pointer-events: none;
  filter: grayscale(0.3);
}

.graffiti-range {
  display: grid;
  gap: 0.2rem;
  border: 1px solid rgba(224, 236, 255, 0.2);
  border-radius: 12px;
  padding: 0.24rem 0.28rem 0.28rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 38%, rgba(64, 76, 104, 0.1)),
    rgba(6, 8, 14, 0.48);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 6px 12px rgba(0, 0, 0, 0.22);
}

.graffiti-range span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--pixel-font);
  font-size: 0.4rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(235, 241, 255, 0.86);
}

.graffiti-range-label {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
}

.graffiti-range strong {
  font-family: var(--pixel-font);
  font-size: 0.34rem;
  letter-spacing: 0.08em;
  color: rgba(180, 240, 0, 0.96);
}

.graffiti-range input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(180, 240, 0, 0.92), rgba(255, 46, 99, 0.85));
}

.graffiti-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border: 2px solid #0b0c0f;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(180, 240, 0, 0.34);
  cursor: pointer;
}

.graffiti-range input[type="range"]::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: 2px solid #0b0c0f;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(180, 240, 0, 0.34);
  cursor: pointer;
}

.graffiti-range input[type="range"]::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(180, 240, 0, 0.92), rgba(255, 46, 99, 0.85));
}

/* Comic skin for Graffiti Lab controls using the site neon palette */
.graffiti-tools {
  --lab-ink: #0f1117;
  --lab-acid: #cbff33;
  --lab-pink: #ff4ca8;
  --lab-violet: #b26dff;
  --lab-cyan: #61e3ff;
  --lab-text: #eef3ff;
  --lab-muted: rgba(226, 236, 255, 0.82);
  overflow: hidden;
  border: 3px solid rgba(203, 255, 51, 0.92);
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 12%, rgba(203, 255, 51, 0.22), transparent 36%),
    radial-gradient(circle at 86% 14%, rgba(255, 76, 168, 0.24), transparent 38%),
    radial-gradient(circle at 16% 84%, rgba(97, 227, 255, 0.2), transparent 42%),
    linear-gradient(154deg, rgba(27, 12, 36, 0.96), rgba(10, 12, 18, 0.98) 54%, rgba(34, 12, 52, 0.95));
  color: var(--lab-text);
  box-shadow:
    0 0 0 2px rgba(11, 12, 18, 0.94) inset,
    0 0 0 1px rgba(230, 255, 134, 0.3) inset,
    0.2rem 0.2rem 0 var(--lab-ink),
    0.52rem 0.6rem 0 rgba(0, 0, 0, 0.42),
    0 0 18px rgba(203, 255, 51, 0.22),
    0 0 30px rgba(178, 109, 255, 0.2);
  backdrop-filter: none;
}

.graffiti-tools::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(238, 245, 255, 0.14) 1.1px, transparent 1.3px) 0 0 / 11px 11px,
    repeating-linear-gradient(-24deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 10px);
  mix-blend-mode: screen;
  opacity: 0.38;
}

.graffiti-tools::after {
  content: "INK LAB";
  position: absolute;
  top: 0.52rem;
  right: 0.62rem;
  z-index: 1;
  padding: 0.12rem 0.3rem 0.16rem;
  border: 2px solid rgba(8, 8, 10, 0.95);
  border-radius: 999px;
  font-family: "Bungee", var(--display-font);
  font-size: 0.34rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f1117;
  background: linear-gradient(140deg, #e6ff73, #cbff33 50%, #9bf5ff);
  box-shadow:
    0 2px 0 rgba(8, 8, 10, 0.95),
    0 0 10px rgba(203, 255, 51, 0.42);
  transform: rotate(5deg);
  pointer-events: none;
}

.graffiti-tools-head {
  position: relative;
  z-index: 1;
  border: 2.5px solid rgba(203, 255, 51, 0.86);
  border-radius: 12px;
  padding: 0.28rem 0.44rem 0.32rem;
  background:
    radial-gradient(circle at 10% 24%, rgba(203, 255, 51, 0.18), transparent 44%),
    radial-gradient(circle at 88% 30%, rgba(255, 76, 168, 0.2), transparent 48%),
    linear-gradient(145deg, rgba(11, 12, 18, 0.94), rgba(26, 12, 40, 0.92));
  box-shadow:
    0 0 0 1px rgba(9, 9, 12, 0.94) inset,
    0 4px 0 var(--lab-ink),
    0 0 12px rgba(178, 109, 255, 0.24);
}

.graffiti-tools-heading {
  width: 100%;
}

.graffiti-tools-title {
  font-family: "Bungee", var(--display-font);
  font-size: clamp(0.96rem, 1.55vw, 1.14rem);
  line-height: 1.05;
  color: #f8fbff;
  letter-spacing: 0.05em;
  text-shadow:
    0 2px 0 rgba(8, 9, 12, 0.92),
    0 0 6px rgba(10, 12, 18, 0.55);
}

.graffiti-tools-subtitle {
  display: inline-block;
  margin-top: 0.08rem;
  padding: 0.08rem 0.26rem 0.1rem;
  border: 1px solid rgba(97, 227, 255, 0.48);
  border-radius: 999px;
  background: rgba(7, 9, 15, 0.66);
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  color: #eef5ff;
}

.graffiti-tools-footer {
  border-top-color: rgba(203, 255, 51, 0.28);
}

.graffiti-tools-toggle {
  border: 2px solid rgba(203, 255, 51, 0.76);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 22%, rgba(203, 255, 51, 0.22), transparent 38%),
    radial-gradient(circle at 88% 78%, rgba(255, 76, 168, 0.2), transparent 46%),
    linear-gradient(155deg, rgba(8, 10, 16, 0.96), rgba(20, 12, 31, 0.94));
  color: #f2f7ff;
  text-shadow: 0 1px 0 rgba(8, 8, 10, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 3px 0 rgba(8, 8, 10, 0.96),
    0 0 14px rgba(203, 255, 51, 0.24);
}

.graffiti-tools-toggle:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 4px 0 rgba(8, 8, 10, 0.96),
    0 0 16px rgba(203, 255, 51, 0.34);
  filter: brightness(1.03);
}

.graffiti-tools-toggle:focus-visible {
  outline: 2px solid rgba(232, 255, 122, 0.92);
}

.graffiti-tools-toggle-arrow {
  color: rgba(245, 250, 255, 0.98);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 0 6px rgba(97, 227, 255, 0.34));
}

.graffiti-tools-toggle-text {
  font-family: var(--pixel-font);
  font-size: 0.4rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.graffiti-status span {
  border: 2px solid rgba(203, 255, 51, 0.52);
  border-radius: 10px;
  padding: 0.28rem 0.36rem 0.26rem;
  background:
    radial-gradient(circle at 84% 22%, rgba(97, 227, 255, 0.16), transparent 42%),
    linear-gradient(160deg, rgba(7, 9, 14, 0.96), rgba(20, 10, 31, 0.94));
  color: #f5f9ff;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 3px 0 rgba(8, 9, 12, 0.94);
}

.graffiti-status span::before {
  font-family: var(--pixel-font);
  font-size: 0.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(217, 255, 121, 0.94);
}

.graffiti-group-title {
  width: max-content;
  padding: 0.1rem 0.34rem 0.12rem;
  border: 2px solid rgba(8, 8, 10, 0.94);
  border-radius: 999px;
  font-family: var(--pixel-font);
  font-size: 0.42rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #dfff63, #cbff33 56%, #61e3ff);
  color: #0e1218;
  box-shadow:
    0 2px 0 rgba(8, 8, 10, 0.94),
    0 0 10px rgba(203, 255, 51, 0.32);
}

.graffiti-swatch {
  border: 2px solid rgba(8, 8, 10, 0.94);
  border-radius: 10px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 4px 0 rgba(8, 8, 10, 0.94),
    0 8px 14px rgba(0, 0, 0, 0.26);
}

.graffiti-swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.38), transparent 54%);
}

.graffiti-swatch::after {
  inset: 22%;
  border: 2px solid rgba(8, 8, 10, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 0 rgba(8, 8, 10, 0.94);
  transform: scale(0.6) rotate(-8deg);
}

.graffiti-swatch.is-active {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(236, 255, 160, 0.98);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.72),
    0 6px 0 rgba(8, 8, 10, 0.94),
    0 0 0 2px rgba(203, 255, 51, 0.52),
    0 0 18px rgba(203, 255, 51, 0.4);
}

.graffiti-swatch.is-active::after {
  transform: scale(1) rotate(0deg);
}

.graffiti-chip {
  border: 2px solid rgba(8, 8, 10, 0.94);
  border-radius: 10px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 44%, rgba(98, 63, 170, 0.18)),
    linear-gradient(160deg, rgba(10, 12, 20, 0.92), rgba(22, 12, 34, 0.9));
  color: rgba(244, 249, 255, 0.96);
  font-family: "Bungee", var(--display-font);
  letter-spacing: 0.05em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 0 rgba(8, 8, 10, 0.94),
    0 10px 14px rgba(0, 0, 0, 0.24);
}

.graffiti-chip-icon {
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 6px rgba(203, 255, 51, 0.24))
    saturate(1.08)
    contrast(1.05);
}

.graffiti-chip:hover,
.graffiti-swatch:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.graffiti-chip.is-active {
  border-color: rgba(236, 255, 160, 0.96);
  background:
    linear-gradient(150deg, rgba(226, 255, 115, 0.4), rgba(203, 255, 51, 0.24) 56%, rgba(124, 175, 0, 0.24)),
    linear-gradient(160deg, rgba(12, 16, 12, 0.86), rgba(8, 12, 18, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 5px 0 rgba(8, 8, 10, 0.94),
    0 0 16px rgba(203, 255, 51, 0.42);
}

.graffiti-chip.ghost {
  background:
    linear-gradient(150deg, rgba(255, 132, 194, 0.32), rgba(178, 109, 255, 0.24) 56%, rgba(97, 227, 255, 0.18)),
    linear-gradient(160deg, rgba(10, 12, 20, 0.9), rgba(22, 12, 34, 0.88));
}

.graffiti-range {
  border: 2px solid rgba(203, 255, 51, 0.44);
  border-radius: 10px;
  background:
    linear-gradient(150deg, rgba(203, 255, 51, 0.1), rgba(255, 76, 168, 0.12) 56%, rgba(97, 227, 255, 0.1)),
    linear-gradient(160deg, rgba(8, 10, 18, 0.92), rgba(20, 12, 32, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 4px 0 rgba(8, 8, 10, 0.94);
}

.graffiti-range span {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(235, 241, 255, 0.92);
}

.graffiti-range strong {
  padding: 0.08rem 0.22rem 0.1rem;
  border: 2px solid rgba(8, 8, 10, 0.94);
  border-radius: 999px;
  font-family: var(--pixel-font);
  font-size: 0.4rem;
  line-height: 1;
  letter-spacing: 0.06em;
  background: linear-gradient(150deg, #e6ff73, #cbff33);
  color: #0f1117;
  box-shadow: 0 2px 0 rgba(8, 8, 10, 0.94);
}

.graffiti-range input[type="range"] {
  height: 7px;
  border: 1.5px solid rgba(8, 8, 10, 0.94);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(203, 255, 51, 0.96), rgba(255, 76, 168, 0.9) 52%, rgba(97, 227, 255, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.graffiti-range input[type="range"]::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(8, 8, 10, 0.94);
  background: #ffffff;
  box-shadow:
    0 2px 0 rgba(8, 8, 10, 0.94),
    0 0 0 2px rgba(97, 227, 255, 0.35);
}

.graffiti-range input[type="range"]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(8, 8, 10, 0.94);
  background: #ffffff;
  box-shadow:
    0 2px 0 rgba(8, 8, 10, 0.94),
    0 0 0 2px rgba(97, 227, 255, 0.35);
}

.graffiti-range input[type="range"]::-moz-range-track {
  height: 7px;
  border: 1.5px solid rgba(8, 8, 10, 0.94);
  background: linear-gradient(90deg, rgba(203, 255, 51, 0.96), rgba(255, 76, 168, 0.9) 52%, rgba(97, 227, 255, 0.92));
}

.graffiti-tools.is-collapsed .graffiti-tools-footer {
  border-top-color: rgba(203, 255, 51, 0.28);
}

.graffiti-hint {
  margin: 0;
  padding: 0.26rem 0.3rem;
  border: 1px dashed rgba(180, 240, 0, 0.36);
  border-radius: 10px;
  font-size: 0.6rem;
  line-height: 1.34;
  color: rgba(244, 248, 255, 0.96);
  background: rgba(6, 8, 14, 0.56);
}

.graffiti-shortcuts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.12rem 0.2rem;
  margin-top: 0.2rem;
  font-size: 0.48rem;
  line-height: 1.28;
  color: rgba(240, 245, 255, 0.94);
}

.graffiti-shortcuts kbd {
  display: inline-block;
  min-width: 1.2em;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 5px;
  padding: 0.02rem 0.24rem 0.04rem;
  font-family: var(--pixel-font);
  font-size: 0.4rem;
  line-height: 1.25;
  background: rgba(10, 10, 14, 0.7);
  color: #ffffff;
}

@keyframes graffitiTogglePulse {
  0%,
  100% {
    filter: brightness(1.02) saturate(1.06);
  }
  50% {
    filter: brightness(1.2) saturate(1.32);
  }
}

@keyframes graffitiToggleSweep {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.64;
  }
  50% {
    transform: rotate(180deg) scale(1.06);
    opacity: 0.96;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0.64;
  }
}

@keyframes graffitiToggleBadge {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 3px 0 rgba(8, 8, 10, 0.96),
      0 0 14px rgba(255, 46, 99, 0.6);
  }
  50% {
    transform: translateY(-3px) scale(1.08) rotate(-2deg);
    box-shadow:
      0 4px 0 rgba(8, 8, 10, 0.96),
      0 0 22px rgba(255, 46, 99, 0.9);
  }
}

.more-info {
  position: absolute;
  right: clamp(1rem, 2.2vw, 2.4rem);
  bottom: clamp(1rem, 2.2vw, 2.2rem);
  z-index: 32;
  width: clamp(74px, 8vw, 124px);
  aspect-ratio: 1;
  border: 4px solid rgba(8, 8, 10, 0.98);
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.72), transparent 34%),
    radial-gradient(circle at 82% 88%, rgba(255, 46, 99, 0.38), transparent 36%),
    linear-gradient(145deg, #ddff62, #bdf900 46%, #84cb12 100%);
  box-shadow:
    0 8px 0 var(--ink),
    0 0 36px rgba(180, 240, 0, 0.86),
    0 0 58px rgba(255, 46, 99, 0.44);
  cursor: pointer;
  display: grid;
  place-items: center;
  isolation: isolate;
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
  transform-origin: center;
}

.more-info::before {
  content: "Scroll";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.55rem);
  transform: translateX(-50%);
  padding: 0.24rem 0.6rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(7, 7, 8, 0.94), rgba(20, 20, 24, 0.9));
  color: var(--acid);
  font-size: 0.68rem;
  font-family: var(--body-font);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 3;
  box-shadow:
    0 4px 0 var(--ink),
    0 0 18px rgba(180, 240, 0, 0.34);
  text-shadow: 0 0 8px rgba(180, 240, 0, 0.45);
}

.more-info::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 2px dashed rgba(10, 10, 12, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 0 16px rgba(180, 240, 0, 0.5);
  opacity: 0.92;
  animation:
    moreInfoOrbit 4.2s linear infinite,
    moreInfoRingPulse 1.8s ease-in-out infinite;
}

.more-info img {
  width: 68%;
  height: 68%;
  object-fit: contain;
}

.arrow-fallback {
  display: none;
  width: 58%;
  height: 58%;
  position: relative;
  z-index: 2;
  animation: moreInfoArrowKick 1.35s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.arrow-fallback::before,
.arrow-fallback::after {
  content: "";
  position: absolute;
  background: var(--ink);
}

.arrow-fallback::before {
  width: 14%;
  height: 76%;
  left: 43%;
  top: 10%;
}

.arrow-fallback::after {
  width: 36%;
  height: 36%;
  left: 31%;
  top: 54%;
  border-right: 10px solid var(--ink);
  border-bottom: 10px solid var(--ink);
  transform: rotate(45deg);
  background: transparent;
}

.more-info:hover {
  transform: translateY(-6px) scale(1.04) rotate(-2.2deg);
  filter: saturate(1.08) brightness(1.06);
  box-shadow:
    0 8px 0 var(--ink),
    0 0 34px rgba(255, 46, 99, 0.78),
    0 0 56px rgba(180, 240, 0, 0.7);
}

.more-info:hover::after {
  opacity: 0.96;
  animation-duration: 2.4s;
}

.more-info:active {
  transform: translateY(-2px) scale(0.99) rotate(-1.5deg);
  box-shadow:
    0 4px 0 var(--ink),
    0 0 16px rgba(255, 46, 99, 0.5),
    0 0 24px rgba(180, 240, 0, 0.32);
}

.more-info:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

.more-info.glitching {
  animation: arrowGlitch 240ms steps(2, end) 2;
}

@keyframes arrowGlitch {
  0% {
    translate: 0 0;
    filter: hue-rotate(0deg);
  }
  50% {
    translate: -2px 2px;
    filter: hue-rotate(22deg);
  }
  100% {
    translate: 0 0;
    filter: hue-rotate(0deg);
  }
}

@keyframes moreInfoOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes moreInfoRingPulse {
  0%,
  100% {
    opacity: 0.82;
  }
  50% {
    opacity: 1;
  }
}

@keyframes moreInfoArrowKick {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(6px) scale(1.05);
  }
  65% {
    transform: translateY(2px) scale(1.02);
  }
}

@keyframes toxicTapeDrift {
  0%,
  100% {
    transform: rotate(-5deg) translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: rotate(-4.2deg) translateX(1.8%);
    opacity: 0.68;
  }
}

@keyframes toxicBadgeFloat {
  0%,
  100% {
    transform: rotate(var(--badge-rot)) translateY(0) scale(1);
    box-shadow:
      0 4px 0 rgba(10, 10, 10, 0.94),
      0 12px 22px rgba(0, 0, 0, 0.35);
  }
  50% {
    transform: rotate(var(--badge-rot)) translateY(-3px) scale(1.018);
    box-shadow:
      0 6px 0 rgba(10, 10, 10, 0.94),
      0 16px 30px rgba(0, 0, 0, 0.42),
      0 0 16px rgba(180, 240, 0, 0.26);
  }
}

@keyframes toxicBadgeFlicker {
  0%,
  90%,
  100% {
    opacity: 1;
  }
  93% {
    opacity: 0.74;
  }
  96% {
    opacity: 0.92;
  }
}

@keyframes toxicSplatPulse {
  0%,
  100% {
    opacity: 0.36;
    filter: blur(1px);
  }
  50% {
    opacity: 0.58;
    filter: blur(0.2px);
  }
}

@keyframes toxicMistDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.88;
  }
  50% {
    transform: translate3d(1.6%, -1.1%, 0) scale(1.03);
    opacity: 1;
  }
  100% {
    transform: translate3d(-1.2%, 1.1%, 0) scale(1.02);
    opacity: 0.84;
  }
}

@keyframes toxicPanelPulse {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow:
      0 0 0 3px rgba(8, 8, 9, 0.82),
      0 18px 34px rgba(0, 0, 0, 0.36),
      0 0 22px rgba(180, 240, 0, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }
  50% {
    border-color: rgba(180, 240, 0, 0.9);
    box-shadow:
      0 0 0 3px rgba(8, 8, 9, 0.88),
      0 22px 40px rgba(0, 0, 0, 0.42),
      0 0 28px rgba(255, 46, 99, 0.2),
      0 0 20px rgba(180, 240, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

@keyframes toxicTagScan {
  0%,
  100% {
    filter: saturate(1);
    opacity: 0.94;
  }
  50% {
    filter: saturate(1.18) brightness(1.05);
    opacity: 1;
  }
}

@keyframes toxicBarBeat {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.84;
  }
  50% {
    transform: scaleX(1.08);
    opacity: 1;
  }
}

@keyframes toxicTitleGlitch {
  0%,
  94%,
  100% {
    text-shadow:
      2px 2px 0 rgba(0, 0, 0, 0.9),
      0 0 16px rgba(255, 46, 99, 0.28);
  }
  95% {
    text-shadow:
      3px -1px 0 rgba(180, 240, 0, 0.6),
      -3px 1px 0 rgba(255, 46, 99, 0.56),
      0 0 20px rgba(255, 46, 99, 0.35);
  }
  96% {
    text-shadow:
      -2px 2px 0 rgba(180, 240, 0, 0.48),
      2px -2px 0 rgba(255, 46, 99, 0.48),
      0 0 12px rgba(180, 240, 0, 0.3);
  }
}

@keyframes toxicCardEdge {
  0%,
  100% {
    border-color: rgba(180, 240, 0, 0.3);
    box-shadow: inset 0 0 0 1px rgba(255, 46, 99, 0.26);
  }
  50% {
    border-color: rgba(255, 46, 99, 0.46);
    box-shadow:
      inset 0 0 0 1px rgba(180, 240, 0, 0.3),
      0 0 14px rgba(180, 240, 0, 0.2);
  }
}

@keyframes storyNavShine {
  0% {
    transform: translateX(-150%) skewX(-14deg);
    opacity: 0;
  }
  12% {
    opacity: 0.84;
  }
  38%,
  100% {
    transform: translateX(160%) skewX(-14deg);
    opacity: 0;
  }
}

@keyframes storyNavIdle {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -2px;
  }
}

@keyframes storyControlsGlow {
  0%,
  100% {
    box-shadow:
      0 10px 18px rgba(0, 0, 0, 0.34),
      0 0 16px rgba(180, 240, 0, 0.16);
  }
  50% {
    box-shadow:
      0 14px 24px rgba(0, 0, 0, 0.42),
      0 0 18px rgba(255, 46, 99, 0.24),
      0 0 12px rgba(180, 240, 0, 0.2);
  }
}

@keyframes storyOverlayFloat {
  0%,
  100% {
    transform: translateY(-50%) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(calc(-50% - 4px)) translateX(0.2%) rotate(-0.15deg);
  }
}

@keyframes storyOverlayScanline {
  0% {
    transform: translateY(8px);
    opacity: 0;
  }
  12% {
    opacity: 0.72;
  }
  86% {
    opacity: 0.64;
  }
  100% {
    transform: translateY(calc(100% - 10px));
    opacity: 0;
  }
}

@keyframes storyTitleShimmer {
  0%,
  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 6px rgba(255, 46, 99, 0.2));
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 10px rgba(180, 240, 0, 0.24));
  }
}

@keyframes storyTitleSlugPulse {
  0%,
  100% {
    opacity: 0.32;
    transform: skewX(-14deg) scaleX(0.98);
  }
  50% {
    opacity: 0.54;
    transform: skewX(-10deg) scaleX(1.04);
  }
}

@keyframes storyTitleSpark {
  0%,
  100% {
    opacity: 0.56;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-1px) scale(1.08);
  }
}

@keyframes storyTextPulse {
  0%,
  100% {
    border-left-color: rgba(180, 240, 0, 0.8);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
  }
  50% {
    border-left-color: rgba(255, 46, 99, 0.82);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.52);
  }
}

@keyframes storyCtaPulse {
  0%,
  100% {
    box-shadow:
      0 4px 0 rgba(10, 10, 10, 0.96),
      0 11px 18px rgba(0, 0, 0, 0.28),
      0 0 16px rgba(180, 240, 0, 0.36);
  }
  50% {
    box-shadow:
      0 5px 0 rgba(10, 10, 10, 0.96),
      0 14px 24px rgba(0, 0, 0, 0.34),
      0 0 22px rgba(255, 46, 99, 0.3),
      0 0 14px rgba(180, 240, 0, 0.3);
  }
}

.more-info.is-fallback img {
  display: none;
}

.more-info.is-fallback .arrow-fallback {
  display: block;
}

.origin {
  --story-comic-ink: #0f1117;
  --story-comic-acid: #cbff33;
  --story-comic-pink: #ff4ca8;
  --story-comic-violet: #b26dff;
  --story-comic-cyan: #61e3ff;
  --origin-bg-a: rgba(8, 18, 28, 0.56);
  --origin-bg-b: rgba(8, 10, 16, 0.52);
  --origin-bg-c: rgba(8, 20, 26, 0.44);
  --origin-glow-a: rgba(97, 227, 255, 0.24);
  --origin-glow-b: rgba(126, 196, 255, 0.2);
  --origin-glow-c: rgba(180, 240, 0, 0.16);
  --origin-badge-left-bg: linear-gradient(135deg, #75ecff, #49c9ff);
  --origin-badge-right-bg: linear-gradient(135deg, #9bf94f, #5fcf00);
  --origin-badge-glow: rgba(97, 227, 255, 0.24);
  --origin-splat-a: radial-gradient(circle at 50% 52%, rgba(97, 227, 255, 0.34), rgba(97, 227, 255, 0));
  --origin-splat-b: radial-gradient(circle at 42% 46%, rgba(126, 196, 255, 0.34), rgba(126, 196, 255, 0));
  --origin-splat-c: radial-gradient(circle at 45% 44%, rgba(180, 240, 0, 0.3), rgba(180, 240, 0, 0));
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(132deg, var(--origin-bg-a) 7%, var(--origin-bg-b) 44%, var(--origin-bg-c) 100%),
    radial-gradient(circle at 14% 22%, var(--origin-glow-c), transparent 34%),
    radial-gradient(circle at 78% 16%, var(--origin-glow-b), transparent 44%),
    radial-gradient(circle at 82% 78%, var(--origin-glow-a), transparent 38%),
    url("./images/bg/wall1.webp") center 50% / cover no-repeat;
  transition: background 380ms ease, filter 280ms ease;
}

.origin[data-origin-theme="sea-graffiti"] {
  --origin-bg-a: rgba(8, 18, 28, 0.56);
  --origin-bg-b: rgba(8, 10, 16, 0.52);
  --origin-bg-c: rgba(8, 20, 26, 0.44);
  --origin-glow-a: rgba(97, 227, 255, 0.24);
  --origin-glow-b: rgba(126, 196, 255, 0.2);
  --origin-glow-c: rgba(180, 240, 0, 0.16);
  --origin-badge-left-bg: linear-gradient(135deg, #75ecff, #49c9ff);
  --origin-badge-right-bg: linear-gradient(135deg, #9bf94f, #5fcf00);
  --origin-badge-glow: rgba(97, 227, 255, 0.24);
  --origin-splat-a: radial-gradient(circle at 50% 52%, rgba(97, 227, 255, 0.34), rgba(97, 227, 255, 0));
  --origin-splat-b: radial-gradient(circle at 42% 46%, rgba(126, 196, 255, 0.34), rgba(126, 196, 255, 0));
  --origin-splat-c: radial-gradient(circle at 45% 44%, rgba(180, 240, 0, 0.3), rgba(180, 240, 0, 0));
}

.origin[data-origin-theme="surf-graffiti"] {
  --origin-bg-a: rgba(8, 28, 30, 0.56);
  --origin-bg-b: rgba(8, 18, 20, 0.54);
  --origin-bg-c: rgba(12, 28, 18, 0.48);
  --origin-glow-a: rgba(180, 240, 0, 0.24);
  --origin-glow-b: rgba(97, 227, 255, 0.22);
  --origin-glow-c: rgba(126, 196, 255, 0.18);
  --origin-badge-left-bg: linear-gradient(135deg, #dfff63, #9cf200);
  --origin-badge-right-bg: linear-gradient(135deg, #78ebff, #3cc5ff);
  --origin-badge-glow: rgba(180, 240, 0, 0.24);
  --origin-splat-a: radial-gradient(circle at 50% 52%, rgba(180, 240, 0, 0.34), rgba(180, 240, 0, 0));
  --origin-splat-b: radial-gradient(circle at 42% 46%, rgba(97, 227, 255, 0.34), rgba(97, 227, 255, 0));
  --origin-splat-c: radial-gradient(circle at 45% 44%, rgba(126, 196, 255, 0.3), rgba(126, 196, 255, 0));
}

.origin[data-origin-theme="comic-graffiti"] {
  --origin-bg-a: rgba(6, 6, 8, 0.58);
  --origin-bg-b: rgba(10, 10, 16, 0.52);
  --origin-bg-c: rgba(32, 10, 46, 0.56);
  --origin-glow-a: rgba(255, 76, 168, 0.26);
  --origin-glow-b: rgba(178, 109, 255, 0.44);
  --origin-glow-c: rgba(203, 255, 51, 0.18);
  --origin-badge-left-bg: linear-gradient(135deg, #cbff33, #deff4f);
  --origin-badge-right-bg: linear-gradient(135deg, #ff6ea8, #ff4ca8);
  --origin-badge-glow: rgba(203, 255, 51, 0.25);
  --origin-splat-a: radial-gradient(circle at 50% 52%, rgba(180, 240, 0, 0.34), rgba(180, 240, 0, 0));
  --origin-splat-b: radial-gradient(circle at 42% 46%, rgba(255, 76, 168, 0.34), rgba(255, 76, 168, 0));
  --origin-splat-c: radial-gradient(circle at 45% 44%, rgba(126, 196, 255, 0.28), rgba(126, 196, 255, 0));
}

.origin[data-origin-theme="fire-sea-graffiti"] {
  --origin-bg-a: rgba(26, 10, 12, 0.62);
  --origin-bg-b: rgba(14, 12, 20, 0.56);
  --origin-bg-c: rgba(26, 20, 16, 0.54);
  --origin-glow-a: rgba(255, 118, 64, 0.26);
  --origin-glow-b: rgba(255, 76, 168, 0.24);
  --origin-glow-c: rgba(97, 227, 255, 0.18);
  --origin-badge-left-bg: linear-gradient(135deg, #ff9252, #ff5e37);
  --origin-badge-right-bg: linear-gradient(135deg, #75ecff, #49c9ff);
  --origin-badge-glow: rgba(255, 118, 64, 0.26);
  --origin-splat-a: radial-gradient(circle at 50% 52%, rgba(255, 118, 64, 0.34), rgba(255, 118, 64, 0));
  --origin-splat-b: radial-gradient(circle at 42% 46%, rgba(255, 76, 168, 0.34), rgba(255, 76, 168, 0));
  --origin-splat-c: radial-gradient(circle at 45% 44%, rgba(97, 227, 255, 0.28), rgba(97, 227, 255, 0));
}

.origin[data-origin-theme="sea-graffiti"] {
  --origin-bg-a: rgba(18, 34, 32, 0.62);
  --origin-bg-b: rgba(12, 22, 24, 0.56);
  --origin-bg-c: rgba(22, 42, 36, 0.54);
  --origin-glow-a: rgba(46, 196, 182, 0.28);
  --origin-glow-b: rgba(255, 111, 97, 0.22);
  --origin-glow-c: rgba(92, 111, 104, 0.24);
  --origin-badge-left-bg: linear-gradient(135deg, #2ec4b6, #63d9cf);
  --origin-badge-right-bg: linear-gradient(135deg, #ff6f61, #ff9e94);
  --origin-badge-glow: rgba(46, 196, 182, 0.26);
  --origin-splat-a: radial-gradient(circle at 50% 52%, rgba(46, 196, 182, 0.34), rgba(46, 196, 182, 0));
  --origin-splat-b: radial-gradient(circle at 42% 46%, rgba(255, 111, 97, 0.34), rgba(255, 111, 97, 0));
  --origin-splat-c: radial-gradient(circle at 45% 44%, rgba(92, 111, 104, 0.34), rgba(92, 111, 104, 0));
}

.origin[data-origin-theme="surf-graffiti"] {
  --origin-bg-a: rgba(16, 24, 54, 0.66);
  --origin-bg-b: rgba(10, 24, 46, 0.62);
  --origin-bg-c: rgba(18, 26, 60, 0.58);
  --origin-glow-a: rgba(106, 0, 244, 0.26);
  --origin-glow-b: rgba(27, 31, 59, 0.34);
  --origin-glow-c: rgba(10, 34, 57, 0.3);
  --origin-badge-left-bg: linear-gradient(135deg, #1b1f3b, #0a2239);
  --origin-badge-right-bg: linear-gradient(135deg, #6a00f4, #8d3dff);
  --origin-badge-glow: rgba(106, 0, 244, 0.26);
  --origin-splat-a: radial-gradient(circle at 50% 52%, rgba(106, 0, 244, 0.34), rgba(106, 0, 244, 0));
  --origin-splat-b: radial-gradient(circle at 42% 46%, rgba(27, 31, 59, 0.34), rgba(27, 31, 59, 0));
  --origin-splat-c: radial-gradient(circle at 45% 44%, rgba(10, 34, 57, 0.34), rgba(10, 34, 57, 0));
}

.origin[data-origin-theme="comic-graffiti"] {
  --origin-bg-a: rgba(15, 15, 15, 0.72);
  --origin-bg-b: rgba(20, 20, 20, 0.64);
  --origin-bg-c: rgba(42, 42, 42, 0.58);
  --origin-glow-a: rgba(164, 255, 0, 0.28);
  --origin-glow-b: rgba(142, 142, 142, 0.26);
  --origin-glow-c: rgba(12, 12, 12, 0.32);
  --origin-badge-left-bg: linear-gradient(135deg, #a4ff00, #cbff66);
  --origin-badge-right-bg: linear-gradient(135deg, #8e8e8e, #b9b9b9);
  --origin-badge-glow: rgba(164, 255, 0, 0.28);
  --origin-splat-a: radial-gradient(circle at 50% 52%, rgba(164, 255, 0, 0.34), rgba(164, 255, 0, 0));
  --origin-splat-b: radial-gradient(circle at 42% 46%, rgba(142, 142, 142, 0.34), rgba(142, 142, 142, 0));
  --origin-splat-c: radial-gradient(circle at 45% 44%, rgba(15, 15, 15, 0.34), rgba(15, 15, 15, 0));
}

.origin[data-origin-theme="fire-sea-graffiti"] {
  --origin-bg-a: rgba(17, 17, 17, 0.72);
  --origin-bg-b: rgba(22, 22, 22, 0.66);
  --origin-bg-c: rgba(12, 18, 34, 0.56);
  --origin-glow-a: rgba(255, 0, 60, 0.28);
  --origin-glow-b: rgba(0, 87, 255, 0.28);
  --origin-glow-c: rgba(17, 17, 17, 0.3);
  --origin-badge-left-bg: linear-gradient(135deg, #ff003c, #ff4c74);
  --origin-badge-right-bg: linear-gradient(135deg, #0057ff, #4f8cff);
  --origin-badge-glow: rgba(255, 0, 60, 0.28);
  --origin-splat-a: radial-gradient(circle at 50% 52%, rgba(255, 0, 60, 0.34), rgba(255, 0, 60, 0));
  --origin-splat-b: radial-gradient(circle at 42% 46%, rgba(0, 87, 255, 0.34), rgba(0, 87, 255, 0));
  --origin-splat-c: radial-gradient(circle at 45% 44%, rgba(17, 17, 17, 0.34), rgba(17, 17, 17, 0));
}

.origin[data-origin-theme="hope-graffiti"] {
  --origin-bg-a: rgba(24, 8, 44, 0.7);
  --origin-bg-b: rgba(18, 12, 36, 0.64);
  --origin-bg-c: rgba(10, 32, 40, 0.56);
  --origin-glow-a: rgba(57, 255, 20, 0.3);
  --origin-glow-b: rgba(0, 179, 198, 0.28);
  --origin-glow-c: rgba(106, 13, 173, 0.3);
  --origin-badge-left-bg: linear-gradient(135deg, #39ff14, #86ff63);
  --origin-badge-right-bg: linear-gradient(135deg, #00b3c6, #5de7f5);
  --origin-badge-glow: rgba(57, 255, 20, 0.32);
  --origin-splat-a: radial-gradient(circle at 50% 52%, rgba(57, 255, 20, 0.36), rgba(57, 255, 20, 0));
  --origin-splat-b: radial-gradient(circle at 42% 46%, rgba(0, 179, 198, 0.34), rgba(0, 179, 198, 0));
  --origin-splat-c: radial-gradient(circle at 45% 44%, rgba(106, 13, 173, 0.34), rgba(106, 13, 173, 0));
}

.origin::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 40%, rgba(0, 0, 0, 0.44), transparent 35%),
    radial-gradient(circle at 72% 68%, rgba(0, 0, 0, 0.42), transparent 34%),
    radial-gradient(circle at 16% 20%, var(--origin-glow-c), transparent 30%),
    radial-gradient(circle at 84% 76%, var(--origin-glow-a), transparent 32%),
    repeating-linear-gradient(
      -20deg,
      rgba(255, 255, 255, 0.028) 0,
      rgba(255, 255, 255, 0.028) 2px,
      transparent 2px,
      transparent 12px
    );
  mix-blend-mode: overlay;
  opacity: 0.62;
  animation: toxicMistDrift 12s ease-in-out infinite;
}

.origin::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 76%, var(--origin-glow-a), transparent 34%),
    radial-gradient(circle at 77% 20%, var(--origin-glow-c), transparent 29%),
    repeating-linear-gradient(
      18deg,
      rgba(255, 255, 255, 0.024) 0,
      rgba(255, 255, 255, 0.024) 2px,
      transparent 2px,
      transparent 13px
    ),
    linear-gradient(to bottom, rgba(12, 11, 19, 0.06), rgba(5, 5, 7, 0.5));
  mix-blend-mode: soft-light;
  opacity: 0.52;
}

.origin-toxic-decor {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.origin-toxic-badge {
  --badge-rot: 0deg;
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-height: 32px;
  padding: 0.36rem 0.62rem 0.4rem;
  border: 2px solid var(--story-comic-ink);
  border-radius: 12px;
  font-family: var(--pixel-font);
  font-size: clamp(0.45rem, 0.6vw, 0.6rem);
  letter-spacing: 0.08em;
  color: #0f0f11;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow:
    0 4px 0 var(--story-comic-ink),
    0 12px 22px rgba(0, 0, 0, 0.35),
    0 0 14px var(--origin-badge-glow);
  transform: rotate(var(--badge-rot));
  animation: toxicBadgeFloat 3.9s ease-in-out infinite;
}

.origin-toxic-badge::before {
  content: "!";
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(10, 10, 10, 0.92);
  border-radius: 50%;
  font-size: 0.52rem;
  font-weight: 700;
}

.origin-toxic-badge.badge-left {
  --badge-rot: -3.1deg;
  left: clamp(0.75rem, 1.6vw, 1.4rem);
  top: clamp(0.78rem, 1.8vw, 1.3rem);
  background: var(--origin-badge-left-bg);
  color: #0f0f11;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 8px rgba(0, 0, 0, 0.2);
}

.origin[data-origin-theme="surf-graffiti"] .origin-toxic-badge.badge-left {
  color: #ffffff;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.58),
    0 0 10px rgba(255, 255, 255, 0.22);
}

.origin-toxic-badge.badge-right {
  --badge-rot: 4.3deg;
  right: clamp(0.75rem, 1.8vw, 1.5rem);
  top: clamp(0.82rem, 2vw, 1.5rem);
  background: var(--origin-badge-right-bg);
  animation:
    toxicBadgeFloat 4.4s ease-in-out infinite -0.9s,
    toxicBadgeFlicker 6.2s steps(2, end) infinite;
}

.origin-splat {
  --splat-rot: 0deg;
  position: absolute;
  width: 170px;
  aspect-ratio: 1;
  border-radius: 54% 46% 62% 38% / 44% 62% 38% 56%;
  pointer-events: none;
  opacity: 0.46;
  filter: blur(1px);
  transform: rotate(var(--splat-rot));
  animation: toxicSplatPulse 7s ease-in-out infinite;
}

.origin-splat.splat-a {
  --splat-rot: -18deg;
  left: -32px;
  top: 24%;
  background: var(--origin-splat-a);
  animation-duration: 6.4s;
}

.origin-splat.splat-b {
  --splat-rot: 14deg;
  right: -48px;
  top: 31%;
  background: var(--origin-splat-b);
  animation-duration: 8.2s;
  animation-delay: -1.8s;
}

.origin-splat.splat-c {
  --splat-rot: 32deg;
  right: 24%;
  bottom: -86px;
  background: var(--origin-splat-c);
  animation-duration: 9s;
  animation-delay: -3.1s;
}

.story-carousel {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.story-stage {
  --story-bg: url("./images/story/story-1-bg.webp");
  --timeline-progress: 0%;
  --story-theme-bg-a: rgba(6, 18, 28, 0.62);
  --story-theme-bg-b: rgba(6, 10, 18, 0.74);
  --story-theme-filter: saturate(1.03) contrast(1.04) brightness(0.98);
  --story-mist-1: rgba(97, 227, 255, 0.28);
  --story-mist-2: rgba(126, 196, 255, 0.24);
  --story-mist-3: rgba(180, 240, 0, 0.18);
  --story-mist-4: rgba(178, 109, 255, 0.18);
  --story-mist-5: rgba(255, 255, 255, 0.09);
  --story-mist-bottom-a: rgba(5, 18, 24, 0.66);
  --story-mist-bottom-b: rgba(6, 14, 20, 0.24);
  --story-mist-bottom-c: rgba(6, 10, 18, 0);
  --story-accent-border: rgba(97, 227, 255, 0.92);
  --story-accent-dash: rgba(97, 227, 255, 0.5);
  --story-glow-primary: rgba(97, 227, 255, 0.24);
  --story-glow-secondary: rgba(126, 196, 255, 0.18);
  --story-overlay-a: rgba(97, 227, 255, 0.34);
  --story-overlay-b: rgba(180, 240, 0, 0.2);
  --story-overlay-c: rgba(126, 196, 255, 0.3);
  --story-overlay-d: rgba(178, 109, 255, 0.24);
  --story-card-spot-a: rgba(97, 227, 255, 0.22);
  --story-card-spot-b: rgba(180, 240, 0, 0.16);
  --story-card-spot-c: rgba(126, 196, 255, 0.2);
  --story-timeline-track-a: rgba(10, 25, 34, 0.9);
  --story-timeline-track-b: rgba(7, 17, 28, 0.86);
  --story-timeline-track-glow: rgba(97, 227, 255, 0.18);
  --story-timeline-progress-a: #7be8ff;
  --story-timeline-progress-b: #49c9ff;
  --story-timeline-progress-c: #cbff33;
  --story-timeline-progress-glow-a: rgba(97, 227, 255, 0.4);
  --story-timeline-progress-glow-b: rgba(180, 240, 0, 0.28);
  --story-timeline-item-border: rgba(97, 227, 255, 0.58);
  --story-timeline-item-bg-a: rgba(8, 22, 34, 0.95);
  --story-timeline-item-bg-b: rgba(10, 14, 22, 0.96);
  --story-timeline-item-bg-c: rgba(12, 28, 36, 0.92);
  --story-timeline-item-spot: rgba(97, 227, 255, 0.2);
  --story-timeline-item-text: rgba(232, 238, 252, 0.92);
  --story-timeline-item-glow: rgba(97, 227, 255, 0.14);
  --story-timeline-dot-border: rgba(12, 13, 19, 0.94);
  --story-timeline-dot-a: #75ecff;
  --story-timeline-dot-b: #49c9ff;
  --story-timeline-dot-glow: rgba(97, 227, 255, 0.42);
  --story-timeline-hover-text: #f6fbff;
  --story-timeline-active-text: #0f1117;
  --story-timeline-active-border: rgba(15, 17, 23, 0.96);
  --story-timeline-active-bg-a: #9bf5ff;
  --story-timeline-active-bg-b: #61e3ff;
  --story-timeline-active-bg-c: #cbff33;
  --story-timeline-active-spot: rgba(180, 240, 0, 0.24);
  --story-timeline-active-glow: rgba(97, 227, 255, 0.32);
  --story-timeline-active-dot-a: #cbff33;
  --story-timeline-active-dot-b: #61e3ff;
  --story-timeline-active-dot-glow: rgba(97, 227, 255, 0.36);
  --story-kicker-a: #8ef2ff;
  --story-kicker-b: #61e3ff;
  --story-kicker-c: #43c6e4;
  --story-kicker-text: #08141d;
  --story-kicker-border: rgba(15, 17, 23, 0.96);
  --story-title-color: #8ef2ff;
  --story-title-stroke: rgba(11, 11, 13, 0.82);
  --story-title-shadow-a: rgba(11, 11, 13, 0.88);
  --story-title-shadow-b: rgba(97, 227, 255, 0.2);
  --story-body-border: rgba(97, 227, 255, 0.82);
  --story-body-bg-a: rgba(8, 20, 30, 0.96);
  --story-body-bg-b: rgba(10, 14, 22, 0.97);
  --story-body-bg-c: rgba(12, 26, 34, 0.95);
  --story-body-inset: rgba(126, 196, 255, 0.2);
  --story-body-glow: rgba(97, 227, 255, 0.16);
  --story-cta-a: #9bf5ff;
  --story-cta-b: #61e3ff;
  --story-cta-c: #43c6e4;
  --story-cta-text: #0a141d;
  --story-cta-border: rgba(15, 17, 23, 0.96);
  --story-cta-glow: rgba(97, 227, 255, 0.34);
  --story-controls-border: rgba(97, 227, 255, 0.44);
  --story-controls-bg-a: rgba(12, 24, 36, 0.82);
  --story-controls-bg-b: rgba(8, 10, 14, 0.68);
  --story-controls-glow: rgba(97, 227, 255, 0.22);
  --story-nav-prev-a: #9bf5ff;
  --story-nav-prev-b: #61e3ff;
  --story-nav-prev-c: #43c6e4;
  --story-nav-next-a: #d2ff5f;
  --story-nav-next-b: #9cf200;
  --story-nav-next-c: #63c800;
  --story-nav-prev-glow: rgba(97, 227, 255, 0.4);
  --story-nav-next-glow: rgba(180, 240, 0, 0.42);
  --story-nav-prev-fg: #10141a;
  --story-nav-next-fg: #10141a;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(0.9rem, 2.2vw, 1.8rem);
  background:
    linear-gradient(150deg, rgba(15, 8, 24, 0.92), rgba(9, 10, 15, 0.94)),
    repeating-linear-gradient(
      -22deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 2px,
      transparent 2px,
      transparent 12px
    );
  border: 3px solid var(--story-accent-border);
  border-radius: clamp(18px, 2.4vw, 28px);
  box-shadow:
    0 0 0 2px rgba(12, 12, 18, 0.94) inset,
    0.2rem 0.2rem 0 rgba(15, 17, 23, 0.94),
    0.56rem 0.62rem 0 rgba(0, 0, 0, 0.44),
    0 0 26px var(--story-glow-primary),
    0 0 34px var(--story-glow-secondary);
  isolation: isolate;
}

.story-stage[data-story-theme="sea-graffiti"] {
  --story-theme-bg-a: rgba(6, 18, 28, 0.62);
  --story-theme-bg-b: rgba(6, 10, 18, 0.74);
  --story-theme-filter: saturate(1.03) contrast(1.04) brightness(0.98);
  --story-mist-1: rgba(97, 227, 255, 0.28);
  --story-mist-2: rgba(126, 196, 255, 0.24);
  --story-mist-3: rgba(180, 240, 0, 0.18);
  --story-mist-4: rgba(178, 109, 255, 0.18);
  --story-mist-5: rgba(255, 255, 255, 0.09);
  --story-mist-bottom-a: rgba(5, 18, 24, 0.66);
  --story-mist-bottom-b: rgba(6, 14, 20, 0.24);
  --story-mist-bottom-c: rgba(6, 10, 18, 0);
  --story-accent-border: rgba(97, 227, 255, 0.92);
  --story-accent-dash: rgba(97, 227, 255, 0.5);
  --story-glow-primary: rgba(97, 227, 255, 0.24);
  --story-glow-secondary: rgba(126, 196, 255, 0.18);
  --story-overlay-a: rgba(97, 227, 255, 0.34);
  --story-overlay-b: rgba(180, 240, 0, 0.2);
  --story-overlay-c: rgba(126, 196, 255, 0.3);
  --story-overlay-d: rgba(178, 109, 255, 0.24);
  --story-card-spot-a: rgba(97, 227, 255, 0.22);
  --story-card-spot-b: rgba(180, 240, 0, 0.16);
  --story-card-spot-c: rgba(126, 196, 255, 0.2);
}

.story-stage[data-story-theme="surf-graffiti"] {
  --story-theme-bg-a: rgba(8, 28, 36, 0.62);
  --story-theme-bg-b: rgba(8, 16, 24, 0.74);
  --story-theme-filter: saturate(1.05) contrast(1.04) brightness(1);
  --story-mist-1: rgba(180, 240, 0, 0.32);
  --story-mist-2: rgba(97, 227, 255, 0.26);
  --story-mist-3: rgba(126, 196, 255, 0.3);
  --story-mist-4: rgba(255, 76, 168, 0.18);
  --story-mist-5: rgba(255, 255, 255, 0.1);
  --story-mist-bottom-a: rgba(6, 24, 28, 0.68);
  --story-mist-bottom-b: rgba(8, 16, 22, 0.28);
  --story-mist-bottom-c: rgba(8, 12, 16, 0);
  --story-accent-border: rgba(180, 240, 0, 0.94);
  --story-accent-dash: rgba(180, 240, 0, 0.52);
  --story-glow-primary: rgba(180, 240, 0, 0.28);
  --story-glow-secondary: rgba(97, 227, 255, 0.2);
  --story-overlay-a: rgba(180, 240, 0, 0.36);
  --story-overlay-b: rgba(97, 227, 255, 0.24);
  --story-overlay-c: rgba(126, 196, 255, 0.28);
  --story-overlay-d: rgba(255, 76, 168, 0.2);
  --story-card-spot-a: rgba(180, 240, 0, 0.24);
  --story-card-spot-b: rgba(97, 227, 255, 0.2);
  --story-card-spot-c: rgba(126, 196, 255, 0.24);
  --story-timeline-track-a: rgba(12, 34, 28, 0.9);
  --story-timeline-track-b: rgba(8, 22, 20, 0.86);
  --story-timeline-track-glow: rgba(180, 240, 0, 0.2);
  --story-timeline-progress-a: #dfff63;
  --story-timeline-progress-b: #9cf200;
  --story-timeline-progress-c: #61e3ff;
  --story-timeline-progress-glow-a: rgba(180, 240, 0, 0.42);
  --story-timeline-progress-glow-b: rgba(97, 227, 255, 0.3);
  --story-timeline-item-border: rgba(180, 240, 0, 0.58);
  --story-timeline-item-bg-a: rgba(16, 32, 20, 0.95);
  --story-timeline-item-bg-b: rgba(10, 18, 14, 0.96);
  --story-timeline-item-bg-c: rgba(10, 26, 30, 0.92);
  --story-timeline-item-spot: rgba(180, 240, 0, 0.2);
  --story-timeline-item-glow: rgba(180, 240, 0, 0.14);
  --story-timeline-dot-a: #dfff63;
  --story-timeline-dot-b: #9cf200;
  --story-timeline-dot-glow: rgba(180, 240, 0, 0.42);
  --story-timeline-active-bg-a: #dfff63;
  --story-timeline-active-bg-b: #9cf200;
  --story-timeline-active-bg-c: #61e3ff;
  --story-timeline-active-spot: rgba(97, 227, 255, 0.22);
  --story-timeline-active-glow: rgba(180, 240, 0, 0.34);
  --story-timeline-active-dot-a: #61e3ff;
  --story-timeline-active-dot-b: #dfff63;
  --story-timeline-active-dot-glow: rgba(97, 227, 255, 0.34);
  --story-kicker-a: #e6ff73;
  --story-kicker-b: #cbff33;
  --story-kicker-c: #9cf200;
  --story-kicker-text: #111a10;
  --story-title-color: #dfff63;
  --story-title-shadow-b: rgba(180, 240, 0, 0.22);
  --story-body-border: rgba(180, 240, 0, 0.82);
  --story-body-bg-a: rgba(16, 32, 20, 0.96);
  --story-body-bg-b: rgba(10, 18, 14, 0.97);
  --story-body-bg-c: rgba(10, 26, 30, 0.95);
  --story-body-inset: rgba(97, 227, 255, 0.2);
  --story-body-glow: rgba(180, 240, 0, 0.16);
  --story-cta-a: #dfff63;
  --story-cta-b: #cbff33;
  --story-cta-c: #9cf200;
  --story-cta-text: #111a10;
  --story-cta-glow: rgba(180, 240, 0, 0.34);
  --story-controls-border: rgba(180, 240, 0, 0.44);
  --story-controls-bg-a: rgba(16, 32, 20, 0.82);
  --story-controls-bg-b: rgba(8, 12, 14, 0.68);
  --story-controls-glow: rgba(180, 240, 0, 0.22);
  --story-nav-prev-a: #dfff63;
  --story-nav-prev-b: #cbff33;
  --story-nav-prev-c: #9cf200;
  --story-nav-next-a: #78ebff;
  --story-nav-next-b: #49c9ff;
  --story-nav-next-c: #2e9fc9;
  --story-nav-prev-glow: rgba(180, 240, 0, 0.4);
  --story-nav-next-glow: rgba(97, 227, 255, 0.42);
  --story-nav-next-fg: #09131b;
}

.story-stage[data-story-theme="comic-graffiti"] {
  --story-theme-bg-a: rgba(8, 6, 14, 0.62);
  --story-theme-bg-b: rgba(8, 8, 12, 0.74);
  --story-theme-filter: saturate(1.04) contrast(1.05) brightness(0.98);
  --story-mist-1: rgba(203, 255, 51, 0.28);
  --story-mist-2: rgba(255, 76, 168, 0.24);
  --story-mist-3: rgba(255, 76, 168, 0.32);
  --story-mist-4: rgba(178, 109, 255, 0.28);
  --story-mist-5: rgba(255, 255, 255, 0.09);
  --story-mist-bottom-a: rgba(8, 7, 12, 0.66);
  --story-mist-bottom-b: rgba(8, 7, 12, 0.22);
  --story-mist-bottom-c: rgba(8, 7, 12, 0);
  --story-accent-border: rgba(203, 255, 51, 0.94);
  --story-accent-dash: rgba(203, 255, 51, 0.5);
  --story-glow-primary: rgba(203, 255, 51, 0.26);
  --story-glow-secondary: rgba(178, 109, 255, 0.18);
  --story-overlay-a: rgba(203, 255, 51, 0.34);
  --story-overlay-b: rgba(255, 76, 168, 0.22);
  --story-overlay-c: rgba(178, 109, 255, 0.3);
  --story-overlay-d: rgba(97, 227, 255, 0.2);
  --story-card-spot-a: rgba(203, 255, 51, 0.22);
  --story-card-spot-b: rgba(255, 76, 168, 0.18);
  --story-card-spot-c: rgba(178, 109, 255, 0.24);
  --story-timeline-track-a: rgba(14, 12, 24, 0.9);
  --story-timeline-track-b: rgba(9, 10, 14, 0.86);
  --story-timeline-track-glow: rgba(178, 109, 255, 0.18);
  --story-timeline-progress-a: #cbff33;
  --story-timeline-progress-b: #b26dff;
  --story-timeline-progress-c: #ff4ca8;
  --story-timeline-progress-glow-a: rgba(203, 255, 51, 0.42);
  --story-timeline-progress-glow-b: rgba(255, 76, 168, 0.34);
  --story-timeline-item-border: rgba(203, 255, 51, 0.58);
  --story-timeline-item-bg-a: rgba(24, 12, 34, 0.94);
  --story-timeline-item-bg-b: rgba(10, 12, 18, 0.96);
  --story-timeline-item-bg-c: rgba(34, 14, 52, 0.92);
  --story-timeline-item-spot: rgba(203, 255, 51, 0.2);
  --story-timeline-item-glow: rgba(203, 255, 51, 0.12);
  --story-timeline-dot-a: #cbff33;
  --story-timeline-dot-b: #b26dff;
  --story-timeline-dot-glow: rgba(178, 109, 255, 0.42);
  --story-timeline-active-bg-a: #e6ff73;
  --story-timeline-active-bg-b: #cbff33;
  --story-timeline-active-bg-c: #a9df09;
  --story-timeline-active-spot: rgba(178, 109, 255, 0.24);
  --story-timeline-active-glow: rgba(203, 255, 51, 0.34);
  --story-timeline-active-dot-a: #ff4ca8;
  --story-timeline-active-dot-b: #b26dff;
  --story-timeline-active-dot-glow: rgba(255, 76, 168, 0.38);
  --story-kicker-a: #e6ff73;
  --story-kicker-b: #cbff33;
  --story-kicker-c: #a9df09;
  --story-kicker-text: #12141a;
  --story-title-color: #e6ff72;
  --story-title-shadow-b: rgba(255, 76, 168, 0.2);
  --story-body-border: rgba(203, 255, 51, 0.82);
  --story-body-bg-a: rgba(18, 12, 30, 0.96);
  --story-body-bg-b: rgba(10, 12, 18, 0.97);
  --story-body-bg-c: rgba(28, 12, 42, 0.95);
  --story-body-inset: rgba(255, 76, 168, 0.2);
  --story-body-glow: rgba(203, 255, 51, 0.16);
  --story-cta-a: #e6ff73;
  --story-cta-b: #cbff33;
  --story-cta-c: #a9df09;
  --story-cta-text: #111217;
  --story-cta-glow: rgba(203, 255, 51, 0.36);
  --story-controls-border: rgba(203, 255, 51, 0.44);
  --story-controls-bg-a: rgba(22, 12, 34, 0.82);
  --story-controls-bg-b: rgba(8, 10, 14, 0.68);
  --story-controls-glow: rgba(178, 109, 255, 0.22);
  --story-nav-prev-a: #e6ff73;
  --story-nav-prev-b: #cbff33;
  --story-nav-prev-c: #a9df09;
  --story-nav-next-a: #ff6ea8;
  --story-nav-next-b: #ff4ca8;
  --story-nav-next-c: #b26dff;
  --story-nav-prev-glow: rgba(203, 255, 51, 0.4);
  --story-nav-next-glow: rgba(255, 76, 168, 0.42);
  --story-nav-next-fg: #ffffff;
}

.story-stage[data-story-theme="fire-sea-graffiti"] {
  --story-theme-bg-a: rgba(28, 10, 12, 0.66);
  --story-theme-bg-b: rgba(10, 12, 20, 0.76);
  --story-theme-filter: saturate(1.08) contrast(1.05) brightness(0.98);
  --story-mist-1: rgba(255, 120, 66, 0.34);
  --story-mist-2: rgba(255, 76, 168, 0.26);
  --story-mist-3: rgba(97, 227, 255, 0.24);
  --story-mist-4: rgba(180, 240, 0, 0.16);
  --story-mist-5: rgba(255, 255, 255, 0.09);
  --story-mist-bottom-a: rgba(22, 8, 10, 0.72);
  --story-mist-bottom-b: rgba(10, 16, 24, 0.26);
  --story-mist-bottom-c: rgba(6, 10, 16, 0);
  --story-accent-border: rgba(255, 132, 74, 0.94);
  --story-accent-dash: rgba(255, 132, 74, 0.52);
  --story-glow-primary: rgba(255, 118, 64, 0.28);
  --story-glow-secondary: rgba(97, 227, 255, 0.22);
  --story-overlay-a: rgba(255, 118, 64, 0.36);
  --story-overlay-b: rgba(97, 227, 255, 0.24);
  --story-overlay-c: rgba(255, 76, 168, 0.28);
  --story-overlay-d: rgba(180, 240, 0, 0.2);
  --story-card-spot-a: rgba(255, 118, 64, 0.24);
  --story-card-spot-b: rgba(97, 227, 255, 0.2);
  --story-card-spot-c: rgba(255, 76, 168, 0.2);
  --story-timeline-track-a: rgba(32, 12, 14, 0.9);
  --story-timeline-track-b: rgba(12, 14, 24, 0.86);
  --story-timeline-track-glow: rgba(255, 118, 64, 0.2);
  --story-timeline-progress-a: #ff9252;
  --story-timeline-progress-b: #ff5e37;
  --story-timeline-progress-c: #61e3ff;
  --story-timeline-progress-glow-a: rgba(255, 118, 64, 0.42);
  --story-timeline-progress-glow-b: rgba(97, 227, 255, 0.3);
  --story-timeline-item-border: rgba(255, 132, 74, 0.58);
  --story-timeline-item-bg-a: rgba(28, 12, 14, 0.95);
  --story-timeline-item-bg-b: rgba(12, 14, 24, 0.96);
  --story-timeline-item-bg-c: rgba(20, 24, 30, 0.92);
  --story-timeline-item-spot: rgba(255, 118, 64, 0.2);
  --story-timeline-item-glow: rgba(255, 118, 64, 0.14);
  --story-timeline-dot-a: #ff9252;
  --story-timeline-dot-b: #61e3ff;
  --story-timeline-dot-glow: rgba(255, 118, 64, 0.36);
  --story-timeline-active-bg-a: #ffb469;
  --story-timeline-active-bg-b: #ff7c4e;
  --story-timeline-active-bg-c: #61e3ff;
  --story-timeline-active-spot: rgba(97, 227, 255, 0.22);
  --story-timeline-active-glow: rgba(255, 118, 64, 0.34);
  --story-timeline-active-dot-a: #ff4ca8;
  --story-timeline-active-dot-b: #ff9252;
  --story-timeline-active-dot-glow: rgba(255, 76, 168, 0.34);
  --story-kicker-a: #ffb469;
  --story-kicker-b: #ff9252;
  --story-kicker-c: #ff5e37;
  --story-kicker-text: #1b120a;
  --story-title-color: #ffb469;
  --story-title-shadow-b: rgba(255, 118, 64, 0.24);
  --story-body-border: rgba(255, 132, 74, 0.82);
  --story-body-bg-a: rgba(28, 12, 14, 0.96);
  --story-body-bg-b: rgba(12, 14, 24, 0.97);
  --story-body-bg-c: rgba(20, 24, 30, 0.95);
  --story-body-inset: rgba(97, 227, 255, 0.2);
  --story-body-glow: rgba(255, 118, 64, 0.16);
  --story-cta-a: #ffb469;
  --story-cta-b: #ff9252;
  --story-cta-c: #ff5e37;
  --story-cta-text: #1b120a;
  --story-cta-glow: rgba(255, 118, 64, 0.34);
  --story-controls-border: rgba(255, 132, 74, 0.44);
  --story-controls-bg-a: rgba(26, 12, 14, 0.82);
  --story-controls-bg-b: rgba(8, 10, 14, 0.68);
  --story-controls-glow: rgba(255, 118, 64, 0.22);
  --story-nav-prev-a: #ffb469;
  --story-nav-prev-b: #ff9252;
  --story-nav-prev-c: #ff5e37;
  --story-nav-next-a: #78ebff;
  --story-nav-next-b: #49c9ff;
  --story-nav-next-c: #2e9fc9;
  --story-nav-prev-glow: rgba(255, 118, 64, 0.4);
  --story-nav-next-glow: rgba(97, 227, 255, 0.42);
  --story-nav-next-fg: #09131b;
}

.story-stage[data-story-theme="sea-graffiti"] {
  --story-theme-bg-a: rgba(14, 30, 30, 0.66);
  --story-theme-bg-b: rgba(16, 26, 28, 0.74);
  --story-theme-filter: saturate(1.02) contrast(1.03) brightness(0.98);
  --story-mist-1: rgba(46, 196, 182, 0.32);
  --story-mist-2: rgba(255, 111, 97, 0.24);
  --story-mist-3: rgba(92, 111, 104, 0.28);
  --story-mist-4: rgba(224, 251, 252, 0.2);
  --story-mist-5: rgba(255, 255, 255, 0.08);
  --story-mist-bottom-a: rgba(10, 26, 26, 0.72);
  --story-mist-bottom-b: rgba(14, 24, 24, 0.24);
  --story-mist-bottom-c: rgba(8, 14, 14, 0);
  --story-accent-border: rgba(46, 196, 182, 0.92);
  --story-accent-dash: rgba(255, 111, 97, 0.52);
  --story-glow-primary: rgba(46, 196, 182, 0.24);
  --story-glow-secondary: rgba(255, 111, 97, 0.16);
  --story-overlay-a: rgba(46, 196, 182, 0.34);
  --story-overlay-b: rgba(255, 111, 97, 0.2);
  --story-overlay-c: rgba(92, 111, 104, 0.26);
  --story-overlay-d: rgba(224, 251, 252, 0.2);
  --story-timeline-progress-a: #2ec4b6;
  --story-timeline-progress-b: #ff6f61;
  --story-timeline-progress-c: #5c6f68;
  --story-timeline-item-border: rgba(46, 196, 182, 0.58);
  --story-timeline-dot-a: #2ec4b6;
  --story-timeline-dot-b: #ff6f61;
  --story-timeline-dot-glow: rgba(46, 196, 182, 0.4);
  --story-timeline-active-bg-a: #66d9cf;
  --story-timeline-active-bg-b: #ff8b81;
  --story-timeline-active-bg-c: #91a39d;
  --story-timeline-active-dot-a: #ff6f61;
  --story-timeline-active-dot-b: #2ec4b6;
  --story-kicker-a: #2ec4b6;
  --story-kicker-b: #58d4ca;
  --story-kicker-c: #ff6f61;
  --story-kicker-text: #0f1a1a;
  --story-title-color: #72e2d8;
  --story-title-shadow-b: rgba(46, 196, 182, 0.24);
  --story-body-border: rgba(46, 196, 182, 0.82);
  --story-body-bg-a: rgba(10, 26, 28, 0.96);
  --story-body-bg-b: rgba(14, 22, 22, 0.97);
  --story-body-bg-c: rgba(20, 32, 30, 0.95);
  --story-body-inset: rgba(255, 111, 97, 0.18);
  --story-cta-a: #2ec4b6;
  --story-cta-b: #69ddd2;
  --story-cta-c: #ff6f61;
  --story-cta-text: #0d1a19;
  --story-controls-border: rgba(46, 196, 182, 0.44);
  --story-nav-prev-a: #2ec4b6;
  --story-nav-prev-b: #58d4ca;
  --story-nav-prev-c: #8ce8df;
  --story-nav-next-a: #ff6f61;
  --story-nav-next-b: #ff8b81;
  --story-nav-next-c: #ffb3ad;
  --story-nav-next-fg: #1d1110;
}

.story-stage[data-story-theme="surf-graffiti"] {
  --story-theme-bg-a: rgba(18, 22, 48, 0.68);
  --story-theme-bg-b: rgba(10, 28, 52, 0.76);
  --story-theme-filter: saturate(1.05) contrast(1.05) brightness(0.96);
  --story-mist-1: rgba(106, 0, 244, 0.3);
  --story-mist-2: rgba(27, 31, 59, 0.32);
  --story-mist-3: rgba(10, 34, 57, 0.34);
  --story-mist-4: rgba(151, 95, 255, 0.24);
  --story-mist-5: rgba(232, 240, 255, 0.1);
  --story-mist-bottom-a: rgba(12, 18, 42, 0.76);
  --story-mist-bottom-b: rgba(8, 16, 34, 0.3);
  --story-mist-bottom-c: rgba(6, 10, 20, 0);
  --story-accent-border: rgba(106, 0, 244, 0.9);
  --story-accent-dash: rgba(143, 83, 255, 0.52);
  --story-glow-primary: rgba(106, 0, 244, 0.26);
  --story-glow-secondary: rgba(10, 34, 57, 0.24);
  --story-overlay-a: rgba(106, 0, 244, 0.34);
  --story-overlay-b: rgba(27, 31, 59, 0.28);
  --story-overlay-c: rgba(10, 34, 57, 0.28);
  --story-overlay-d: rgba(143, 83, 255, 0.22);
  --story-timeline-track-a: rgba(12, 16, 34, 0.92);
  --story-timeline-track-b: rgba(8, 18, 34, 0.88);
  --story-timeline-track-glow: rgba(106, 0, 244, 0.24);
  --story-timeline-progress-a: #6a00f4;
  --story-timeline-progress-b: #3558ad;
  --story-timeline-progress-c: #0a2239;
  --story-timeline-progress-glow-a: rgba(106, 0, 244, 0.44);
  --story-timeline-progress-glow-b: rgba(10, 34, 57, 0.32);
  --story-timeline-item-border: rgba(106, 0, 244, 0.58);
  --story-timeline-item-bg-a: rgba(17, 22, 50, 0.95);
  --story-timeline-item-bg-b: rgba(10, 24, 44, 0.96);
  --story-timeline-item-bg-c: rgba(18, 24, 62, 0.92);
  --story-timeline-item-spot: rgba(106, 0, 244, 0.2);
  --story-timeline-item-text: rgba(236, 242, 255, 0.92);
  --story-timeline-dot-a: #6a00f4;
  --story-timeline-dot-b: #3357b2;
  --story-timeline-dot-glow: rgba(106, 0, 244, 0.42);
  --story-timeline-hover-text: #f6f8ff;
  --story-timeline-active-text: #e9efff;
  --story-timeline-active-border: rgba(236, 242, 255, 0.82);
  --story-timeline-active-bg-a: #1b1f3b;
  --story-timeline-active-bg-b: #0a2239;
  --story-timeline-active-bg-c: #6a00f4;
  --story-timeline-active-dot-a: #b58bff;
  --story-timeline-active-dot-b: #6a00f4;
  --story-kicker-a: #6a00f4;
  --story-kicker-b: #8f53ff;
  --story-kicker-c: #1b1f3b;
  --story-kicker-text: #ecf1ff;
  --story-kicker-border: rgba(236, 242, 255, 0.66);
  --story-title-color: #c0a0ff;
  --story-title-shadow-b: rgba(106, 0, 244, 0.3);
  --story-body-border: rgba(106, 0, 244, 0.76);
  --story-body-bg-a: rgba(16, 20, 44, 0.96);
  --story-body-bg-b: rgba(10, 22, 40, 0.97);
  --story-body-bg-c: rgba(18, 24, 56, 0.95);
  --story-body-inset: rgba(143, 83, 255, 0.24);
  --story-cta-a: #6a00f4;
  --story-cta-b: #8f53ff;
  --story-cta-c: #1b1f3b;
  --story-cta-text: #eef3ff;
  --story-cta-border: rgba(232, 240, 255, 0.74);
  --story-controls-border: rgba(106, 0, 244, 0.44);
  --story-controls-bg-a: rgba(14, 18, 44, 0.84);
  --story-controls-bg-b: rgba(8, 12, 28, 0.7);
  --story-nav-prev-a: #6a00f4;
  --story-nav-prev-b: #8f53ff;
  --story-nav-prev-c: #b58bff;
  --story-nav-next-a: #1b1f3b;
  --story-nav-next-b: #213a5e;
  --story-nav-next-c: #0a2239;
  --story-nav-prev-fg: #f2f5ff;
  --story-nav-next-fg: #edf2ff;
}

.story-stage[data-story-theme="comic-graffiti"] {
  --story-theme-bg-a: rgba(15, 15, 15, 0.72);
  --story-theme-bg-b: rgba(28, 28, 28, 0.78);
  --story-theme-filter: saturate(1.1) contrast(1.08) brightness(0.96);
  --story-mist-1: rgba(164, 255, 0, 0.32);
  --story-mist-2: rgba(142, 142, 142, 0.24);
  --story-mist-3: rgba(15, 15, 15, 0.38);
  --story-mist-4: rgba(214, 255, 132, 0.2);
  --story-mist-5: rgba(255, 255, 255, 0.1);
  --story-mist-bottom-a: rgba(10, 10, 10, 0.78);
  --story-mist-bottom-b: rgba(16, 16, 16, 0.36);
  --story-mist-bottom-c: rgba(8, 8, 8, 0);
  --story-accent-border: rgba(164, 255, 0, 0.92);
  --story-accent-dash: rgba(142, 142, 142, 0.56);
  --story-glow-primary: rgba(164, 255, 0, 0.3);
  --story-glow-secondary: rgba(142, 142, 142, 0.22);
  --story-overlay-a: rgba(164, 255, 0, 0.36);
  --story-overlay-b: rgba(142, 142, 142, 0.24);
  --story-overlay-c: rgba(164, 255, 0, 0.2);
  --story-overlay-d: rgba(255, 255, 255, 0.12);
  --story-timeline-progress-a: #a4ff00;
  --story-timeline-progress-b: #d5ff76;
  --story-timeline-progress-c: #8e8e8e;
  --story-timeline-item-border: rgba(164, 255, 0, 0.62);
  --story-timeline-item-bg-a: rgba(18, 18, 18, 0.95);
  --story-timeline-item-bg-b: rgba(12, 12, 12, 0.96);
  --story-timeline-item-bg-c: rgba(32, 32, 32, 0.92);
  --story-timeline-item-text: rgba(242, 248, 236, 0.92);
  --story-timeline-dot-a: #a4ff00;
  --story-timeline-dot-b: #8e8e8e;
  --story-timeline-dot-glow: rgba(164, 255, 0, 0.44);
  --story-timeline-active-text: #0f0f0f;
  --story-timeline-active-bg-a: #c7ff59;
  --story-timeline-active-bg-b: #a4ff00;
  --story-timeline-active-bg-c: #8e8e8e;
  --story-timeline-active-dot-a: #8e8e8e;
  --story-timeline-active-dot-b: #a4ff00;
  --story-kicker-a: #a4ff00;
  --story-kicker-b: #c7ff59;
  --story-kicker-c: #8e8e8e;
  --story-kicker-text: #0f0f0f;
  --story-title-color: #d9ff8d;
  --story-title-shadow-b: rgba(164, 255, 0, 0.26);
  --story-body-border: rgba(164, 255, 0, 0.82);
  --story-body-bg-a: rgba(18, 18, 18, 0.96);
  --story-body-bg-b: rgba(12, 12, 12, 0.97);
  --story-body-bg-c: rgba(34, 34, 34, 0.94);
  --story-body-inset: rgba(142, 142, 142, 0.22);
  --story-cta-a: #a4ff00;
  --story-cta-b: #c7ff59;
  --story-cta-c: #8e8e8e;
  --story-cta-text: #10130d;
  --story-controls-border: rgba(164, 255, 0, 0.46);
  --story-nav-prev-a: #a4ff00;
  --story-nav-prev-b: #c7ff59;
  --story-nav-prev-c: #e4ffaf;
  --story-nav-next-a: #8e8e8e;
  --story-nav-next-b: #b3b3b3;
  --story-nav-next-c: #d2d2d2;
  --story-nav-next-fg: #111111;
}

.story-stage[data-story-theme="fire-sea-graffiti"] {
  --story-theme-bg-a: rgba(17, 17, 17, 0.74);
  --story-theme-bg-b: rgba(12, 20, 38, 0.76);
  --story-theme-filter: saturate(1.1) contrast(1.08) brightness(0.97);
  --story-mist-1: rgba(255, 0, 60, 0.34);
  --story-mist-2: rgba(0, 87, 255, 0.28);
  --story-mist-3: rgba(17, 17, 17, 0.36);
  --story-mist-4: rgba(255, 92, 128, 0.22);
  --story-mist-5: rgba(234, 243, 255, 0.08);
  --story-mist-bottom-a: rgba(10, 10, 10, 0.8);
  --story-mist-bottom-b: rgba(8, 16, 30, 0.34);
  --story-mist-bottom-c: rgba(6, 10, 18, 0);
  --story-accent-border: rgba(255, 0, 60, 0.92);
  --story-accent-dash: rgba(0, 87, 255, 0.58);
  --story-glow-primary: rgba(255, 0, 60, 0.28);
  --story-glow-secondary: rgba(0, 87, 255, 0.24);
  --story-overlay-a: rgba(255, 0, 60, 0.36);
  --story-overlay-b: rgba(0, 87, 255, 0.24);
  --story-overlay-c: rgba(255, 0, 60, 0.22);
  --story-overlay-d: rgba(0, 87, 255, 0.2);
  --story-timeline-progress-a: #ff003c;
  --story-timeline-progress-b: #0057ff;
  --story-timeline-progress-c: #111111;
  --story-timeline-item-border: rgba(255, 0, 60, 0.62);
  --story-timeline-item-bg-a: rgba(26, 10, 16, 0.95);
  --story-timeline-item-bg-b: rgba(12, 18, 34, 0.96);
  --story-timeline-item-bg-c: rgba(16, 16, 16, 0.92);
  --story-timeline-item-text: rgba(244, 246, 255, 0.94);
  --story-timeline-dot-a: #ff003c;
  --story-timeline-dot-b: #0057ff;
  --story-timeline-dot-glow: rgba(255, 0, 60, 0.42);
  --story-timeline-hover-text: #ffffff;
  --story-timeline-active-text: #f9fbff;
  --story-timeline-active-border: rgba(235, 241, 255, 0.84);
  --story-timeline-active-bg-a: #5a0018;
  --story-timeline-active-bg-b: #002b7f;
  --story-timeline-active-bg-c: #111111;
  --story-timeline-active-dot-a: #ff003c;
  --story-timeline-active-dot-b: #4f8cff;
  --story-kicker-a: #ff003c;
  --story-kicker-b: #ff4f77;
  --story-kicker-c: #0057ff;
  --story-kicker-text: #f7f9ff;
  --story-kicker-border: rgba(238, 243, 255, 0.72);
  --story-title-color: #ff5e87;
  --story-title-shadow-b: rgba(255, 0, 60, 0.3);
  --story-body-border: rgba(255, 0, 60, 0.8);
  --story-body-bg-a: rgba(26, 10, 16, 0.96);
  --story-body-bg-b: rgba(10, 16, 32, 0.97);
  --story-body-bg-c: rgba(16, 16, 16, 0.95);
  --story-body-inset: rgba(0, 87, 255, 0.24);
  --story-cta-a: #ff003c;
  --story-cta-b: #ff4f77;
  --story-cta-c: #0057ff;
  --story-cta-text: #f5f7ff;
  --story-cta-border: rgba(238, 243, 255, 0.72);
  --story-controls-border: rgba(255, 0, 60, 0.46);
  --story-nav-prev-a: #ff003c;
  --story-nav-prev-b: #ff4f77;
  --story-nav-prev-c: #ff86a1;
  --story-nav-next-a: #0057ff;
  --story-nav-next-b: #4f8cff;
  --story-nav-next-c: #8cb5ff;
  --story-nav-prev-fg: #ffffff;
  --story-nav-next-fg: #f4f8ff;
}

.story-stage[data-story-theme="hope-graffiti"] {
  --story-theme-bg-a: rgba(22, 10, 44, 0.72);
  --story-theme-bg-b: rgba(16, 14, 34, 0.78);
  --story-theme-filter: saturate(1.08) contrast(1.06) brightness(0.98);
  --story-mist-1: rgba(57, 255, 20, 0.34);
  --story-mist-2: rgba(0, 179, 198, 0.28);
  --story-mist-3: rgba(106, 13, 173, 0.3);
  --story-mist-4: rgba(57, 255, 20, 0.22);
  --story-mist-5: rgba(239, 255, 244, 0.1);
  --story-mist-bottom-a: rgba(18, 10, 34, 0.78);
  --story-mist-bottom-b: rgba(10, 28, 34, 0.32);
  --story-mist-bottom-c: rgba(8, 10, 18, 0);
  --story-accent-border: rgba(57, 255, 20, 0.94);
  --story-accent-dash: rgba(0, 179, 198, 0.64);
  --story-glow-primary: rgba(57, 255, 20, 0.26);
  --story-glow-secondary: rgba(0, 179, 198, 0.24);
  --story-overlay-a: rgba(57, 255, 20, 0.34);
  --story-overlay-b: rgba(0, 179, 198, 0.24);
  --story-overlay-c: rgba(106, 13, 173, 0.26);
  --story-overlay-d: rgba(0, 179, 198, 0.2);
  --story-timeline-progress-a: #39ff14;
  --story-timeline-progress-b: #00b3c6;
  --story-timeline-progress-c: #6a0dad;
  --story-timeline-item-border: rgba(57, 255, 20, 0.6);
  --story-timeline-item-bg-a: rgba(24, 12, 46, 0.95);
  --story-timeline-item-bg-b: rgba(12, 24, 40, 0.96);
  --story-timeline-item-bg-c: rgba(32, 14, 58, 0.92);
  --story-timeline-item-spot: rgba(57, 255, 20, 0.2);
  --story-timeline-item-text: rgba(233, 251, 245, 0.94);
  --story-timeline-dot-a: #39ff14;
  --story-timeline-dot-b: #00b3c6;
  --story-timeline-dot-glow: rgba(57, 255, 20, 0.42);
  --story-timeline-active-text: #0f1a14;
  --story-timeline-active-bg-a: #b9ffa9;
  --story-timeline-active-bg-b: #39ff14;
  --story-timeline-active-bg-c: #00b3c6;
  --story-timeline-active-dot-a: #00b3c6;
  --story-timeline-active-dot-b: #39ff14;
  --story-kicker-a: #39ff14;
  --story-kicker-b: #79ff5d;
  --story-kicker-c: #00b3c6;
  --story-kicker-text: #0d170f;
  --story-title-color: #98ff82;
  --story-title-shadow-b: rgba(57, 255, 20, 0.26);
  --story-body-border: rgba(57, 255, 20, 0.84);
  --story-body-bg-a: rgba(22, 12, 44, 0.95);
  --story-body-bg-b: rgba(10, 22, 36, 0.97);
  --story-body-bg-c: rgba(30, 14, 56, 0.94);
  --story-body-inset: rgba(0, 179, 198, 0.24);
  --story-cta-a: #39ff14;
  --story-cta-b: #84ff69;
  --story-cta-c: #00b3c6;
  --story-cta-text: #0f1712;
  --story-controls-border: rgba(57, 255, 20, 0.46);
  --story-nav-prev-a: #39ff14;
  --story-nav-prev-b: #84ff69;
  --story-nav-prev-c: #c3ffb4;
  --story-nav-next-a: #00b3c6;
  --story-nav-next-b: #4fdfeb;
  --story-nav-next-c: #8bf6ff;
  --story-nav-next-fg: #102027;
}

.story-stage:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.story-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(162deg, var(--story-theme-bg-a), var(--story-theme-bg-b)),
    var(--story-bg) center center / cover no-repeat;
  filter: var(--story-theme-filter);
  transform: scale(1.03);
  transition: background-image 620ms ease, filter 420ms ease;
}

.story-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 12%, var(--story-mist-1), transparent 20%),
    radial-gradient(circle at 88% 84%, var(--story-mist-2), transparent 24%),
    radial-gradient(circle at 16% 78%, var(--story-mist-3), transparent 34%),
    radial-gradient(circle at 84% 18%, var(--story-mist-4), transparent 28%),
    radial-gradient(circle at 62% 46%, var(--story-mist-5), transparent 40%),
    repeating-linear-gradient(
      -24deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 2px,
      transparent 2px,
      transparent 14px
    ),
    linear-gradient(to top, var(--story-mist-bottom-a), var(--story-mist-bottom-b), var(--story-mist-bottom-c));
  mix-blend-mode: soft-light;
  opacity: 0.44;
  animation: toxicMistDrift 12s ease-in-out infinite;
}

.story-pack-layer {
  --pack-filter:
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 16px rgba(203, 255, 51, 0.24));
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.story-pack-item {
  position: absolute;
  left: var(--pack-x, 50%);
  top: var(--pack-y, 50%);
  width: var(--pack-size, 118px);
  max-width: clamp(68px, 10vw, 154px);
  object-fit: contain;
  opacity: 0;
  transform:
    translate(-50%, -50%)
    rotate(var(--pack-rot, 0deg))
    scale(calc(var(--pack-scale, 1) * 0.52));
  transform-origin: 50% 50%;
  filter: var(--pack-filter);
  mix-blend-mode: screen;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  will-change: transform, opacity;
  animation:
    storyPackPopIn 660ms cubic-bezier(0.22, 1, 0.36, 1) var(--pack-delay, 0ms) both,
    storyPackDrift var(--pack-float-duration, 6800ms) ease-in-out calc(var(--pack-delay, 0ms) + 700ms) infinite,
    storyPackBreath 3600ms ease-in-out calc(var(--pack-delay, 0ms) + 700ms) infinite;
}

.story-pack-layer[data-pack-theme="sea-graffiti"] {
  --pack-filter:
    hue-rotate(-8deg) saturate(1.08)
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 16px rgba(97, 227, 255, 0.34));
}

.story-pack-layer[data-pack-theme="surf-graffiti"] {
  --pack-filter:
    hue-rotate(12deg) saturate(1.2)
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 16px rgba(180, 240, 0, 0.38));
}

.story-pack-layer[data-pack-theme="comic-graffiti"] {
  --pack-filter:
    saturate(1.14) contrast(1.08)
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 14px rgba(255, 76, 168, 0.34));
}

.story-pack-layer[data-pack-theme="fire-sea-graffiti"] {
  --pack-filter:
    hue-rotate(-22deg) saturate(1.22)
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 16px rgba(255, 118, 64, 0.4));
}

.story-pack-layer[data-pack-theme="hope-graffiti"] {
  --pack-filter:
    hue-rotate(8deg) saturate(1.1) contrast(1.05)
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 16px rgba(57, 255, 20, 0.42));
}

.story-stage[data-story-theme="sea-graffiti"] .story-slide img {
  filter: saturate(1.04) contrast(1.02);
}

.story-stage[data-story-theme="surf-graffiti"] .story-slide img {
  filter: saturate(1.06) contrast(1.03);
}

.story-stage[data-story-theme="comic-graffiti"] .story-slide img {
  filter: saturate(1.05) contrast(1.04);
}

.story-stage[data-story-theme="fire-sea-graffiti"] .story-slide img {
  filter: saturate(1.08) contrast(1.04);
}

.story-stage[data-story-theme="hope-graffiti"] .story-slide img {
  filter: saturate(1.07) contrast(1.03) brightness(1.01);
}

.story-layout {
  position: relative;
  z-index: 3;
  width: min(100%, 1460px);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(134px, 0.32fr) minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(0.7rem, 1.7vw, 1.6rem);
  align-items: center;
}

.story-timeline {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(0.34rem, 1vw, 0.9rem);
  z-index: 4;
}

.story-timeline-line {
  position: absolute;
  left: calc(clamp(0.18rem, 0.52vw, 0.34rem) - 10px);
  top: 12%;
  bottom: 12%;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--story-timeline-track-a), var(--story-timeline-track-b));
  box-shadow:
    0 0 0 2px rgba(13, 14, 20, 0.92),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 16px var(--story-timeline-track-glow);
}

.story-timeline-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--timeline-progress);
  border-radius: inherit;
  background: linear-gradient(180deg, var(--story-timeline-progress-a) 0%, var(--story-timeline-progress-b) 58%, var(--story-timeline-progress-c) 100%);
  box-shadow:
    0 0 18px var(--story-timeline-progress-glow-a),
    0 0 12px var(--story-timeline-progress-glow-b);
  transition: height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-timeline-items {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(0.46rem, 1.2vh, 0.76rem);
}

.story-timeline-item {
  position: relative;
  border: 2px solid var(--story-timeline-item-border);
  margin: 0;
  padding: 0.3rem 0.44rem 0.3rem clamp(1.7rem, 3.7vw, 2.25rem);
  border-radius: 12px 14px 12px 13px;
  background:
    linear-gradient(152deg, var(--story-timeline-item-bg-a), var(--story-timeline-item-bg-b) 58%, var(--story-timeline-item-bg-c)),
    radial-gradient(circle at 16% 22%, var(--story-timeline-item-spot), transparent 46%);
  color: var(--story-timeline-item-text);
  text-align: left;
  display: grid;
  gap: 0.12rem;
  opacity: 0.9;
  transform: translateX(0);
  box-shadow:
    0.08rem 0.08rem 0 rgba(15, 17, 23, 0.92),
    0.18rem 0.2rem 0 rgba(0, 0, 0, 0.34),
    0 0 12px var(--story-timeline-item-glow);
  transition: transform 220ms ease, color 220ms ease, opacity 220ms ease;
}

.story-timeline-item::before {
  content: "";
  position: absolute;
  left: clamp(0.1rem, 0.34vw, 0.22rem);
  top: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid var(--story-timeline-dot-border);
  border-radius: 50%;
  background: linear-gradient(140deg, var(--story-timeline-dot-a), var(--story-timeline-dot-b));
  transform: translateY(-50%);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.2),
    0 0 10px var(--story-timeline-dot-glow);
}

.story-timeline-item:hover {
  color: var(--story-timeline-hover-text);
  opacity: 1;
  transform: translateX(4px) rotate(-0.6deg);
}

.story-timeline-item:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
  border-radius: 8px;
}

.story-timeline-item.is-active {
  color: var(--story-timeline-active-text);
  opacity: 1;
  transform: translateX(6px) rotate(-1.2deg);
  border-color: var(--story-timeline-active-border);
  background:
    linear-gradient(142deg, var(--story-timeline-active-bg-a), var(--story-timeline-active-bg-b) 56%, var(--story-timeline-active-bg-c)),
    radial-gradient(circle at 76% 84%, var(--story-timeline-active-spot), transparent 46%);
  box-shadow:
    0.1rem 0.1rem 0 rgba(15, 17, 23, 0.94),
    0.22rem 0.24rem 0 rgba(0, 0, 0, 0.36),
    0 0 14px var(--story-timeline-active-glow);
}

.story-timeline-item.is-active::before {
  background: linear-gradient(130deg, var(--story-timeline-active-dot-a), var(--story-timeline-active-dot-b));
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.24),
    0 0 14px var(--story-timeline-active-dot-glow),
    0 0 10px var(--story-timeline-active-dot-glow);
  animation: toxicBadgeFlicker 4.8s steps(2, end) infinite;
}

.story-timeline-year {
  font-family: var(--pixel-font);
  font-size: clamp(0.48rem, 0.68vw, 0.62rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.story-timeline-label {
  font-family: "Upheaval Pro", var(--display-font);
  font-size: clamp(0.74rem, 1.08vw, 1.1rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  text-shadow: none;
}

.story-viewport {
  position: relative;
  width: 100%;
  height: min(78vh, 760px);
  border: 3px solid var(--story-accent-border);
  border-radius: clamp(20px, 3.1vw, 34px);
  overflow: hidden;
  background:
    linear-gradient(154deg, rgba(18, 12, 30, 0.96), rgba(8, 10, 14, 0.98)),
    radial-gradient(circle at 14% 16%, var(--story-card-spot-b), transparent 36%);
  box-shadow:
    0 0 0 3px rgba(12, 12, 18, 0.92),
    0.24rem 0.24rem 0 rgba(15, 17, 23, 0.94),
    0.58rem 0.68rem 0 rgba(0, 0, 0, 0.42),
    0 22px 42px rgba(0, 0, 0, 0.5),
    0 0 28px var(--story-glow-primary);
}

.story-viewport::before {
  content: "";
  position: absolute;
  inset: 0.44rem;
  z-index: 4;
  pointer-events: none;
  border: 2px dashed var(--story-accent-dash);
  border-radius: calc(clamp(20px, 3.1vw, 34px) - 6px);
  opacity: 0.72;
}

.story-viewport::after {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 14%, var(--story-overlay-a), transparent 30%),
    radial-gradient(circle at 86% 82%, var(--story-overlay-c), transparent 32%),
    radial-gradient(circle at 48% 16%, var(--story-overlay-d), transparent 28%),
    linear-gradient(160deg, rgba(10, 10, 10, 0.24), rgba(10, 10, 10, 0.54));
  filter: blur(14px);
}

.story-track {
  position: absolute;
  inset: 0;
  z-index: 1;
  isolation: isolate;
}

.story-slide {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-shift: 0;
  --cursor-x: 50%;
  --cursor-y: 50%;
  position: absolute;
  inset: 0;
  padding: clamp(0.6rem, 1.2vw, 0.9rem);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 110%, 0) scale(0.84);
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease,
    filter 280ms ease;
}

.story-slide.is-before {
  opacity: 0.12;
  transform: translate3d(0, -24%, 0) scale(0.86);
  z-index: 1;
}

.story-slide.is-after {
  opacity: 0.12;
  transform: translate3d(0, 24%, 0) scale(0.86);
  z-index: 1;
}

.story-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
  z-index: 3;
}

.story-slide-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: clamp(14px, 2vw, 26px);
  border: 2px solid var(--story-accent-border);
  background: #0a0b0e;
  transform: perspective(1500px) rotateX(0deg) rotateY(0deg);
  transform-style: preserve-3d;
  transition: transform 180ms ease, filter 220ms ease;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 0 2px rgba(16, 17, 24, 0.66),
    0 18px 28px rgba(0, 0, 0, 0.4),
    0 0 18px var(--story-glow-secondary);
}

.story-slide.is-active .story-slide-frame {
  transform:
    perspective(1500px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    scale(calc(1 + (var(--tilt-shift) * 0.02)));
}

.story-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1);
  transition: filter 240ms ease, transform 240ms ease;
}

.story-slide-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(255, 255, 255, 0.12), transparent 46%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.08), transparent 40%);
  mix-blend-mode: soft-light;
  opacity: 0.36;
}

.story-slide-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent 34%, rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at 50% 50%, transparent 56%, rgba(0, 0, 0, 0.2) 100%);
}

.story-glitch-layer {
  display: none;
  position: absolute;
  inset: -1px;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  background: var(--story-image) center center / cover no-repeat;
  transition: opacity 180ms ease;
}

.story-glitch-layer.ghost-a {
  mix-blend-mode: screen;
  filter: hue-rotate(-12deg) saturate(1.5);
}

.story-glitch-layer.ghost-b {
  mix-blend-mode: hard-light;
  filter: hue-rotate(16deg) saturate(1.5);
}

.story-glitch-noise {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.16) 0,
      rgba(255, 255, 255, 0.16) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: soft-light;
}

.story-slide.is-active:hover img {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.02);
}

.story-slide.is-active:hover .story-glitch-layer {
  opacity: 0.24;
  animation: storyHoverGlitch 560ms steps(2, end) infinite;
}

.story-slide.is-active:hover .story-glitch-layer.ghost-b {
  opacity: 0.2;
  animation-duration: 460ms;
  animation-delay: -0.12s;
}

.story-slide.is-active:hover .story-glitch-noise {
  opacity: 0.42;
  animation: storyNoiseFlow 620ms linear infinite;
}

.story-overlay {
  position: relative;
  z-index: 4;
  min-height: min(78vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.46rem;
  padding: clamp(0.78rem, 1.45vw, 1.22rem);
  border: 3px solid var(--story-accent-border);
  border-radius: 20px;
  background:
    radial-gradient(circle at 14% 12%, var(--story-card-spot-a), transparent 36%),
    radial-gradient(circle at 84% 18%, var(--story-card-spot-c), transparent 38%),
    radial-gradient(circle at 18% 84%, var(--story-card-spot-b), transparent 42%),
    linear-gradient(154deg, rgba(27, 12, 36, 0.96), rgba(10, 12, 18, 0.98) 54%, rgba(34, 12, 52, 0.95));
  box-shadow:
    0 0 0 2px rgba(11, 12, 18, 0.94) inset,
    0 0 0 1px var(--story-card-spot-b) inset,
    0.2rem 0.2rem 0 var(--story-comic-ink),
    0.52rem 0.6rem 0 rgba(0, 0, 0, 0.42),
    0 0 22px var(--story-glow-primary),
    0 0 34px var(--story-glow-secondary);
  overflow: hidden;
}

.story-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(238, 245, 255, 0.16) 1.2px, transparent 1.4px) 0 0 / 12px 12px,
    linear-gradient(126deg, rgba(255, 255, 255, 0.08), transparent 46%);
  mix-blend-mode: multiply;
  opacity: 0.5;
}

.story-overlay::after {
  content: "";
  position: absolute;
  inset: 0.38rem;
  z-index: 1;
  pointer-events: none;
  border: 2px dashed var(--story-accent-dash);
  border-radius: 14px;
  opacity: 0.62;
}

.story-overlay > * {
  position: relative;
  z-index: 3;
}

.story-kicker {
  margin: 0;
  width: fit-content;
  padding: 0.2rem 0.48rem 0.22rem;
  border: 2px solid var(--story-kicker-border);
  border-radius: 999px 999px 940px 999px;
  font-family: var(--pixel-font);
  font-size: clamp(0.42rem, 0.54vw, 0.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--story-kicker-text);
  background: linear-gradient(138deg, var(--story-kicker-a), var(--story-kicker-b) 56%, var(--story-kicker-c));
  box-shadow: 0.08rem 0.08rem 0 var(--story-kicker-border);
}

.story-overlay h3 {
  position: relative;
  isolation: isolate;
  display: inline-block;
  max-width: 15ch;
  margin: 0;
  padding: 0.03em 0.1em 0.11em 0.02em;
  color: var(--story-title-color);
  -webkit-text-fill-color: currentColor;
  font-family: "Upheaval Pro", var(--display-font);
  font-size: clamp(1.12rem, 2.4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.94;
  -webkit-text-stroke: 0.75px rgba(8, 10, 14, 0.72);
  text-shadow:
    0.045em 0.045em 0 var(--story-title-shadow-a),
    0 0 12px var(--story-title-shadow-b),
    0 0 20px var(--story-title-shadow-b);
  filter:
    drop-shadow(0 0 8px var(--story-title-shadow-b))
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.28));
  transform: rotate(-0.35deg);
  transform-origin: left center;
  animation: storyTitleShimmer 5.2s ease-in-out infinite;
}

.story-overlay h3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0.05em;
  bottom: 0.04em;
  height: 0.23em;
  border-radius: 0.12em;
  background: linear-gradient(96deg, var(--story-kicker-a), var(--story-kicker-b) 62%, transparent 100%);
  transform: skewX(-14deg);
  z-index: -1;
  opacity: 0.46;
  box-shadow: 0 0 12px var(--story-title-shadow-b);
  animation: storyTitleSlugPulse 3.8s ease-in-out infinite;
}

.story-overlay h3::after {
  content: "✦";
  position: absolute;
  right: -0.08em;
  top: -0.22em;
  font-family: var(--pixel-font);
  font-size: 0.24em;
  letter-spacing: 0;
  color: #f8fcff;
  text-shadow:
    0 0 8px var(--story-kicker-a),
    0 0 12px var(--story-kicker-b);
  animation: storyTitleSpark 1.8s ease-in-out infinite;
}

.story-overlay .story-body {
  margin: 0;
  color: rgba(244, 247, 252, 0.95);
  font-size: clamp(0.68rem, 0.9vw, 0.92rem);
  line-height: 1.34;
  border: 2px solid var(--story-body-border);
  border-radius: 12px 14px 12px 13px;
  padding: 0.56rem 0.58rem 0.6rem;
  background:
    linear-gradient(154deg, var(--story-body-bg-a), var(--story-body-bg-b) 58%, var(--story-body-bg-c));
  box-shadow:
    0.12rem 0.12rem 0 var(--story-comic-ink),
    0 0 0 2px var(--story-body-inset) inset,
    0 0 10px var(--story-body-glow);
  max-height: none;
  overflow: visible;
  text-wrap: pretty;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
}

.story-cta {
  position: relative;
  isolation: isolate;
  margin-top: 0.2rem;
  width: fit-content;
  border: 2px solid var(--story-cta-border);
  border-radius: 10px;
  background: linear-gradient(138deg, var(--story-cta-a), var(--story-cta-b) 56%, var(--story-cta-c));
  color: var(--story-cta-text);
  font-size: clamp(0.58rem, 0.68vw, 0.7rem);
  line-height: 1;
  padding: 0.44rem 0.86rem;
  font-family: var(--pixel-font);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow:
    0 3px 0 var(--story-comic-ink),
    0 10px 16px rgba(0, 0, 0, 0.34),
    0 0 16px var(--story-cta-glow);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.story-cta.is-next {
  letter-spacing: 0.11em;
  padding-inline: 1.08rem;
  background:
    linear-gradient(136deg, #fff07a, #ffc649 52%, #ff6f3d);
  color: #111217;
  box-shadow:
    0 3px 0 var(--story-comic-ink),
    0 10px 16px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(255, 198, 73, 0.56),
    0 0 24px rgba(97, 227, 255, 0.36);
}

.story-cta.is-next::before,
.story-cta.is-next::after {
  content: "\26A1";
  position: absolute;
  top: 50%;
  font-size: clamp(0.82rem, 1.1vw, 1.04rem);
  line-height: 1;
  color: #ffe55b;
  text-shadow:
    0 0 10px rgba(255, 198, 73, 0.94),
    0 0 18px rgba(97, 227, 255, 0.6);
  pointer-events: none;
  animation: storyCtaBoltFlicker 900ms steps(2, end) infinite;
}

.story-cta.is-next::before {
  left: -0.76rem;
  transform: translateY(-50%) rotate(-16deg);
}

.story-cta.is-next::after {
  right: -0.76rem;
  transform: translateY(-50%) rotate(16deg);
  animation-delay: -0.24s;
}

.story-cta:hover {
  transform: translateY(-2px) rotate(-1.2deg);
  filter: saturate(1.08);
}

.story-cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.story-controls {
  position: absolute;
  right: clamp(0.74rem, 1.8vw, 1.44rem);
  bottom: clamp(0.7rem, 1.6vh, 1.22rem);
  z-index: 5;
  isolation: isolate;
  display: flex;
  gap: 0.56rem;
}

.story-controls::before {
  content: "";
  position: absolute;
  inset: -8px -10px;
  z-index: -1;
  border: 2px solid var(--story-controls-border);
  border-radius: 14px;
  background:
    linear-gradient(145deg, var(--story-controls-bg-a), var(--story-controls-bg-b)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 2px,
      transparent 2px,
      transparent 10px
    );
  box-shadow:
    0 0 0 1px rgba(12, 13, 19, 0.88) inset,
    0 0 16px var(--story-controls-glow);
  animation: storyControlsGlow 4.8s ease-in-out infinite;
}

.story-nav {
  --nav-glow: var(--story-nav-prev-glow);
  --nav-rot: -1.4deg;
  --nav-hover-rot: -0.2deg;
  --nav-fill: linear-gradient(145deg, var(--story-nav-prev-a), var(--story-nav-prev-b) 56%, var(--story-nav-prev-c));
  --nav-fg: var(--story-nav-prev-fg);
  width: 46px;
  height: 42px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 2px solid var(--story-comic-ink);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--nav-fill);
  color: var(--nav-fg);
  font-family: var(--pixel-font);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  transform: rotate(var(--nav-rot));
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  box-shadow:
    0 4px 0 var(--story-comic-ink),
    0 10px 18px rgba(0, 0, 0, 0.34),
    0 0 14px var(--nav-glow);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.story-nav::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  opacity: 0.84;
  pointer-events: none;
}

.story-nav.prev {
  --nav-rot: -2deg;
  --nav-hover-rot: -0.5deg;
}

.story-nav.next {
  --nav-glow: var(--story-nav-next-glow);
  --nav-rot: 2deg;
  --nav-hover-rot: 0.5deg;
  --nav-fill: linear-gradient(145deg, var(--story-nav-next-a), var(--story-nav-next-b) 56%, var(--story-nav-next-c));
  --nav-fg: var(--story-nav-next-fg);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

.story-nav:hover {
  transform: translateY(-2px) scale(1.05) rotate(var(--nav-hover-rot));
  filter: saturate(1.1) brightness(1.05);
  box-shadow:
    0 6px 0 var(--story-comic-ink),
    0 13px 26px rgba(0, 0, 0, 0.4),
    0 0 22px var(--nav-glow);
}

.story-nav:active {
  transform: translateY(1px) scale(0.97) rotate(var(--nav-rot));
  box-shadow:
    0 2px 0 var(--story-comic-ink),
    0 8px 14px rgba(0, 0, 0, 0.26);
}

.story-nav:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.story-nav:disabled {
  opacity: 0.46;
  pointer-events: none;
  filter: saturate(0.55);
  box-shadow:
    0 2px 0 var(--story-comic-ink),
    0 6px 12px rgba(0, 0, 0, 0.2);
}

.story-copy-panel,
.story-counter {
  display: none;
}

@keyframes storyHoverGlitch {
  0% {
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
  }
  25% {
    transform: translate3d(-1.2%, 0.5%, 0);
    clip-path: inset(8% 0 44% 0);
  }
  50% {
    transform: translate3d(1.4%, -0.8%, 0);
    clip-path: inset(36% 0 24% 0);
  }
  75% {
    transform: translate3d(-0.8%, 0.4%, 0);
    clip-path: inset(62% 0 8% 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes storyNoiseFlow {
  0% {
    transform: translateY(-8%);
  }
  100% {
    transform: translateY(8%);
  }
}

@keyframes storyPackPopIn {
  0% {
    opacity: 0;
    transform:
      translate(-50%, -50%)
      rotate(calc(var(--pack-rot, 0deg) - 14deg))
      scale(calc(var(--pack-scale, 1) * 0.48));
  }
  58% {
    opacity: calc(var(--pack-opacity, 0.46) + 0.16);
    transform:
      translate(-50%, calc(-50% - 6px))
      rotate(calc(var(--pack-rot, 0deg) + 5deg))
      scale(calc(var(--pack-scale, 1) * 1.08));
  }
  100% {
    opacity: var(--pack-opacity, 0.46);
    transform:
      translate(-50%, -50%)
      rotate(var(--pack-rot, 0deg))
      scale(var(--pack-scale, 1));
  }
}

@keyframes storyPackDrift {
  0% {
    transform:
      translate(-50%, -50%)
      rotate(var(--pack-rot, 0deg))
      scale(var(--pack-scale, 1));
  }
  50% {
    transform:
      translate(calc(-50% + 2px), calc(-50% - var(--pack-float-shift, 8px)))
      rotate(calc(var(--pack-rot, 0deg) + 3deg))
      scale(calc(var(--pack-scale, 1) * 1.03));
  }
  100% {
    transform:
      translate(calc(-50% - 2px), calc(-50% + var(--pack-float-shift, 8px)))
      rotate(calc(var(--pack-rot, 0deg) - 2.4deg))
      scale(calc(var(--pack-scale, 1) * 0.98));
  }
}

@keyframes storyPackBreath {
  0%,
  100% {
    opacity: var(--pack-opacity, 0.46);
  }
  50% {
    opacity: calc(var(--pack-opacity, 0.46) + 0.14);
  }
}

@keyframes storyCtaBoltFlicker {
  0%,
  100% {
    opacity: 0.86;
    filter: saturate(1);
  }
  35% {
    opacity: 1;
    filter: saturate(1.14);
  }
  60% {
    opacity: 0.54;
    filter: saturate(0.92);
  }
}

.game {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: clamp(0.9rem, 2vw, 2rem);
  background: url("./images/bg/bg-3-game.webp") center center / cover no-repeat;
}

.game::before {
  display: none;
}

.game-jump-logo {
  position: absolute;
  left: clamp(0.7rem, 1.8vw, 1.5rem);
  top: clamp(0.7rem, 1.8vw, 1.5rem);
  z-index: 6;
  width: clamp(264px, 28vw, 440px);
  pointer-events: none;
  transform: rotate(-5deg);
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 16px rgba(180, 240, 0, 0.42));
  animation: jumpLogoFloat 3.6s ease-in-out infinite;
}

.game-jump-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes jumpLogoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-5px) rotate(-6deg);
  }
}

.doodle-shell {
  position: relative;
  isolation: isolate;
  z-index: 2;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  border: 5px solid rgba(15, 15, 16, 0.99);
  border-radius: 34px;
  padding: clamp(1rem, 1.9vw, 1.45rem);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(4, 5, 8, 0.5) 0,
      rgba(4, 5, 8, 0.5) 7px,
      rgba(20, 23, 38, 0.46) 7px,
      rgba(20, 23, 38, 0.46) 15px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 2px,
      transparent 2px,
      transparent 11px
    ),
    radial-gradient(circle at 10% 14%, rgba(180, 240, 0, 0.34), transparent 36%),
    radial-gradient(circle at 94% 90%, rgba(255, 46, 99, 0.32), transparent 42%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.15), transparent 48%),
    linear-gradient(180deg, rgba(30, 40, 63, 0.3), transparent 28%),
    linear-gradient(135deg, rgba(16, 20, 34, 0.98), rgba(7, 9, 16, 1));
  box-shadow:
    0 16px 0 rgba(11, 11, 12, 0.98),
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 56px rgba(108, 43, 217, 0.5),
    inset 0 0 0 2px rgba(180, 240, 0, 0.24),
    inset 0 -14px 30px rgba(255, 46, 99, 0.18),
    inset 0 12px 20px rgba(255, 255, 255, 0.08);
  animation: doodleCabinetGlow 4.8s ease-in-out infinite;
}

.doodle-shell::before,
.doodle-shell::after {
  content: "";
  position: absolute;
  z-index: 4;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.42));
}

.doodle-shell::before {
  width: clamp(178px, 20vw, 248px);
  aspect-ratio: 368 / 276;
  top: -74px;
  left: -84px;
  background-image: url("./images/tentakls/tentakl (1).webp");
  transform-origin: 76% 74%;
  animation: doodleTentacleTopGrip 4.8s ease-in-out infinite;
}

.doodle-shell::after {
  width: clamp(170px, 21vw, 250px);
  aspect-ratio: 429 / 398;
  right: -112px;
  bottom: -108px;
  background-image: url("./images/tentakls/tentakl (5).webp");
  transform-origin: 22% 86%;
  animation: doodleTentacleBottomGrip 5.3s ease-in-out infinite;
}

.doodle-layout {
  position: relative;
  z-index: 2;
}

.doodle-layout::before,
.doodle-layout::after {
  content: "";
  position: absolute;
  left: clamp(0.45rem, 1vw, 0.82rem);
  right: clamp(0.45rem, 1vw, 0.82rem);
  z-index: 4;
  pointer-events: none;
  border: 2px solid rgba(17, 17, 17, 0.96);
  border-radius: 999px;
}

.doodle-layout::before {
  top: clamp(-0.72rem, -1vw, -0.54rem);
  height: clamp(12px, 1.35vw, 18px);
  background:
    repeating-radial-gradient(
      circle at 0 50%,
      rgba(242, 255, 153, 0.95) 0 3px,
      rgba(180, 240, 0, 0.92) 3px 5px,
      rgba(84, 120, 9, 0.95) 5px 8px
    ) left center / 18px 100% repeat-x,
    linear-gradient(145deg, rgba(38, 44, 68, 0.98), rgba(13, 15, 24, 0.96));
  box-shadow:
    0 3px 0 rgba(17, 17, 17, 0.95),
    0 0 18px rgba(180, 240, 0, 0.42),
    0 0 30px rgba(255, 46, 99, 0.2);
  animation: doodleMarqueePulse 2.8s linear infinite;
}

.doodle-layout::after {
  bottom: clamp(-0.7rem, -1vw, -0.5rem);
  height: clamp(8px, 1vw, 12px);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(92, 114, 255, 0.92) 0 18px,
      rgba(65, 79, 188, 0.88) 18px 36px
    ),
    linear-gradient(145deg, rgba(24, 29, 46, 0.94), rgba(9, 11, 18, 0.98));
  box-shadow:
    0 2px 0 rgba(17, 17, 17, 0.95),
    0 0 14px rgba(108, 43, 217, 0.44);
  opacity: 0.85;
}

@keyframes doodleTentacleTopGrip {
  0%,
  100% {
    transform: translate3d(-4px, -6px, 0) rotate(-22deg);
  }
  50% {
    transform: translate3d(4px, -10px, 0) rotate(-27deg);
  }
}

@keyframes doodleTentacleBottomGrip {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(8deg) scaleX(-1);
  }
  50% {
    transform: translate3d(-7px, 7px, 0) rotate(12deg) scaleX(-1);
  }
}

.doodle-intro {
  margin-bottom: clamp(0.68rem, 1.25vh, 1rem);
}

.doodle-intro h2 {
  margin: 0.3rem 0 0.38rem;
  font-family: var(--display-font);
  font-size: clamp(1.66rem, 3.2vw, 3rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 4px 0 var(--ink), 0 0 18px rgba(255, 46, 99, 0.28);
}

.doodle-copy {
  margin: 0;
  max-width: 68ch;
  font-size: clamp(0.92rem, 1.05vw, 1.06rem);
  line-height: 1.32;
  color: rgba(238, 244, 255, 0.94);
}

.doodle-character-chip {
  margin-top: 0.52rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(17, 17, 17, 0.95);
  border-radius: 999px;
  padding: 0.32rem 0.62rem 0.32rem 0.34rem;
  background: linear-gradient(145deg, rgba(180, 240, 0, 0.9), rgba(219, 255, 97, 0.86));
  color: #111111;
  font-family: var(--pixel-font);
  font-size: clamp(0.5rem, 0.58vw, 0.62rem);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 0 rgba(17, 17, 17, 0.95);
}

.doodle-character-chip img {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid rgba(17, 17, 17, 0.95);
  object-fit: cover;
  background: rgba(17, 17, 17, 0.72);
}

.doodle-layout {
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(236px, 280px);
  gap: clamp(0.8rem, 1.4vw, 1.1rem);
  align-items: stretch;
  justify-content: center;
}

.doodle-sideboard,
.doodle-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 3px solid rgba(17, 17, 17, 0.95);
  border-radius: 18px;
  padding: 0.78rem;
  background:
    linear-gradient(180deg, rgba(99, 117, 255, 0.14), transparent 26%),
    repeating-linear-gradient(
      -36deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 2px,
      transparent 2px,
      transparent 10px
    ),
    radial-gradient(circle at 12% 10%, rgba(180, 240, 0, 0.24), transparent 40%),
    radial-gradient(circle at 86% 88%, rgba(255, 46, 99, 0.22), transparent 40%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), transparent 52%),
    linear-gradient(130deg, #1f2338, #0c0f18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 9px 0 rgba(17, 17, 17, 0.9),
    0 14px 24px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(108, 43, 217, 0.34),
    inset 0 -8px 16px rgba(6, 8, 12, 0.35);
}

.doodle-sideboard::before,
.doodle-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 32%, rgba(255, 255, 255, 0.12), transparent 16%),
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.08), transparent 14%),
    radial-gradient(circle at 54% 82%, rgba(180, 240, 0, 0.16), transparent 20%);
  mix-blend-mode: screen;
  opacity: 0.5;
}

.doodle-sideboard::after,
.doodle-panel::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(180, 240, 0, 0.2);
  border-radius: 12px;
  pointer-events: none;
  opacity: 0.8;
}

.doodle-sideboard > *,
.doodle-panel > * {
  position: relative;
  z-index: 1;
}

.doodle-sideboard {
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
  min-width: 0;
  height: 100%;
}

.doodle-leaderboard-module {
  position: absolute;
  left: clamp(0.9rem, 2.4vw, 2.3rem);
  top: 50%;
  transform: translateY(-50%);
  height: var(--doodle-shell-height, clamp(560px, 78vh, 780px));
  z-index: 3;
  width: max(280px, calc(50% - 300px));
  max-width: 434px;
  padding: clamp(0.78rem, 1.05vw, 1.02rem);
  display: flex;
  flex-direction: column;
  box-shadow:
    0 0 0 2px rgba(180, 240, 0, 0.2),
    0 0 24px rgba(180, 240, 0, 0.2),
    0 0 36px rgba(255, 46, 99, 0.16);
}

.doodle-side-title {
  margin: 0;
  font-family: var(--graffiti-font);
  font-size: clamp(1.08rem, 1.32vw, 1.42rem);
  letter-spacing: 0.03em;
  color: #dbff61;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 0 #111111, 0 0 12px rgba(180, 240, 0, 0.42);
}

.doodle-side-kicker {
  margin: 0 0 0.12rem;
  font-family: var(--pixel-font);
  font-size: clamp(0.42rem, 0.5vw, 0.52rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(194, 212, 244, 0.82);
}

.doodle-nick-label {
  font-family: var(--pixel-font);
  font-size: clamp(0.5rem, 0.58vw, 0.6rem);
  letter-spacing: 0.06em;
  color: rgba(204, 224, 255, 0.84);
  text-transform: uppercase;
}

.doodle-nick-input {
  width: 100%;
  border: 2px solid rgba(180, 240, 0, 0.44);
  border-radius: 12px;
  padding: 0.58rem 0.62rem;
  background:
    linear-gradient(145deg, rgba(14, 15, 26, 0.9), rgba(8, 10, 16, 0.95));
  color: rgba(245, 250, 255, 0.96);
  font-family: var(--pixel-font);
  font-size: clamp(0.56rem, 0.62vw, 0.66rem);
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.doodle-nick-input::placeholder {
  color: rgba(198, 212, 236, 0.56);
}

.doodle-nick-input:focus-visible {
  outline: 2px solid #dbff61;
  outline-offset: 1px;
}

.doodle-nick-current {
  margin: 0.12rem 0 0;
  border: 2px solid rgba(17, 17, 17, 0.92);
  border-radius: 12px;
  padding: 0.5rem 0.58rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.56rem;
  background: linear-gradient(145deg, rgba(180, 240, 0, 0.92), rgba(220, 255, 90, 0.88));
  color: #111111;
  font-family: var(--pixel-font);
  font-size: clamp(0.5rem, 0.58vw, 0.62rem);
  letter-spacing: 0.05em;
  box-shadow: 0 3px 0 rgba(17, 17, 17, 0.92);
}

.doodle-nick-current strong {
  color: #1b1f2d;
  font-size: clamp(0.54rem, 0.64vw, 0.68rem);
  max-width: 11ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.doodle-leaderboard-head {
  margin-top: 0.08rem;
  border: 1px solid rgba(180, 240, 0, 0.3);
  border-radius: 10px;
  padding: 0.34rem 0.6rem;
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) auto;
  gap: 0.56rem;
  align-items: center;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 65%),
    linear-gradient(130deg, rgba(15, 19, 30, 0.92), rgba(7, 9, 14, 0.94));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.doodle-leaderboard-head span {
  font-family: var(--pixel-font);
  font-size: clamp(0.42rem, 0.5vw, 0.54rem);
  letter-spacing: 0.07em;
  color: rgba(197, 212, 236, 0.72);
}

.doodle-leaderboard-head span:first-child {
  text-align: center;
}

.doodle-leaderboard-head span:last-child {
  text-align: right;
}

.doodle-leaderboard {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.46rem;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  padding-right: 0.16rem;
}

.doodle-leaderboard li {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(17, 17, 17, 0.9);
  border-left: 5px solid #b4f000;
  border-radius: 10px;
  padding: 0.5rem 0.6rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.56rem;
  align-items: center;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), transparent 65%),
    linear-gradient(130deg, rgba(27, 31, 45, 0.96), rgba(10, 12, 18, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 4px 0 rgba(17, 17, 17, 0.88);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  min-height: 2.5rem;
}

.doodle-leaderboard li span {
  font-family: var(--pixel-font);
  font-size: clamp(0.5rem, 0.58vw, 0.62rem);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.doodle-leaderboard li .rank {
  color: rgba(192, 209, 236, 0.86);
  min-width: 2.6rem;
  text-align: center;
  padding: 0.2rem 0.28rem;
  border-radius: 6px;
  border: 1px solid rgba(180, 240, 0, 0.35);
  background: rgba(8, 10, 15, 0.5);
}

.doodle-leaderboard li .name {
  color: rgba(242, 246, 255, 0.95);
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.doodle-leaderboard li .name-cell {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.34rem;
}

.doodle-leaderboard li .you-badge {
  flex: 0 0 auto;
  padding: 0.08rem 0.22rem;
  border-radius: 6px;
  border: 1px solid rgba(17, 17, 17, 0.84);
  background: linear-gradient(145deg, #d3ff47, #b4f000);
  color: #111111;
  font-family: var(--pixel-font);
  font-size: 0.36rem;
  letter-spacing: 0.04em;
}

.doodle-leaderboard li .score {
  color: #dbff61;
  justify-self: end;
}

.doodle-leaderboard li.is-empty {
  min-height: 4.8rem;
  grid-template-columns: 1fr;
  text-align: center;
  place-items: center;
  border-left-width: 2px;
  border-style: dashed;
  border-color: rgba(180, 240, 0, 0.34);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 65%),
    linear-gradient(130deg, rgba(18, 22, 34, 0.92), rgba(7, 9, 14, 0.9));
}

.doodle-leaderboard li.is-empty span {
  color: rgba(198, 214, 240, 0.78);
}

.doodle-leaderboard li:not(.is-empty):hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 5px 0 rgba(17, 17, 17, 0.88),
    0 0 16px rgba(180, 240, 0, 0.2);
}

.doodle-leaderboard li.place-1 {
  border-left-color: #ffd84e;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 216, 78, 0.36), transparent 38%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.2), transparent 62%),
    linear-gradient(130deg, rgba(67, 54, 19, 0.95), rgba(30, 24, 11, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 249, 220, 0.28),
    0 4px 0 rgba(17, 17, 17, 0.88);
}

.doodle-leaderboard li.place-1::after {
  content: none;
}

.doodle-leaderboard li.place-2 {
  border-left-color: #9ed8ff;
  background:
    radial-gradient(circle at 12% 50%, rgba(158, 216, 255, 0.28), transparent 38%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 62%),
    linear-gradient(130deg, rgba(22, 38, 56, 0.95), rgba(10, 20, 31, 0.95));
  box-shadow:
    inset 0 0 0 1px rgba(220, 243, 255, 0.2),
    0 4px 0 rgba(17, 17, 17, 0.88),
    0 0 14px rgba(158, 216, 255, 0.35);
}

.doodle-leaderboard li.place-2::after {
  content: none;
}

.doodle-leaderboard li.place-3 {
  border-left-color: #ff89b3;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 137, 179, 0.24), transparent 38%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.16), transparent 62%),
    linear-gradient(130deg, rgba(59, 21, 40, 0.95), rgba(30, 12, 21, 0.95));
  box-shadow:
    inset 0 0 0 1px rgba(255, 212, 231, 0.2),
    0 4px 0 rgba(17, 17, 17, 0.88),
    0 0 14px rgba(255, 137, 179, 0.3);
}

.doodle-leaderboard li.place-3::after {
  content: none;
}

.doodle-leaderboard li.place-1 .rank {
  color: #1c1300;
  border-color: rgba(255, 216, 78, 0.8);
  background: linear-gradient(145deg, #ffe487, #f7be2f);
}

.doodle-leaderboard li.place-2 .rank {
  color: #0c1d2e;
  border-color: rgba(158, 216, 255, 0.76);
  background: linear-gradient(145deg, #d4eeff, #8cc2ef);
}

.doodle-leaderboard li.place-3 .rank {
  color: #2a0b19;
  border-color: rgba(255, 137, 179, 0.74);
  background: linear-gradient(145deg, #ffc2d9, #ff84b1);
}

.doodle-leaderboard li.is-active-player {
  border-color: rgba(180, 240, 0, 0.76);
  border-left-color: #dbff61;
  box-shadow:
    inset 0 0 0 1px rgba(221, 255, 110, 0.24),
    0 4px 0 rgba(17, 17, 17, 0.88),
    0 0 14px rgba(180, 240, 0, 0.34);
}

.doodle-leaderboard li.is-active-player .name {
  color: #f4ffd0;
}

.doodle-leaderboard li.is-active-player .score {
  color: #f0ff92;
}

.doodle-leaderboard::-webkit-scrollbar {
  width: 9px;
}

.doodle-leaderboard::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(6, 8, 12, 0.74);
}

.doodle-leaderboard::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid rgba(8, 10, 14, 0.82);
  background: linear-gradient(180deg, #b4f000, #6c2bd9);
}

@keyframes doodleRankOnePulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 249, 220, 0.28),
      0 4px 0 rgba(17, 17, 17, 0.88),
      0 0 20px rgba(255, 216, 78, 0.42);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 249, 220, 0.4),
      0 4px 0 rgba(17, 17, 17, 0.88),
      0 0 30px rgba(255, 216, 78, 0.66);
  }
}

.doodle-board {
  position: relative;
  width: min(100%, 470px);
  margin-inline: auto;
  border: 5px solid rgba(14, 14, 15, 0.99);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(149, 169, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 18%, rgba(180, 240, 0, 0.12), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(255, 46, 99, 0.16), transparent 46%),
    linear-gradient(165deg, #090b13, #12172a 56%, #191429);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 0 5px rgba(6, 8, 12, 0.44),
    0 10px 0 rgba(17, 17, 17, 0.95),
    0 18px 30px rgba(0, 0, 0, 0.44),
    0 0 30px rgba(180, 240, 0, 0.24),
    0 0 44px rgba(108, 43, 217, 0.32);
  transition: box-shadow 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.doodle-board:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 0 0 5px rgba(6, 8, 12, 0.44),
    0 11px 0 rgba(17, 17, 17, 0.95),
    0 20px 34px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(180, 240, 0, 0.28),
    0 0 52px rgba(108, 43, 217, 0.36);
}

.doodle-board.has-record-popup {
  border-color: rgba(196, 240, 90, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(236, 246, 255, 0.2),
    inset 0 0 0 5px rgba(6, 8, 12, 0.48),
    0 12px 0 rgba(17, 17, 17, 0.95),
    0 22px 36px rgba(0, 0, 0, 0.52),
    0 0 44px rgba(180, 240, 0, 0.42),
    0 0 62px rgba(108, 43, 217, 0.42);
}

.doodle-board::before {
  content: "INSERT COIN // OCTO RUN";
  position: absolute;
  left: 50%;
  top: 0.52rem;
  transform: translateX(-50%);
  max-width: calc(100% - 1rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 3;
  border: 2px solid rgba(17, 17, 17, 0.95);
  border-radius: 8px;
  padding: 0.2rem 0.46rem 0.24rem;
  background:
    linear-gradient(145deg, rgba(25, 29, 45, 0.96), rgba(10, 12, 20, 0.98));
  color: #ecffc2;
  font-family: var(--pixel-font);
  font-size: clamp(0.34rem, 0.45vw, 0.48rem);
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow:
    0 3px 0 rgba(17, 17, 17, 0.95),
    inset 0 0 0 1px rgba(180, 240, 0, 0.32),
    0 0 16px rgba(180, 240, 0, 0.34);
  text-transform: uppercase;
}

.doodle-board::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(5, 7, 12, 0.06), rgba(4, 6, 10, 0.32) 94%),
    radial-gradient(circle at 8% 10%, rgba(180, 240, 0, 0.2), transparent 22%),
    radial-gradient(circle at 92% 88%, rgba(255, 46, 99, 0.18), transparent 26%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      rgba(0, 0, 0, 0.05) 1px,
      rgba(0, 0, 0, 0.05) 3px
    ),
    linear-gradient(
      108deg,
      transparent 0 34%,
      rgba(255, 255, 255, 0.05) 45%,
      transparent 56%
    );
  mix-blend-mode: screen;
  opacity: 0.32;
  animation: doodleCrtSweep 4.8s linear infinite;
}

#doodleCanvas {
  width: 100%;
  aspect-ratio: 9 / 14;
  height: auto;
  display: block;
  touch-action: none;
  filter: saturate(1.2) contrast(1.1) brightness(1.03);
  transition: filter 220ms ease;
}

.doodle-board.has-record-popup #doodleCanvas {
  filter: saturate(1.04) contrast(0.94) brightness(0.58) blur(1px);
}

.doodle-board.has-record-popup .doodle-overlay {
  opacity: 0.2;
}

.doodle-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 0.42rem;
  padding: clamp(0.8rem, 1.6vw, 1.1rem);
  text-align: center;
  background:
    linear-gradient(to top, rgba(8, 8, 14, 0.86), rgba(8, 8, 14, 0.12) 46%, rgba(8, 8, 14, 0));
  transition: opacity 180ms ease;
  pointer-events: none;
}

.doodle-overlay strong {
  font-family: var(--pixel-font);
  font-size: clamp(0.66rem, 0.9vw, 0.8rem);
  letter-spacing: 0.07em;
  color: #dbff61;
  text-shadow: 0 0 10px rgba(180, 240, 0, 0.48);
}

.doodle-overlay p {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(0.78rem, 0.86vw, 0.92rem);
  line-height: 1.32;
  color: rgba(242, 246, 255, 0.92);
}

.doodle-overlay.is-hidden {
  opacity: 0;
}

.doodle-panel {
  display: flex;
  flex-direction: column;
  gap: 0.78rem;
}

.doodle-status {
  margin: 0;
  border: 2px solid rgba(17, 17, 17, 0.94);
  border-radius: 12px;
  padding: 0.4rem 0.52rem;
  background:
    linear-gradient(145deg, rgba(33, 39, 58, 0.92), rgba(10, 13, 20, 0.94));
  font-family: var(--graffiti-font);
  font-size: clamp(1.12rem, 1.3vw, 1.46rem);
  color: #e5ff88;
  line-height: 1.1;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
  text-shadow:
    0 2px 0 #111111,
    0 0 10px rgba(180, 240, 0, 0.52),
    0 0 20px rgba(180, 240, 0, 0.28);
  box-shadow:
    0 4px 0 rgba(17, 17, 17, 0.88),
    inset 0 0 0 1px rgba(180, 240, 0, 0.16);
  animation: doodleStatusPulse 2.4s ease-in-out infinite;
}

.doodle-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

.doodle-stats p {
  margin: 0;
  border: 2px solid rgba(17, 17, 17, 0.92);
  border-radius: 10px;
  padding: 0.58rem 0.64rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.16rem;
  font-family: var(--pixel-font);
  font-size: clamp(0.62rem, 0.74vw, 0.74rem);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(27, 33, 50, 0.96) 0,
      rgba(27, 33, 50, 0.96) 8px,
      rgba(19, 24, 36, 0.96) 8px,
      rgba(19, 24, 36, 0.96) 16px
    ),
    linear-gradient(145deg, rgba(30, 35, 52, 0.96), rgba(9, 12, 18, 0.95));
  box-shadow:
    0 4px 0 rgba(17, 17, 17, 0.88),
    inset 0 0 0 1px rgba(180, 240, 0, 0.16),
    0 0 12px rgba(108, 43, 217, 0.22);
}

.doodle-stats strong {
  font-size: clamp(0.9rem, 1.08vw, 1.12rem);
  font-family: var(--display-font);
  letter-spacing: 0.03em;
  color: #f2ffab;
  text-shadow: 0 0 8px rgba(180, 240, 0, 0.42);
}

.doodle-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.doodle-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0.56rem 0.52rem 0.62rem;
  background: linear-gradient(180deg, #efffa1 0%, #ccf042 44%, #89b814 100%);
  color: var(--ink);
  font-family: var(--pixel-font);
  font-size: clamp(0.56rem, 0.66vw, 0.68rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 6px 0 #182107,
    0 10px 16px rgba(0, 0, 0, 0.3),
    0 0 18px rgba(180, 240, 0, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.56),
    inset 0 -3px 0 rgba(59, 84, 10, 0.44);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.doodle-btn.ghost {
  background: linear-gradient(180deg, #ffbfdd 0%, #ff7ab1 44%, #b33267 100%);
  color: #ffe3ef;
  box-shadow:
    0 6px 0 #3e1230,
    0 10px 16px rgba(0, 0, 0, 0.3),
    0 0 18px rgba(255, 46, 99, 0.42),
    inset 0 2px 0 rgba(255, 231, 242, 0.5),
    inset 0 -3px 0 rgba(115, 24, 59, 0.46);
}

.doodle-btn::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0.14rem;
  height: 40%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.doodle-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 0 #182107,
    0 12px 22px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(180, 240, 0, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.6),
    inset 0 -3px 0 rgba(59, 84, 10, 0.46);
}

.doodle-btn.ghost:hover {
  box-shadow:
    0 8px 0 #3e1230,
    0 12px 22px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(255, 46, 99, 0.62),
    inset 0 2px 0 rgba(255, 231, 242, 0.54),
    inset 0 -3px 0 rgba(115, 24, 59, 0.5);
}

.doodle-btn:active {
  transform: translateY(2px);
  box-shadow:
    0 3px 0 #182107,
    0 6px 12px rgba(0, 0, 0, 0.24),
    0 0 14px rgba(180, 240, 0, 0.34);
}

.doodle-btn.ghost:active {
  box-shadow:
    0 3px 0 #3e1230,
    0 6px 12px rgba(0, 0, 0, 0.24),
    0 0 14px rgba(255, 46, 99, 0.4);
}

.doodle-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.doodle-hint {
  margin: 0;
  font-size: clamp(0.78rem, 0.88vw, 0.92rem);
  line-height: 1.3;
  color: rgba(235, 241, 252, 0.9);
  border: 1px dashed rgba(180, 240, 0, 0.42);
  border-radius: 10px;
  padding: 0.5rem 0.54rem;
  background:
    linear-gradient(145deg, rgba(15, 18, 28, 0.7), rgba(6, 8, 14, 0.6));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.doodle-share-panel {
  position: absolute;
  left: 50%;
  top: 45.5%;
  z-index: 6;
  width: min(92%, 344px);
  max-height: calc(100% - 1.1rem);
  overflow: auto;
  border: 2px solid rgba(180, 240, 0, 0.42);
  border-radius: 12px;
  padding: 0.62rem;
  padding-top: 0.82rem;
  display: grid;
  gap: 0.48rem;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), transparent 64%),
    linear-gradient(130deg, rgba(14, 17, 27, 0.9), rgba(7, 9, 15, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 5px 0 rgba(17, 17, 17, 0.85),
    0 14px 28px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(108, 43, 217, 0.26);
  backdrop-filter: blur(10px) saturate(1.1);
  transform: translate(-50%, -50%) scale(0.92);
  transform-origin: center;
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms ease, opacity 240ms ease;
}

.doodle-record-popup.is-open {
  transform: translate(-50%, -53%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.doodle-record-popup[hidden] {
  display: none !important;
}

.doodle-share-panel::-webkit-scrollbar {
  width: 8px;
}

.doodle-share-panel::-webkit-scrollbar-track {
  background: rgba(8, 10, 16, 0.7);
  border-radius: 999px;
}

.doodle-share-panel::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(180, 240, 0, 0.86), rgba(255, 46, 99, 0.82));
  border: 1px solid rgba(8, 10, 14, 0.86);
  border-radius: 999px;
}

.doodle-share-close {
  position: absolute;
  top: 0.34rem;
  right: 0.34rem;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(17, 17, 17, 0.92);
  border-radius: 8px;
  padding: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ffd3e5, #ff80b4);
  color: #2f0e1f;
  font-size: 1rem;
  line-height: 1;
  box-shadow:
    0 2px 0 rgba(17, 17, 17, 0.84),
    0 0 12px rgba(255, 46, 99, 0.3);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.doodle-share-close:hover {
  transform: translateY(-1px);
  box-shadow:
    0 3px 0 rgba(17, 17, 17, 0.84),
    0 0 14px rgba(255, 46, 99, 0.4);
}

.doodle-share-close:active {
  transform: translateY(1px);
}

.doodle-share-close:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 1px;
}

.doodle-share-title {
  margin: 0;
  justify-self: center;
  font-family: var(--pixel-font);
  font-size: clamp(0.56rem, 0.62vw, 0.68rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.06;
  background: linear-gradient(180deg, #fff8d6 0%, #ffb8d8 52%, #deff73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow:
    0 0 8px rgba(255, 130, 186, 0.45),
    0 0 16px rgba(180, 240, 0, 0.28);
}

.doodle-share-subtitle {
  margin: -0.05rem 0 0;
  font-size: clamp(0.68rem, 0.78vw, 0.8rem);
  line-height: 1.28;
  text-align: center;
  color: rgba(225, 236, 255, 0.86);
}

.doodle-share-score {
  margin: 0;
  justify-self: center;
  border: 2px solid rgba(17, 17, 17, 0.92);
  border-radius: 10px;
  padding: 0.2rem 0.5rem 0.22rem;
  background:
    linear-gradient(145deg, rgba(180, 240, 0, 0.9), rgba(230, 255, 130, 0.84));
  color: #111111;
  font-family: var(--pixel-font);
  font-size: clamp(0.48rem, 0.54vw, 0.58rem);
  letter-spacing: 0.05em;
  box-shadow: 0 3px 0 rgba(17, 17, 17, 0.88);
}

.doodle-share-preview-frame {
  --share-preview-image: none;
  border: 2px solid rgba(17, 17, 17, 0.92);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 5 / 3;
  position: relative;
  background-image:
    var(--share-preview-image),
    linear-gradient(155deg, rgba(180, 240, 0, 0.16), rgba(255, 46, 99, 0.2)),
    linear-gradient(140deg, rgba(20, 24, 38, 0.95), rgba(7, 9, 14, 0.98));
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, cover, cover;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 4px 0 rgba(17, 17, 17, 0.9);
}

.doodle-share-preview {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  filter: saturate(1.08) contrast(1.02);
}

.doodle-share-preview:not([src]),
.doodle-share-preview[src=""] {
  opacity: 0;
}

.doodle-share-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.32rem;
}

.doodle-share-btn {
  min-height: 1.98rem;
  padding: 0.42rem 0.32rem 0.44rem;
  font-size: clamp(0.46rem, 0.56vw, 0.58rem);
  line-height: 1.24;
  letter-spacing: 0.065em;
  text-align: center;
}

.doodle-share-btn.doodle-share-btn-x {
  background: linear-gradient(180deg, #d7d8ff 0%, #9ca8ff 44%, #4355bf 100%);
  color: #f8f9ff;
  box-shadow:
    0 6px 0 #1a235c,
    0 10px 16px rgba(0, 0, 0, 0.3),
    0 0 18px rgba(108, 126, 255, 0.38),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset 0 -3px 0 rgba(49, 63, 151, 0.46);
}

.doodle-share-btn.doodle-share-btn-x:hover {
  box-shadow:
    0 8px 0 #1a235c,
    0 12px 22px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(108, 126, 255, 0.52),
    inset 0 2px 0 rgba(255, 255, 255, 0.54),
    inset 0 -3px 0 rgba(49, 63, 151, 0.5);
}

.doodle-share-btn.doodle-share-btn-x:active {
  box-shadow:
    0 3px 0 #1a235c,
    0 6px 12px rgba(0, 0, 0, 0.24),
    0 0 14px rgba(108, 126, 255, 0.34);
}

.doodle-share-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow:
    0 3px 0 rgba(17, 17, 17, 0.74),
    0 5px 10px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.doodle-share-status {
  margin: 0;
  font-family: var(--pixel-font);
  font-size: clamp(0.36rem, 0.44vw, 0.44rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.28;
  color: rgba(202, 216, 240, 0.78);
}

.doodle-share-status[data-state="loading"] {
  color: #c8ddff;
}

.doodle-share-status[data-state="success"] {
  color: #ebff93;
}

.doodle-share-status[data-state="error"] {
  color: #ffb6cf;
}

@keyframes doodleCabinetGlow {
  0%,
  100% {
    box-shadow:
      0 16px 0 rgba(11, 11, 12, 0.98),
      0 24px 48px rgba(0, 0, 0, 0.5),
      0 0 56px rgba(108, 43, 217, 0.5),
      inset 0 0 0 2px rgba(180, 240, 0, 0.24),
      inset 0 -14px 30px rgba(255, 46, 99, 0.18),
      inset 0 12px 20px rgba(255, 255, 255, 0.08);
  }
  50% {
    box-shadow:
      0 16px 0 rgba(11, 11, 12, 0.98),
      0 24px 48px rgba(0, 0, 0, 0.5),
      0 0 66px rgba(108, 43, 217, 0.62),
      inset 0 0 0 2px rgba(180, 240, 0, 0.3),
      inset 0 -14px 30px rgba(255, 46, 99, 0.22),
      inset 0 12px 20px rgba(255, 255, 255, 0.1);
  }
}

@keyframes doodleMarqueePulse {
  0%,
  100% {
    filter: brightness(0.94) saturate(0.98);
  }
  50% {
    filter: brightness(1.08) saturate(1.1);
  }
}

@keyframes doodleCrtSweep {
  0%,
  100% {
    opacity: 0.24;
    transform: translateY(0);
  }
  50% {
    opacity: 0.4;
    transform: translateY(1px);
  }
  75% {
    opacity: 0.32;
    transform: translateY(-1px);
  }
}

@keyframes doodleStatusPulse {
  0%,
  100% {
    filter: saturate(1) brightness(1);
  }
  50% {
    filter: saturate(1.14) brightness(1.1);
  }
}

.why {
  display: block;
  padding: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(180, 240, 0, 0.24), transparent 32%),
    radial-gradient(circle at 84% 78%, rgba(255, 46, 99, 0.22), transparent 38%),
    linear-gradient(165deg, #0f0f12 0%, #120f1b 52%, #0b0a14 100%);
}

.why-city-stage {
  --why-bg: url("./images/bg/bg-4.webp");
  --story-comic-ink: #0f1117;
  --story-nav-prev-a: #9bf5ff;
  --story-nav-prev-b: #61e3ff;
  --story-nav-prev-c: #43c6e4;
  --story-nav-next-a: #d2ff5f;
  --story-nav-next-b: #9cf200;
  --story-nav-next-c: #63c800;
  --story-nav-prev-glow: rgba(97, 227, 255, 0.4);
  --story-nav-next-glow: rgba(180, 240, 0, 0.42);
  --story-nav-prev-fg: #10141a;
  --story-nav-next-fg: #10141a;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(180, 240, 0, 0.14), transparent 58%),
    radial-gradient(circle at 50% 104%, rgba(255, 46, 99, 0.2), transparent 46%),
    linear-gradient(170deg, rgba(4, 5, 8, 0.7), rgba(5, 6, 10, 0.84)),
    var(--why-bg) center 84% / cover no-repeat;
  box-shadow:
    0 0 0 2px rgba(180, 240, 0, 0.26) inset,
    0 -24px 40px rgba(0, 0, 0, 0.42) inset,
    0 22px 42px rgba(0, 0, 0, 0.36) inset,
    0 0 48px rgba(108, 43, 217, 0.32);
  outline: none;
}

.why-city-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(4, 4, 7, 0.9) 0%, rgba(4, 4, 7, 0.4) 34%, rgba(4, 4, 7, 0.15) 60%, rgba(5, 5, 8, 0.86) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 11px
    );
}

.why-city-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 7;
  background:
    radial-gradient(circle at 22% 74%, rgba(180, 240, 0, 0.14), transparent 26%),
    radial-gradient(circle at 82% 25%, rgba(255, 46, 99, 0.2), transparent 28%),
    radial-gradient(circle at 68% 40%, rgba(108, 43, 217, 0.24), transparent 30%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.why-city-layers {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.why-scene-dim {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(4, 5, 8, 0.34) 0%, rgba(4, 5, 8, 0.2) 36%, rgba(4, 5, 8, 0.08) 62%, rgba(4, 5, 8, 0.26) 100%),
    radial-gradient(circle at 50% 62%, rgba(5, 6, 10, 0.14), rgba(5, 6, 10, 0.28));
}

.why-city-layer {
  position: absolute;
  left: 0;
  right: 0;
  background-repeat: repeat-x;
  background-size: auto 100%;
  will-change: background-position;
}

.why-city-layer-back {
  left: 0;
  right: 0;
  top: 0;
  height: 62%;
  opacity: 0.76;
  background-image:
    linear-gradient(to top, rgba(8, 10, 16, 0.88), rgba(8, 10, 16, 0.2)),
    url("./images/bg/bg-4.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 84%;
  filter: saturate(1.04) contrast(1.03);
}

.why-city-layer-mid {
  --loop-step: 1536px;
  top: calc(2% + 50px);
  height: 72%;
  opacity: 1;
  background-image: url("./images/builds/builds.webp");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 100%;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.44));
}

.why-city-layer-front {
  --loop-step: 1502px;
  bottom: -70px;
  height: 36%;
  opacity: 0.98;
  background-image: url("./images/builds/road.webp");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 100%;
}

.why-city-tag {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  font-family: var(--tag-font);
  font-size: clamp(0.9rem, 2.2vw, 1.9rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.08em 0.38em 0.15em;
  border: 2px solid rgba(10, 10, 14, 0.94);
  border-radius: 10px;
  color: rgba(12, 12, 15, 0.94);
  background: linear-gradient(145deg, rgba(180, 240, 0, 0.9), rgba(241, 255, 134, 0.78));
  box-shadow:
    0 6px 0 rgba(10, 10, 14, 0.92),
    0 0 20px rgba(180, 240, 0, 0.3);
  text-shadow:
    0 0 8px rgba(226, 255, 130, 0.56),
    0 0 16px rgba(180, 240, 0, 0.42);
  mix-blend-mode: screen;
  transform-origin: center;
  animation: whyTagPulse 3.8s ease-in-out infinite;
}

.why-city-tag-a {
  top: 12%;
  left: 6%;
  transform: rotate(-8deg);
}

.why-city-tag-b {
  top: 20%;
  right: 7%;
  transform: rotate(7deg);
  background: linear-gradient(145deg, rgba(255, 46, 99, 0.92), rgba(255, 130, 167, 0.8));
  color: rgba(16, 7, 14, 0.94);
  box-shadow:
    0 6px 0 rgba(10, 10, 14, 0.92),
    0 0 20px rgba(255, 46, 99, 0.34);
  animation-delay: -1.4s;
}

.why-city-tag-c {
  bottom: 34%;
  left: 12%;
  transform: rotate(5deg);
  background: linear-gradient(145deg, rgba(108, 43, 217, 0.9), rgba(170, 112, 255, 0.78));
  color: rgba(241, 241, 255, 0.95);
  box-shadow:
    0 6px 0 rgba(10, 10, 14, 0.92),
    0 0 18px rgba(108, 43, 217, 0.42);
  animation-delay: -0.8s;
}

.why-slide-stack {
  position: absolute;
  left: 50%;
  top: clamp(30%, 34vh, 42%);
  width: min(720px, 72%);
  min-height: clamp(214px, 30vh, 308px);
  transform: translate(-50%, -50%);
  z-index: 6;
  pointer-events: none;
}

.why-slide-stack.why-chart-stack {
  top: clamp(32%, 36vh, 44%);
  width: min(1040px, 88%);
  min-height: clamp(440px, 64vh, 760px);
  pointer-events: auto;
}

.why-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 0.56rem;
  padding: clamp(0.86rem, 1.9vw, 1.34rem);
  border: 2px solid rgba(13, 13, 18, 0.96);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(180, 240, 0, 0.24), rgba(180, 240, 0, 0) 34%),
    linear-gradient(158deg, rgba(255, 46, 99, 0.24), rgba(255, 46, 99, 0) 52%),
    linear-gradient(180deg, rgba(9, 10, 16, 0.96), rgba(9, 10, 16, 0.84));
  box-shadow:
    0 0 0 2px rgba(180, 240, 0, 0.2) inset,
    0 12px 26px rgba(0, 0, 0, 0.42),
    0 0 20px rgba(108, 43, 217, 0.3);
  transform: translateY(44px) scale(0.9);
  opacity: 0;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease, filter 320ms ease;
}

.why-slide.why-chart-card {
  display: flex;
  flex-direction: column;
  gap: clamp(0.68rem, 1.8vw, 1.06rem);
  padding: clamp(0.86rem, 2.2vw, 1.34rem);
  border: 4px solid rgba(6, 6, 10, 0.98);
  border-radius: 30px 18px 34px 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 14%, rgba(180, 240, 0, 0.28), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(255, 46, 99, 0.28), transparent 30%),
    radial-gradient(circle at 68% 82%, rgba(108, 43, 217, 0.3), transparent 36%),
    linear-gradient(164deg, rgba(12, 13, 20, 0.98), rgba(7, 8, 14, 0.96));
  box-shadow:
    0 0 0 2px rgba(180, 240, 0, 0.22) inset,
    0 16px 34px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(108, 43, 217, 0.34);
  align-content: stretch;
  pointer-events: auto;
}

.why-slide.why-chart-card::before {
  inset: 0.52rem;
  border-radius: 18px 28px 14px 24px;
  border: 2px solid rgba(241, 248, 255, 0.28);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px) 0 0 / 16px 16px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%);
  opacity: 0.7;
}

.why-slide.why-chart-card::after {
  content: "$OCTO LIVE";
  position: absolute;
  right: clamp(0.88rem, 1.9vw, 1.24rem);
  bottom: clamp(0.64rem, 1.4vh, 1rem);
  z-index: 4;
  padding: 0.2rem 0.54rem 0.26rem;
  border: 2px solid rgba(10, 10, 14, 0.94);
  border-radius: 8px;
  font-family: var(--pixel-font);
  font-size: clamp(0.34rem, 0.6vw, 0.46rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(12, 12, 15, 0.96);
  background: linear-gradient(145deg, rgba(180, 240, 0, 0.96), rgba(238, 255, 126, 0.92));
  box-shadow: 0 3px 0 rgba(10, 10, 14, 0.94), 0 0 14px rgba(180, 240, 0, 0.24);
  transform: rotate(-5deg);
}

.why-chart-head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.72rem;
  margin: 0 0 clamp(0.12rem, 0.34vh, 0.22rem);
  padding: clamp(0.34rem, 0.9vw, 0.62rem);
  border: 2px solid rgba(9, 10, 15, 0.96);
  border-radius: 14px;
  background:
    linear-gradient(130deg, rgba(255, 46, 99, 0.2), rgba(255, 46, 99, 0) 32%),
    linear-gradient(220deg, rgba(180, 240, 0, 0.2), rgba(180, 240, 0, 0) 34%),
    linear-gradient(155deg, rgba(9, 11, 18, 0.95), rgba(8, 9, 14, 0.92));
  box-shadow:
    0 0 0 2px rgba(180, 240, 0, 0.14) inset,
    0 6px 12px rgba(0, 0, 0, 0.34);
}

.why-slide .why-chart-title {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1rem, 2vw, 1.6rem);
  line-height: 0.92;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(228, 255, 120, 0.98);
  padding: 0.28rem 0.7rem 0.34rem;
  border: 2px solid rgba(10, 10, 14, 0.95);
  border-radius: 10px 8px 12px 8px;
  background: linear-gradient(145deg, rgba(255, 46, 99, 0.92), rgba(182, 29, 87, 0.86));
  text-shadow:
    0 2px 0 rgba(9, 10, 15, 0.96),
    0 0 14px rgba(180, 240, 0, 0.34),
    0 0 28px rgba(180, 240, 0, 0.2);
  box-shadow:
    0 4px 0 rgba(10, 10, 14, 0.94),
    0 0 0 1px rgba(255, 46, 99, 0.34) inset;
}

.why-chart-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.32rem, 0.8vw, 0.58rem);
  flex-wrap: wrap;
}

.why-chart-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  min-height: 32px;
  padding: 0.18rem 0.52rem 0.22rem;
  border: 2px solid rgba(10, 10, 14, 0.94);
  border-radius: 999px;
  font-family: var(--pixel-font);
  font-size: clamp(0.34rem, 0.56vw, 0.44rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 11, 14, 0.97);
  background: linear-gradient(145deg, rgba(180, 240, 0, 0.96), rgba(226, 255, 118, 0.9));
  box-shadow:
    0 3px 0 rgba(10, 10, 14, 0.94),
    0 0 14px rgba(180, 240, 0, 0.3);
}

.why-chart-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(255, 62, 132, 0.88));
  box-shadow: 0 0 0 4px rgba(255, 46, 99, 0.22), 0 0 10px rgba(255, 46, 99, 0.6);
  animation: whyChartLivePulse 1.2s ease-in-out infinite;
}

.why-slide .why-chart-open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.3rem 0.72rem 0.36rem;
  border: 2px solid rgba(11, 11, 16, 0.95);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(141, 255, 239, 0.94), rgba(87, 230, 255, 0.9));
  color: rgba(11, 11, 14, 0.96);
  font-family: var(--pixel-font);
  font-size: clamp(0.38rem, 0.66vw, 0.52rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 4px 0 rgba(11, 11, 16, 0.95),
    0 0 14px rgba(93, 241, 255, 0.36);
  transition: transform 180ms ease, filter 180ms ease;
  white-space: nowrap;
}

.why-slide .why-chart-open-link:hover {
  transform: translateY(-2px);
  filter: saturate(1.1) brightness(1.06);
}

.why-slide .why-chart-open-link:focus-visible {
  outline: 2px solid rgba(93, 241, 255, 0.92);
  outline-offset: 2px;
}

.why-chart-embed {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  min-height: 0;
  border: 3px solid rgba(10, 11, 18, 0.98);
  border-radius: 18px;
  background: rgba(7, 8, 14, 0.95);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.46),
    0 0 0 2px rgba(93, 241, 255, 0.2) inset,
    0 0 0 1px rgba(180, 240, 0, 0.22),
    0 0 26px rgba(93, 241, 255, 0.18);
  transform: none;
}

.why-corner-links {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.why-corner-link {
  position: absolute;
  width: clamp(156px, 18vw, 219px);
  pointer-events: auto;
  transition: transform 180ms ease, filter 180ms ease;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.46));
}

.why-corner-link img {
  display: block;
  width: 100%;
  height: auto;
}

.why-corner-link:hover {
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.54));
}

.why-corner-link:focus-visible {
  outline: 2px solid rgba(180, 240, 0, 0.88);
  outline-offset: 4px;
}

.why-corner-link-pump {
  left: 4%;
  bottom: clamp(72px, 10.6vh, 132px);
  transform: rotate(-13deg) scale(1.22);
}

.why-corner-link-dex {
  left: 50%;
  right: auto;
  bottom: clamp(14px, 2.4vh, 30px);
  transform: translateX(-50%) rotate(0deg);
}

.why-corner-link-twitter {
  right: 4%;
  bottom: clamp(72px, 10.6vh, 132px);
  transform: rotate(13deg);
}

.why-corner-link-pump:hover,
.why-corner-link-pump:focus-visible {
  transform: rotate(-13deg) translateY(-6px) scale(1.28);
}

.why-corner-link-dex:hover,
.why-corner-link-dex:focus-visible {
  transform: translateX(-50%) rotate(0deg) translateY(-6px) scale(1.04);
}

.why-corner-link-twitter:hover,
.why-corner-link-twitter:focus-visible {
  transform: rotate(13deg) translateY(-6px) scale(1.04);
}

.why-octo-sign {
  position: absolute;
  right: clamp(0.52rem, 1.6vw, 1.4rem);
  top: clamp(32%, 38vh, 44%);
  z-index: 9;
  pointer-events: none;
  transform: translateY(-50%) rotate(7deg);
}

.why-octo-sign::before {
  content: "";
  position: absolute;
  inset: -12px -16px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 20% 50%, rgba(180, 240, 0, 0.22), rgba(180, 240, 0, 0) 66%),
    radial-gradient(circle at 82% 50%, rgba(93, 241, 255, 0.24), rgba(93, 241, 255, 0) 66%);
  filter: blur(2px);
  opacity: 0.82;
}

.why-octo-sign-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.24rem 0.66rem 0.3rem;
  border: 2px solid rgba(7, 8, 12, 0.95);
  border-radius: 11px;
  font-family: var(--display-font);
  font-size: clamp(0.92rem, 1.7vw, 1.38rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(227, 255, 123, 0.98);
  background:
    linear-gradient(145deg, rgba(255, 46, 99, 0.88), rgba(142, 18, 108, 0.84)),
    repeating-linear-gradient(
      -18deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 3px,
      transparent 3px,
      transparent 11px
    );
  text-shadow:
    0 0 8px rgba(227, 255, 123, 0.86),
    0 0 16px rgba(227, 255, 123, 0.38);
  box-shadow:
    0 4px 0 rgba(7, 8, 12, 0.95),
    0 0 18px rgba(255, 46, 99, 0.34),
    0 0 28px rgba(93, 241, 255, 0.24);
  animation: whyOctoSignFlicker 2.8s steps(2, end) infinite;
}

@keyframes whyChartLivePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}

@keyframes whyOctoSignFlicker {
  0%,
  14%,
  18%,
  22%,
  66%,
  100% {
    opacity: 1;
    filter: brightness(1) saturate(1);
  }
  15%,
  19%,
  62% {
    opacity: 0.58;
    filter: brightness(0.86) saturate(0.88);
  }
  63% {
    opacity: 0.82;
    filter: brightness(0.92) saturate(0.95);
  }
}

.why-slide::before {
  content: "";
  position: absolute;
  inset: 0.38rem;
  border-radius: 16px;
  border: 1px dashed rgba(241, 248, 255, 0.24);
  pointer-events: none;
}

.why-slide.is-active {
  transform: translateY(0) scale(1);
  opacity: 1;
  filter: saturate(1.06);
}

.why-slide.is-before {
  transform: translateY(-48px) scale(0.9);
  opacity: 0;
}

.why-slide.is-after {
  transform: translateY(48px) scale(0.9);
  opacity: 0;
}

.why-slide-kicker {
  margin: 0;
  font-family: var(--pixel-font);
  font-size: clamp(0.5rem, 0.8vw, 0.62rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(190, 248, 80, 0.96);
}

.why-slide h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.28rem, 2.9vw, 2.7rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: rgba(245, 249, 255, 0.98);
  text-shadow:
    0 3px 0 rgba(11, 11, 16, 0.96),
    0 0 18px rgba(255, 46, 99, 0.24);
}

.why-slide p {
  margin: 0;
  font-size: clamp(0.88rem, 1.05vw, 1.08rem);
  line-height: 1.42;
  max-width: 56ch;
  color: rgba(236, 244, 255, 0.96);
}

.why-ride-hud {
  position: absolute;
  left: clamp(0.72rem, 1.8vw, 1.26rem);
  right: clamp(0.72rem, 1.8vw, 1.26rem);
  bottom: clamp(0.72rem, 1.8vh, 1.24rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.62rem;
  z-index: 9;
}

.why-trick-chip,
.why-progress {
  border: 2px solid rgba(11, 11, 16, 0.95);
  border-radius: 12px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.6rem 0.34rem;
  font-family: var(--pixel-font);
  font-size: clamp(0.42rem, 0.66vw, 0.56rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow:
    0 4px 0 rgba(11, 11, 16, 0.95),
    0 0 14px rgba(180, 240, 0, 0.24);
}

.why-trick-chip {
  background: linear-gradient(145deg, rgba(180, 240, 0, 0.96), rgba(223, 255, 106, 0.9));
  color: rgba(11, 11, 14, 0.96);
}

.why-progress {
  background: linear-gradient(145deg, rgba(255, 46, 99, 0.95), rgba(255, 124, 163, 0.88));
  color: rgba(255, 249, 252, 0.97);
}

.why-rider-lane {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(3.2rem, 8.2vh, 4.7rem);
  height: clamp(188px, 28vh, 286px);
  z-index: 8;
  pointer-events: none;
}

.why-rider-lane::before {
  content: none;
  display: none;
}

.why-rider {
  --rider-lane: 0%;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(220px, 28vw, 380px);
  transform: translateX(calc(-50% + var(--rider-lane))) scaleX(-1);
  transform-origin: 50% 88%;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  filter:
    drop-shadow(0 20px 16px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 24px rgba(180, 240, 0, 0.25));
}

.why-rider::before {
  content: "";
  position: absolute;
  left: 22%;
  right: 16%;
  bottom: 4%;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  transform: translateY(16px) scale(0.94);
  z-index: -1;
  animation: whyRiderShadowPulse 1.6s ease-in-out infinite;
}

.why-rider::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: 70px;
  height: 26px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 184, 44, 0.9), rgba(255, 184, 44, 0) 66%),
    radial-gradient(circle at 60% 45%, rgba(255, 86, 36, 0.8), rgba(255, 86, 36, 0) 72%);
  filter: blur(1px);
  opacity: 0.34;
}

.why-rider img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform-origin: 50% 82%;
  will-change: transform, filter;
}

.why-rider[data-trick="kickflip"] img {
  animation: whyKickflip 1.04s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.why-rider[data-trick="manual"] img {
  animation: whyManual 1.16s ease-in-out infinite;
}

.why-rider[data-trick="spin"] img {
  animation: whySpin 1.1s ease-in-out infinite;
}

.why-rider[data-trick="wallride"] img {
  animation: whyWallride 1.18s ease-in-out infinite;
}

.why-rider[data-trick="grind"] img {
  animation: whyGrind 0.9s linear infinite;
}

.why-rider[data-trick="grind"]::after {
  opacity: 0.72;
  animation: whyGrindSpark 0.42s linear infinite;
}

.why-controls {
  position: absolute;
  right: clamp(0.66rem, 1.4vw, 1rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.46rem;
  z-index: 9;
}

.why-nav {
  width: 44px;
  height: 40px;
}

.why-dots {
  position: absolute;
  left: clamp(0.66rem, 1.4vw, 1rem);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 0.42rem;
  z-index: 9;
}

.why-dot {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(11, 11, 16, 0.96);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 48%),
    linear-gradient(145deg, rgba(109, 77, 161, 0.9), rgba(45, 35, 68, 0.94));
  box-shadow:
    0 2px 0 rgba(11, 11, 16, 0.96),
    0 0 10px rgba(108, 43, 217, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.why-dot:hover {
  transform: scale(1.08);
  box-shadow:
    0 3px 0 rgba(11, 11, 16, 0.96),
    0 0 14px rgba(255, 46, 99, 0.38);
}

.why-dot.is-active {
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 48%),
    linear-gradient(145deg, rgba(180, 240, 0, 0.98), rgba(224, 255, 106, 0.92));
  transform: scale(1.12);
  box-shadow:
    0 3px 0 rgba(11, 11, 16, 0.96),
    0 0 16px rgba(180, 240, 0, 0.45);
}

.why-dot:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

@keyframes whyCityBackDrift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-72px);
  }
}

@keyframes whyCityMidDrift {
  0% {
    background-position: 0 0, 0 100%;
  }
  100% {
    background-position: 0 0, calc(var(--loop-step) * -1) 100%;
  }
}

@keyframes whyCityFrontDrift {
  0% {
    background-position: center center, center center, 0 100%;
  }
  100% {
    background-position: center center, center center, calc(var(--loop-step) * -1) 100%;
  }
}

@keyframes whyTagPulse {
  0%,
  100% {
    filter: saturate(1) brightness(1);
  }
  50% {
    filter: saturate(1.14) brightness(1.08);
  }
}

@keyframes whyRiderShadowPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(16px) scale(0.94);
  }
  50% {
    opacity: 0.72;
    transform: translateY(14px) scale(1.02);
  }
}

@keyframes whyKickflip {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  38% {
    transform: translateY(-16px) rotate(12deg) scale(1.02);
  }
  62% {
    transform: translateY(-14px) rotate(-12deg) scale(1.02);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes whyManual {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-10px) rotate(-7deg) scale(1.01);
  }
}

@keyframes whySpin {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-18px) rotate(180deg) scale(1.03);
  }
  100% {
    transform: translateY(0) rotate(360deg) scale(1);
  }
}

@keyframes whyWallride {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  35% {
    transform: translate(-16px, -14px) rotate(-18deg) scale(1.04);
  }
  70% {
    transform: translate(16px, -12px) rotate(14deg) scale(1.03);
  }
}

@keyframes whyGrind {
  0% {
    transform: translate(0, 0) rotate(-1deg) scale(1);
  }
  25% {
    transform: translate(3px, -4px) rotate(2deg) scale(1.01);
  }
  50% {
    transform: translate(-2px, -2px) rotate(-1deg) scale(1.01);
  }
  75% {
    transform: translate(2px, -3px) rotate(1deg) scale(1.01);
  }
  100% {
    transform: translate(0, 0) rotate(-1deg) scale(1);
  }
}

@keyframes whyGrindSpark {
  0%,
  100% {
    transform: scale(0.9) translateX(0);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.12) translateX(4px);
    opacity: 0.84;
  }
}

@keyframes joinFramePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 2px rgba(17, 17, 17, 0.88) inset,
      0 0 16px rgba(180, 240, 0, 0.3);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(17, 17, 17, 0.88) inset,
      0 0 24px rgba(255, 46, 99, 0.28);
  }
}

@keyframes joinStatusPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@media (max-width: 980px) {
  .why-city-stage {
    min-height: 100%;
    border-radius: 0;
  }

  .why-slide-stack {
    width: min(760px, 82%);
    min-height: clamp(196px, 27vh, 264px);
  }

  .why-slide-stack.why-chart-stack {
    width: min(1020px, 93%);
    min-height: clamp(390px, 58vh, 680px);
  }

  .why-slide {
    border-radius: 18px;
    padding: 0.72rem 0.78rem 0.82rem;
    gap: 0.4rem;
  }

  .why-slide.why-chart-card {
    gap: 0.52rem;
    padding: 0.68rem 0.72rem 0.78rem;
  }

  .why-chart-head {
    gap: 0.56rem;
    padding: 0.3rem 0.44rem;
  }

  .why-chart-actions {
    gap: 0.34rem;
  }

  .why-chart-live-pill {
    min-height: 30px;
  }

  .why-chart-embed {
    min-height: 0;
    height: auto;
    border-radius: 12px;
  }

  .why-octo-sign {
    right: 0.52rem;
    top: clamp(30%, 34vh, 40%);
  }

  .why-octo-sign-text {
    font-size: clamp(0.78rem, 1.5vw, 1.12rem);
    padding: 0.2rem 0.54rem 0.26rem;
  }

  .why-corner-link {
    width: clamp(132px, 19vw, 184px);
  }

  .why-corner-link-pump {
    left: 2%;
    bottom: clamp(62px, 9.2vh, 110px);
  }

  .why-corner-link-dex {
    left: 50%;
    right: auto;
    bottom: clamp(10px, 1.9vh, 20px);
  }

  .why-corner-link-twitter {
    right: 2%;
    bottom: clamp(62px, 9.2vh, 110px);
  }

  .why-slide::before {
    inset: 0.28rem;
    border-radius: 12px;
  }

  .why-slide h3 {
    font-size: clamp(1.08rem, 3.6vw, 2rem);
  }

  .why-slide p {
    font-size: clamp(0.78rem, 1.6vw, 0.94rem);
  }

  .why-city-tag {
    font-size: clamp(0.7rem, 1.6vw, 1rem);
    border-radius: 8px;
  }

  .why-rider-lane {
    bottom: clamp(2.8rem, 7vh, 3.8rem);
    height: clamp(170px, 24vh, 238px);
  }

  .why-rider {
    width: clamp(188px, 34vw, 320px);
  }

  .why-trick-chip,
  .why-progress {
    min-height: 34px;
    font-size: 0.42rem;
  }

  .why-dots {
    left: 0.54rem;
  }

  .why-controls {
    right: 0.54rem;
  }

  .why-nav {
    width: 40px;
    height: 34px;
    border-radius: 10px;
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  .why-city-stage {
    min-height: 100%;
    border-radius: 0;
  }

  .why-slide-stack {
    width: min(100%, calc(100% - 3.6rem));
    top: clamp(36%, 36vh, 43%);
    min-height: clamp(224px, 33vh, 318px);
  }

  .why-slide-stack.why-chart-stack {
    width: min(100%, calc(100% - 0.4rem));
    top: clamp(39%, 39vh, 46%);
    min-height: clamp(340px, 52vh, 560px);
  }

  .why-slide {
    padding: 0.68rem 0.7rem 0.74rem;
    border-radius: 16px;
  }

  .why-slide.why-chart-card {
    padding: 0.62rem 0.66rem 0.72rem;
  }

  .why-chart-head {
    gap: 0.42rem;
    padding: 0.28rem 0.36rem;
  }

  .why-chart-actions {
    width: 100%;
    justify-content: space-between;
  }

  .why-slide .why-chart-title {
    font-size: clamp(0.94rem, 4.8vw, 1.34rem);
  }

  .why-slide .why-chart-open-link {
    min-height: 30px;
    font-size: clamp(0.4rem, 1.6vw, 0.5rem);
    padding: 0.26rem 0.52rem 0.3rem;
  }

  .why-chart-live-pill {
    min-height: 28px;
    font-size: clamp(0.3rem, 1.35vw, 0.42rem);
    padding: 0.14rem 0.4rem 0.18rem;
  }

  .why-chart-embed {
    min-height: 0;
    height: auto;
    border-radius: 11px;
  }

  .why-octo-sign {
    right: 0.34rem;
    top: clamp(24%, 25vh, 30%);
    transform: rotate(6deg);
  }

  .why-octo-sign-text {
    font-size: clamp(0.66rem, 2.4vw, 0.92rem);
    padding: 0.16rem 0.42rem 0.2rem;
  }

  .why-corner-link {
    width: clamp(112px, 28vw, 160px);
  }

  .why-corner-link-pump {
    left: 1%;
    bottom: clamp(52px, 7.6vh, 88px);
  }

  .why-corner-link-dex {
    left: 50%;
    right: auto;
    bottom: clamp(8px, 1.4vh, 14px);
  }

  .why-corner-link-twitter {
    right: 1%;
    bottom: clamp(52px, 7.6vh, 88px);
  }

  .why-slide h3 {
    font-size: clamp(1rem, 7.2vw, 1.54rem);
    line-height: 0.98;
  }

  .why-slide p {
    font-size: clamp(0.76rem, 2.95vw, 0.92rem);
    line-height: 1.34;
  }

  .why-slide-kicker {
    font-size: clamp(0.44rem, 1.9vw, 0.52rem);
  }

  .why-city-tag-b,
  .why-city-tag-c {
    display: none;
  }

  .why-rider-lane {
    bottom: 3rem;
    height: clamp(152px, 21vh, 198px);
  }

  .why-rider {
    width: clamp(172px, 48vw, 262px);
  }

  .why-rider::after {
    width: 50px;
    height: 20px;
  }

  .why-ride-hud {
    bottom: 0.58rem;
    left: 0.52rem;
    right: 0.52rem;
  }

  .why-trick-chip,
  .why-progress {
    min-height: 30px;
    padding: 0.2rem 0.46rem 0.26rem;
    border-radius: 9px;
    font-size: 0.38rem;
  }

  .why-controls {
    top: auto;
    bottom: 4.1rem;
    transform: none;
  }

  .why-dots {
    top: auto;
    bottom: 4.2rem;
    transform: none;
  }

  .why-dot {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 520px) {
  .why-city-stage {
    min-height: 100%;
  }

  .why-slide-stack {
    width: min(100%, calc(100% - 2.9rem));
    top: clamp(34%, 34vh, 42%);
  }

  .why-slide-stack.why-chart-stack {
    width: min(100%, calc(100% - 0.2rem));
    top: clamp(40%, 40vh, 47%);
    min-height: clamp(320px, 48vh, 500px);
  }

  .why-slide.why-chart-card {
    padding: 0.56rem 0.56rem 0.62rem;
    border-radius: 13px;
  }

  .why-chart-head {
    flex-direction: column;
    align-items: stretch;
    gap: 0.34rem;
    padding: 0.24rem 0.3rem;
  }

  .why-chart-actions {
    width: 100%;
    justify-content: space-between;
  }

  .why-slide .why-chart-title {
    font-size: clamp(0.86rem, 5.3vw, 1.16rem);
  }

  .why-slide .why-chart-open-link {
    min-height: 28px;
  }

  .why-chart-live-pill {
    min-height: 26px;
    font-size: clamp(0.28rem, 1.55vw, 0.4rem);
    padding: 0.12rem 0.34rem 0.16rem;
  }

  .why-chart-embed {
    min-height: 0;
    height: auto;
    border-radius: 10px;
  }

  .why-octo-sign {
    right: 0.2rem;
    top: clamp(20%, 20vh, 24%);
    transform: rotate(5deg);
  }

  .why-octo-sign-text {
    font-size: clamp(0.58rem, 3vw, 0.8rem);
    padding: 0.12rem 0.34rem 0.16rem;
  }

  .why-corner-link {
    width: clamp(96px, 30vw, 132px);
  }

  .why-corner-link-pump {
    left: 0.16rem;
    bottom: clamp(44px, 6.4vh, 70px);
  }

  .why-corner-link-dex {
    left: 50%;
    right: auto;
    bottom: 0.22rem;
  }

  .why-corner-link-twitter {
    right: 0.16rem;
    bottom: clamp(44px, 6.4vh, 70px);
  }

  .why-city-tag-a {
    top: 7%;
    left: 7%;
  }

  .why-rider-lane {
    height: clamp(142px, 20vh, 178px);
  }

  .why-controls {
    right: 0.44rem;
  }

  .why-dots {
    left: 0.44rem;
  }
}

.join {
  display: grid;
  align-items: center;
  background:
    linear-gradient(132deg, rgba(7, 7, 8, 0.374) 6%, rgba(10, 10, 12, 0.35) 44%, rgba(20, 15, 27, 0.394) 100%),
    url("./images/bg/bg-stats.webp") center center / cover no-repeat,
    radial-gradient(circle at 16% 28%, rgba(108, 43, 217, 0.45), transparent 38%),
    radial-gradient(circle at 88% 18%, rgba(255, 46, 99, 0.35), transparent 33%);
}

.join::before {
  content: none;
  display: none;
}

.join-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.join-shape {
  position: absolute;
  display: block;
  width: clamp(120px, 14vw, 260px);
  height: auto;
  opacity: 0.5;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
  --join-shape-transform: none;
  transform: var(--join-shape-transform);
  transform-origin: center;
  animation: joinShapeFloat 8s ease-in-out infinite;
}

.join-shape-1 {
  top: 8%;
  left: 2%;
  width: clamp(150px, 16vw, 290px);
  --join-shape-transform: rotate(-11deg);
  animation-delay: -0.8s;
}

.join-shape-2 {
  top: 10%;
  right: 3%;
  width: clamp(130px, 14vw, 240px);
  --join-shape-transform: rotate(9deg);
  animation-delay: -2.2s;
}

.join-shape-3 {
  left: 5%;
  bottom: 24%;
  width: clamp(140px, 15vw, 260px);
  --join-shape-transform: rotate(-7deg);
  animation-delay: -3.1s;
}

.join-shape-4 {
  right: 6%;
  bottom: 18%;
  width: clamp(132px, 14vw, 250px);
  --join-shape-transform: rotate(6deg);
  animation-delay: -1.6s;
}

.join-shape-5 {
  left: 50%;
  bottom: 6%;
  width: clamp(170px, 19vw, 320px);
  --join-shape-transform: translateX(-50%) rotate(-2deg);
  opacity: 0.42;
  animation-delay: -4.4s;
}

@keyframes joinShapeFloat {
  0%,
  100% {
    transform: var(--join-shape-transform) translateY(0);
  }
  50% {
    transform: var(--join-shape-transform) translateY(-10px);
  }
}

.join-stickers span {
  background: linear-gradient(145deg, var(--acid), #f0ff8f);
  color: var(--ink);
}

.join-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, 1000px);
  margin-inline: auto;
  gap: clamp(0.95rem, 2vw, 1.8rem);
  align-items: start;
  justify-items: center;
}

.join-visual {
  --join-chart-pad: clamp(0.6rem, 1vw, 0.92rem);
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(0.34rem, 0.6vw, 0.58rem);
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  height: auto;
  justify-self: center;
  padding: var(--join-chart-pad);
  border: 5px solid rgba(12, 12, 18, 0.98);
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 46, 99, 0.34), transparent 46%),
    radial-gradient(circle at 86% 80%, rgba(180, 240, 0, 0.2), transparent 42%),
    repeating-linear-gradient(
      -15deg,
      rgba(255, 255, 255, 0.05) 0 2px,
      rgba(255, 255, 255, 0) 2px 14px
    ),
    linear-gradient(150deg, #211833 0%, #111420 48%, #0c0f18 100%);
  box-shadow:
    0 14px 0 rgba(13, 13, 18, 0.98),
    0 24px 36px rgba(0, 0, 0, 0.44),
    0 0 0 3px rgba(255, 46, 99, 0.32) inset,
    0 0 0 6px rgba(11, 11, 16, 0.88) inset,
    0 0 32px rgba(108, 43, 217, 0.34);
  transform: none;
}

.join-visual::before {
  content: "";
  position: absolute;
  inset: calc(var(--join-chart-pad) - 0.18rem);
  border-radius: 14px;
  border: 3px dashed rgba(180, 240, 0, 0.9);
  box-shadow:
    0 0 0 2px rgba(17, 17, 17, 0.9) inset,
    0 0 16px rgba(180, 240, 0, 0.28);
  pointer-events: none;
  z-index: 2;
  animation: joinFramePulse 3.2s ease-in-out infinite;
}

.join-visual::after {
  content: none;
  display: none;
}

.join-chart-head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.56rem;
  margin: 0;
  padding: 0.22rem 0.3rem;
  border: 1px solid rgba(242, 250, 255, 0.14);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(12, 15, 24, 0.84), rgba(10, 12, 20, 0.62));
  box-shadow:
    0 2px 0 rgba(11, 11, 16, 0.82),
    0 10px 18px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: auto;
}

.join-chart-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  padding: 0.22rem 0.58rem 0.24rem;
  border: 2px solid rgba(11, 11, 16, 0.96);
  border-radius: 9px;
  background:
    radial-gradient(circle at 24% 30%, rgba(255, 255, 255, 0.26), transparent 44%),
    linear-gradient(145deg, rgba(180, 240, 0, 0.96), rgba(255, 46, 99, 0.88));
  box-shadow:
    0 4px 0 rgba(11, 11, 16, 0.95),
    0 0 14px rgba(180, 240, 0, 0.22);
  color: rgba(10, 10, 14, 0.95);
  font-family: var(--pixel-font);
  font-size: clamp(0.46rem, 0.68vw, 0.62rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}

.join-chart-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  margin-left: auto;
}

.join-chart-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 1.36rem;
  padding: 0.16rem 0.52rem 0.18rem;
  border: 2px solid rgba(11, 11, 16, 0.95);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(168, 245, 42, 0.94), rgba(122, 214, 14, 0.9));
  color: rgba(9, 12, 9, 0.96);
  font-family: var(--pixel-font);
  font-size: clamp(0.4rem, 0.58vw, 0.52rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 3px 0 rgba(11, 11, 16, 0.95),
    0 0 12px rgba(172, 255, 0, 0.34);
  white-space: nowrap;
}

.join-chart-live-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 32%, rgba(241, 255, 219, 0.98), rgba(159, 244, 42, 0.92) 58%, rgba(94, 184, 0, 0.84));
  box-shadow:
    0 0 0 1px rgba(11, 11, 16, 0.34),
    0 0 8px rgba(168, 255, 0, 0.66);
  animation: joinLiveDotPulse 1.16s ease-in-out infinite;
}

.join-chart-open-link {
  display: inline-flex;
  align-items: center;
  min-height: 1.36rem;
  padding: 0.16rem 0.58rem 0.2rem;
  border: 2px solid rgba(11, 11, 16, 0.95);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(26, 29, 39, 0.96), rgba(11, 13, 20, 0.94));
  color: rgba(229, 241, 255, 0.96);
  font-family: var(--pixel-font);
  font-size: clamp(0.4rem, 0.58vw, 0.52rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 3px 0 rgba(11, 11, 16, 0.95),
    0 0 10px rgba(97, 227, 255, 0.18);
  transition: transform 180ms ease, box-shadow 200ms ease, filter 180ms ease;
}

.join-chart-open-link:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
  box-shadow:
    0 5px 0 rgba(11, 11, 16, 0.95),
    0 0 14px rgba(97, 227, 255, 0.3);
}

.join-chart-open-link:focus-visible {
  outline: 2px solid rgba(242, 250, 255, 0.96);
  outline-offset: 3px;
}

.join-visual img,
.join-chart {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-chart {
  border: 3px solid rgba(11, 11, 16, 0.96);
  border-radius: 12px;
  display: block;
  background: linear-gradient(145deg, #111523, #0b0e16);
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 2px rgba(180, 240, 0, 0.2) inset,
    0 0 22px rgba(108, 43, 217, 0.2);
}

.join-chart-status {
  position: absolute;
  left: 50%;
  bottom: calc(var(--join-chart-pad) + clamp(0.2rem, 0.7vw, 0.42rem));
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.22rem 0.56rem 0.26rem;
  max-width: calc(100% - (var(--join-chart-pad) * 2) - 0.42rem);
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  border: 2px solid rgba(180, 240, 0, 0.46);
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08), transparent 46%),
    rgba(10, 12, 18, 0.9);
  color: rgba(228, 241, 255, 0.94);
  font-family: var(--pixel-font);
  font-size: clamp(0.4rem, 0.52vw, 0.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 3px 0 rgba(11, 11, 16, 0.9), 0 0 14px rgba(180, 240, 0, 0.2);
  transition: opacity 240ms ease, transform 240ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease;
  pointer-events: none;
}

.join-chart-status::before {
  content: "";
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
  background: radial-gradient(circle at 40% 35%, rgba(180, 240, 0, 0.95), rgba(180, 240, 0, 0.24));
  box-shadow: 0 0 8px rgba(180, 240, 0, 0.46);
  animation: joinStatusPulse 1.15s ease-in-out infinite;
}

.join-chart-status[data-state="ready"] {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
}

.join-chart-status[data-state="error"] {
  border-color: rgba(255, 116, 166, 0.56);
  background: rgba(54, 12, 32, 0.78);
  color: rgba(255, 205, 226, 0.96);
}

.join-chart-status[data-state="error"]::before {
  background: radial-gradient(circle at 40% 35%, rgba(255, 126, 174, 0.95), rgba(255, 84, 145, 0.24));
  box-shadow: 0 0 8px rgba(255, 104, 166, 0.42);
}

@keyframes joinLiveDotPulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.86;
    box-shadow:
      0 0 0 1px rgba(11, 11, 16, 0.34),
      0 0 8px rgba(168, 255, 0, 0.52);
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
    box-shadow:
      0 0 0 1px rgba(11, 11, 16, 0.34),
      0 0 14px rgba(168, 255, 0, 0.82);
  }
}

.join-copy {
  width: min(100%, 980px);
  max-width: 980px;
  display: grid;
  gap: clamp(0.58rem, 1vw, 0.88rem);
  justify-items: center;
  text-align: center;
}

.join-copy h2 {
  margin: 0.55rem 0 1.1rem;
  font-family: var(--display-font);
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 6px 0 var(--ink), 0 0 20px rgba(255, 46, 99, 0.35);
}

.contract-label {
  margin: 0;
  font-family: var(--graffiti-font);
  color: var(--acid);
  font-size: 1.2rem;
}

.contract-code {
  appearance: none;
  text-align: center;
  cursor: default;
  display: block;
  width: min(100%, 980px);
  margin: 0 auto;
  border: 2px solid rgba(180, 240, 0, 0.92);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(180, 240, 0, 0.12), rgba(180, 240, 0, 0) 52%),
    linear-gradient(165deg, rgba(13, 14, 20, 0.96), rgba(8, 9, 14, 0.92));
  padding: 0.66rem 0.88rem 0.72rem;
  font-family: var(--pixel-font);
  font-size: clamp(0.58rem, 0.82vw, 0.74rem);
  letter-spacing: 0.03em;
  line-height: 1.34;
  color: rgba(242, 250, 255, 0.98);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.74);
  box-shadow:
    0 0 0 2px rgba(11, 11, 16, 0.92) inset,
    0 0 18px rgba(180, 240, 0, 0.22),
    0 8px 18px rgba(0, 0, 0, 0.34);
  overflow-wrap: anywhere;
}

.contract-code-value {
  display: block;
  font-family: Consolas, "SFMono-Regular", Menlo, Monaco, "Courier New", monospace;
  font-size: clamp(0.54rem, 0.74vw, 0.68rem);
  letter-spacing: 0.02em;
  line-height: 1.38;
  word-break: break-all;
}

.contract-copy {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 200ms ease, border-color 180ms ease, filter 200ms ease;
}

.contract-copy:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.contract-copy:focus-visible {
  outline: 2px solid rgba(242, 250, 255, 0.96);
  outline-offset: 3px;
}

.contract-copy-feedback {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-top: 0.56rem;
  padding: 0.09rem 0.46rem 0.12rem;
  border-radius: 999px;
  border: 1px solid rgba(180, 240, 0, 0.32);
  background: rgba(12, 14, 20, 0.62);
  color: rgba(225, 241, 255, 0.92);
  font-family: var(--pixel-font);
  font-size: clamp(0.42rem, 0.56vw, 0.52rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contract-copy-feedback::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: radial-gradient(circle at 40% 35%, rgba(180, 240, 0, 0.95), rgba(180, 240, 0, 0.28));
  box-shadow: 0 0 8px rgba(180, 240, 0, 0.48);
}

.contract-copy[data-copy-state="copied"] {
  border-color: rgba(180, 240, 0, 0.98);
  box-shadow:
    0 0 0 2px rgba(11, 11, 16, 0.92) inset,
    0 0 24px rgba(180, 240, 0, 0.38),
    0 10px 20px rgba(0, 0, 0, 0.36);
}

.contract-copy[data-copy-state="copied"] .contract-copy-feedback {
  border-color: rgba(180, 240, 0, 0.54);
  background: rgba(42, 62, 12, 0.44);
  color: rgba(228, 255, 156, 0.98);
}

.contract-copy[data-copy-state="error"] {
  border-color: rgba(255, 116, 166, 0.82);
  box-shadow:
    0 0 0 2px rgba(11, 11, 16, 0.92) inset,
    0 0 20px rgba(255, 94, 160, 0.3),
    0 10px 20px rgba(0, 0, 0, 0.36);
}

.contract-copy[data-copy-state="error"] .contract-copy-feedback {
  border-color: rgba(255, 128, 180, 0.56);
  background: rgba(70, 14, 40, 0.52);
  color: rgba(255, 198, 223, 0.98);
}

.contract-copy[data-copy-state="error"] .contract-copy-feedback::before {
  background: radial-gradient(circle at 40% 35%, rgba(255, 126, 174, 0.94), rgba(255, 74, 134, 0.32));
  box-shadow: 0 0 8px rgba(255, 87, 156, 0.46);
}

.join-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.64rem, 1.4vw, 1.05rem);
  margin-top: clamp(0.48rem, 0.9vw, 0.82rem);
  justify-content: center;
  align-items: flex-end;
  width: min(100%, 980px);
}

.join-links a {
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.52rem 0.9rem;
  background: linear-gradient(145deg, #2f2f2f, #111111);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.join-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 46, 99, 0.4);
}

.join-links a.join-link-image {
  border: 0;
  border-radius: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: auto;
  height: clamp(92px, 9vw, 138px);
  min-width: clamp(136px, 18vw, 224px);
  flex: 0 0 auto;
  position: relative;
  --join-link-glow: rgba(180, 240, 0, 0.36);
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transform: translateY(0) scale(1) rotate(0deg);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), filter 240ms ease;
}

.join-links a.join-link-image::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 70%;
  height: 18%;
  border-radius: 999px;
  transform: translateX(-50%) scale(1);
  background: radial-gradient(ellipse at center, var(--join-link-glow), rgba(0, 0, 0, 0));
  filter: blur(8px);
  opacity: 0.52;
  pointer-events: none;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease, filter 240ms ease;
}

.join-links a.join-link-image:nth-child(1) {
  --join-link-glow: rgba(180, 240, 0, 0.5);
}

.join-links a.join-link-image:nth-child(2) {
  --join-link-glow: rgba(97, 227, 255, 0.5);
}

.join-links a.join-link-image:nth-child(3) {
  --join-link-glow: rgba(255, 152, 72, 0.5);
}

.join-links a.join-link-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.34));
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), filter 240ms ease;
}

.join-links a.join-link-image:hover {
  transform: translateY(-6px) scale(1.04) rotate(-1.4deg);
  filter: saturate(1.08);
}

.join-links a.join-link-image:hover::after {
  opacity: 0.92;
  transform: translateX(-50%) scale(1.28);
  filter: blur(11px);
}

.join-links a.join-link-image:hover img {
  transform: scale(1.03);
  filter:
    drop-shadow(0 10px 16px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 16px rgba(180, 240, 0, 0.28))
    brightness(1.05)
    saturate(1.1);
}

.join-links a.join-link-image:nth-child(2):hover {
  transform: translateY(-6px) scale(1.04) rotate(1.4deg);
}

.join-links a.join-link-image:active {
  transform: translateY(-2px) scale(1.01);
}

.join-links a.join-link-image:active::after {
  opacity: 0.7;
  transform: translateX(-50%) scale(1.12);
}

.join-links a.join-link-image:focus-visible {
  outline: 2px solid rgba(242, 250, 255, 0.96);
  outline-offset: 3px;
}

.cta-btn {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 0.78rem 1.2rem;
  background: linear-gradient(145deg, var(--pink), #ff86ab);
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 6px 0 var(--ink), 0 0 24px rgba(255, 46, 99, 0.48);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.cta-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 0 var(--ink), 0 0 30px rgba(255, 46, 99, 0.68);
}

.site-footer {
  position: relative;
  isolation: isolate;
  padding: clamp(1.8rem, 4.8vw, 3.6rem) var(--site-content-gutter) clamp(2rem, 4vw, 3rem);
  padding-left: max(var(--site-content-gutter), env(safe-area-inset-left));
  padding-right: max(var(--site-content-gutter), env(safe-area-inset-right));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 12% 18%, rgba(180, 240, 0, 0.18), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(255, 46, 99, 0.2), transparent 36%),
    linear-gradient(160deg, #0a0a10, #100d18 58%, #09090d);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-linear-gradient(
      -18deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 2px,
      transparent 2px,
      transparent 13px
    );
  mix-blend-mode: overlay;
  opacity: 0.35;
}

.gooey-defs {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.liquid-card {
  position: relative;
  z-index: 1;
  width: min(100%, var(--site-max-width));
  margin-inline: auto;
  border: 3px solid rgba(17, 17, 17, 0.96);
  border-radius: 22px;
  padding: clamp(0.9rem, 2vw, 1.4rem);
  background:
    radial-gradient(circle at 12% 12%, rgba(180, 240, 0, 0.14), transparent 38%),
    radial-gradient(circle at 84% 88%, rgba(255, 46, 99, 0.13), transparent 40%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), transparent 58%),
    linear-gradient(140deg, rgba(26, 31, 45, 0.95), rgba(10, 12, 20, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 16px 36px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(108, 43, 217, 0.24);
  overflow: hidden;
}

.liquid-goo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  filter: url("#gooey-footer-filter");
}

.liquid-wave {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -56px;
  height: 120px;
  border-radius: 42% 58% 0 0 / 46% 54% 0 0;
  background: linear-gradient(180deg, rgba(180, 240, 0, 0.74), rgba(120, 200, 20, 0.38));
  opacity: 0.3;
  animation: footerWaveDrift 6.6s ease-in-out infinite;
}

.liquid-bubble {
  position: absolute;
  bottom: -26px;
  left: 0;
  width: clamp(14px, 1.5vw, 24px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.86), rgba(180, 240, 0, 0.58));
  opacity: 0.7;
  animation: footerBubbleRise 6s linear infinite;
}

.liquid-bubble:nth-child(2) { left: 8%; animation-delay: -1.2s; }
.liquid-bubble:nth-child(3) { left: 16%; animation-delay: -2.3s; }
.liquid-bubble:nth-child(4) { left: 26%; animation-delay: -3.8s; }
.liquid-bubble:nth-child(5) { left: 38%; animation-delay: -0.8s; }
.liquid-bubble:nth-child(6) { left: 52%; animation-delay: -2.8s; }
.liquid-bubble:nth-child(7) { left: 64%; animation-delay: -4.6s; }
.liquid-bubble:nth-child(8) { left: 74%; animation-delay: -1.9s; }
.liquid-bubble:nth-child(9) { left: 82%; animation-delay: -3.2s; }
.liquid-bubble:nth-child(10) { left: 90%; animation-delay: -2.4s; }
.liquid-bubble:nth-child(11) { left: 96%; animation-delay: -4.9s; }

.liquid-card > * {
  position: relative;
  z-index: 1;
}

.liquid-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.72fr) auto;
  gap: clamp(0.72rem, 1.4vw, 1.3rem);
  align-items: end;
  margin-bottom: clamp(0.8rem, 1.6vh, 1.1rem);
}

.liquid-kicker {
  margin: 0;
  font-family: var(--pixel-font);
  font-size: clamp(0.48rem, 0.54vw, 0.6rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(211, 227, 253, 0.8);
}

.liquid-title {
  margin: 0.22rem 0 0;
  font-family: var(--display-font);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: #f6fbff;
  text-shadow: 0 5px 0 rgba(17, 17, 17, 0.96), 0 0 18px rgba(255, 46, 99, 0.3);
}

.liquid-note {
  margin: 0.38rem 0 0;
  max-width: 46ch;
  color: rgba(236, 242, 252, 0.9);
  font-size: clamp(0.84rem, 0.95vw, 1rem);
  line-height: 1.34;
}

.liquid-contract {
  border: 2px solid rgba(17, 17, 17, 0.95);
  border-radius: 14px;
  padding: 0.58rem 0.7rem;
  background: linear-gradient(145deg, rgba(12, 15, 24, 0.9), rgba(20, 14, 30, 0.9));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.liquid-contract span {
  display: block;
  margin-bottom: 0.28rem;
  font-family: var(--pixel-font);
  font-size: 0.48rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(199, 218, 246, 0.72);
}

.liquid-contract code {
  display: block;
  font-family: var(--pixel-font);
  font-size: clamp(0.52rem, 0.58vw, 0.62rem);
  letter-spacing: 0.03em;
  color: #dbff61;
  overflow-wrap: anywhere;
}

.liquid-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(17, 17, 17, 0.95);
  border-radius: 12px;
  min-height: 54px;
  padding: 0.56rem 1rem;
  background: linear-gradient(145deg, #dbff61, #a4db18);
  color: #111111;
  font-family: var(--display-font);
  font-size: clamp(0.84rem, 1vw, 1rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 5px 0 rgba(17, 17, 17, 0.95), 0 0 14px rgba(180, 240, 0, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.liquid-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 rgba(17, 17, 17, 0.95), 0 0 20px rgba(180, 240, 0, 0.5);
}

.liquid-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.56rem, 1.2vw, 1rem);
}

.liquid-col {
  border: 2px solid rgba(17, 17, 17, 0.92);
  border-radius: 12px;
  padding: 0.58rem 0.64rem 0.62rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 60%),
    linear-gradient(135deg, rgba(20, 24, 36, 0.92), rgba(9, 11, 18, 0.94));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.liquid-col h3 {
  margin: 0 0 0.38rem;
  font-family: var(--graffiti-font);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  color: #dbff61;
  line-height: 1;
}

.liquid-col a {
  display: block;
  font-size: clamp(0.82rem, 0.9vw, 0.95rem);
  line-height: 1.26;
  color: rgba(238, 244, 255, 0.9);
  text-decoration: none;
}

.liquid-col a + a {
  margin-top: 0.24rem;
}

.liquid-col a:hover {
  color: #ffffff;
}

.liquid-copy {
  margin: 0.72rem 0 0;
  font-family: var(--pixel-font);
  font-size: clamp(0.46rem, 0.54vw, 0.56rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(195, 214, 244, 0.7);
}

body.is-rm-modal-open {
  overflow: hidden;
}

.rm-float-btn {
  position: fixed;
  right: 50px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 72;
  width: clamp(88px, 8.4vw, 128px);
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
  gap: 0;
  isolation: isolate;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 220ms ease;
  will-change: transform;
}

.rm-float-btn::before {
  content: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -20deg,
      rgba(255, 255, 255, 0.09) 0,
      rgba(255, 255, 255, 0.09) 1px,
      transparent 1px,
      transparent 11px
    );
  opacity: 0.55;
}

.rm-float-btn:hover {
  transform: translateY(calc(-50% - 4px)) scale(1.03);
  filter: saturate(1.08);
}

.rm-float-btn:active {
  transform: translateY(calc(-50% - 1px)) scale(1.01);
}

.rm-float-btn:focus-visible {
  outline: 3px solid rgba(232, 255, 122, 0.96);
  outline-offset: 3px;
}

.rm-float-btn img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter:
    drop-shadow(0 2px 0 rgba(8, 9, 12, 0.72))
    drop-shadow(0 0 8px rgba(203, 255, 51, 0.24));
}

.rm-float-btn-tag {
  display: none;
}

body.is-graffiti-mode .rm-float-btn {
  z-index: 1200;
  filter: saturate(1.08);
}

body.is-graffiti-mode .rm-float-btn img {
  filter:
    drop-shadow(0 3px 0 rgba(8, 9, 12, 0.88))
    drop-shadow(0 0 14px rgba(203, 255, 51, 0.52))
    drop-shadow(0 0 16px rgba(178, 109, 255, 0.34));
}

@keyframes rmFloatBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.rm-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: clamp(0.72rem, 2.4vw, 1.4rem);
  background:
    radial-gradient(circle at 16% 18%, rgba(203, 255, 51, 0.18), transparent 36%),
    radial-gradient(circle at 86% 14%, rgba(178, 109, 255, 0.24), transparent 34%),
    rgba(6, 7, 12, 0.74);
  backdrop-filter: blur(6px) saturate(1.08);
}

.rm-modal[hidden] {
  display: none !important;
}

.rm-modal-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100vh - clamp(1.4rem, 4vh, 2.4rem));
  display: grid;
  gap: clamp(0.5rem, 1.2vw, 0.8rem);
  padding: clamp(0.74rem, 1.7vw, 1rem);
  border: 3px solid rgba(203, 255, 51, 0.82);
  border-radius: 22px;
  background:
    radial-gradient(circle at 14% 16%, rgba(203, 255, 51, 0.2), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(255, 76, 168, 0.2), transparent 36%),
    linear-gradient(160deg, rgba(17, 9, 24, 0.98), rgba(8, 10, 16, 0.98) 56%, rgba(26, 10, 40, 0.98));
  box-shadow:
    0 0 0 2px rgba(10, 10, 13, 0.96) inset,
    0 0 0 1px rgba(230, 255, 134, 0.28) inset,
    0 20px 48px rgba(0, 0, 0, 0.58),
    0 0 30px rgba(178, 109, 255, 0.24);
  overflow: hidden;
}

.rm-modal-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(238, 245, 255, 0.14) 1px, transparent 1.2px) 0 0 / 10px 10px,
    repeating-linear-gradient(
      18deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 11px
    );
  mix-blend-mode: screen;
  opacity: 0.34;
}

.rm-modal-title {
  position: relative;
  z-index: 2;
  margin: 0 2.2rem 0.2rem 0.12rem;
  font-family: var(--graffiti-font);
  font-size: clamp(1.14rem, 1.8vw, 1.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e6ff73;
  text-shadow:
    0 2px 0 rgba(8, 9, 12, 0.9),
    0 0 12px rgba(203, 255, 51, 0.34);
}

.rm-modal-close {
  position: absolute;
  top: 0.54rem;
  right: 0.56rem;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(8, 9, 12, 0.95);
  border-radius: 10px;
  padding: 0;
  background: linear-gradient(145deg, rgba(255, 76, 168, 0.94), rgba(178, 109, 255, 0.94));
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow:
    0 3px 0 rgba(8, 9, 12, 0.94),
    0 0 14px rgba(255, 76, 168, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.rm-modal-close:hover {
  transform: translateY(-2px);
  box-shadow:
    0 5px 0 rgba(8, 9, 12, 0.94),
    0 0 18px rgba(255, 76, 168, 0.42);
}

.rm-modal-close:focus-visible {
  outline: 2px solid rgba(232, 255, 122, 0.94);
  outline-offset: 2px;
}

.rm-modal-frame {
  position: relative;
  z-index: 2;
  border: 2px solid rgba(10, 10, 13, 0.96);
  border-radius: 16px;
  padding: clamp(0.34rem, 1vw, 0.56rem);
  background:
    linear-gradient(145deg, rgba(203, 255, 51, 0.14), rgba(178, 109, 255, 0.22) 52%, rgba(255, 76, 168, 0.18)),
    linear-gradient(155deg, rgba(8, 10, 16, 0.96), rgba(20, 10, 30, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(230, 255, 134, 0.24),
    inset 0 0 0 2px rgba(10, 10, 13, 0.92);
  overflow: auto;
}

.rm-modal-image {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  border: 2px solid rgba(203, 255, 51, 0.46);
  border-radius: 12px;
  background: rgba(5, 8, 14, 0.66);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.42),
    0 0 14px rgba(178, 109, 255, 0.2);
}

@keyframes footerWaveDrift {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-1.8%) translateY(-8px);
  }
}

@keyframes footerBubbleRise {
  0% {
    transform: translateY(0) scale(0.85);
    opacity: 0;
  }
  12% {
    opacity: 0.72;
  }
  85% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-175px) scale(1.1);
    opacity: 0;
  }
}

@media (max-width: 1200px) {
  :root {
    --site-max-width: 1100px;
  }

  main {
    scroll-snap-type: none;
  }

  .panel {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .doodle-layout {
    grid-template-columns: 1fr;
  }

  .doodle-leaderboard-module {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    transform: none;
    height: auto;
    width: 100%;
  }

  .doodle-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 0.62rem;
  }

  .doodle-status,
  .doodle-hint {
    grid-column: 1 / -1;
  }

  .doodle-stats,
  .doodle-actions {
    grid-column: 1 / -1;
  }

  .hero {
    padding-top: clamp(0.9rem, 2vh, 1.35rem);
    padding-bottom: clamp(3.1rem, 7.2vh, 4.4rem);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    align-content: center;
    gap: clamp(0.5rem, 1.45vh, 0.9rem);
  }

  .hero-left,
  .hero-right {
    justify-self: center;
  }

  .hero.is-graffiti-mode .hero-left {
    transform: translateY(-34%) scale(0.78) rotate(-2deg);
  }

  .hero.is-graffiti-mode .hero-right {
    transform: translateY(34%) scale(0.78) rotate(2deg);
  }

  .sequence-frame {
    width: min(50vw, 37vh, 420px);
    transform: translateX(-4.5%);
  }

  .hero-backtag {
    left: 50%;
    top: 10%;
    font-size: clamp(1.85rem, 4.2vw, 3.4rem);
  }

  .hero-tag-splash-a {
    left: 33%;
    top: 9.8%;
    width: 82px;
    height: 50px;
  }

  .hero-tag-splash-b {
    left: 54%;
    top: 9.2%;
    width: 72px;
    height: 46px;
  }

  .hero-tag-splash-c {
    left: 47%;
    top: 17%;
    width: 58px;
    height: 36px;
  }

  #octoFallback.hero-mascot {
    top: -17%;
    left: calc(-8% + 30px);
    width: 103.04%;
    height: 103.04%;
  }

  .hero-right {
    width: min(760px, 100%);
    padding: clamp(1.35rem, 3.06vw, 1.7rem) clamp(0.86rem, 2vw, 1.14rem);
    gap: clamp(0.65rem, 1.52vw, 0.9rem);
    border-radius: 18px;
    -webkit-clip-path: none;
    clip-path: none;
    box-shadow:
      0 0 0 2px rgba(11, 12, 18, 0.92) inset,
      0 0 0 1px rgba(230, 255, 134, 0.28) inset,
      0.16rem 0.16rem 0 var(--comic-ink),
      0.4rem 0.44rem 0 rgba(0, 0, 0, 0.28);
  }

  .hero-tentacle {
    opacity: 0.76;
  }

  .hero-tentacle-a,
  .hero-tentacle-b {
    width: clamp(92px, 14vw, 150px);
  }

  .hero-tentacle-c,
  .hero-tentacle-d {
    width: clamp(108px, 16.2vw, 176px);
  }

  .hero-tentacle-a {
    left: calc(-3.6% + 60px);
    top: calc(-2.4% - 80px);
  }

  .hero-tentacle-b {
    right: -3.8%;
    top: -2%;
    width: clamp(138px, 21vw, 225px);
  }

  .hero-tentacle-c {
    left: -4%;
    bottom: -3.4%;
  }

  .hero-tentacle-d {
    right: calc(-4.2% + 200px);
    bottom: -3.8%;
  }

  .hero-corner-tentacle-tl {
    left: -8px;
    top: -10px;
    width: clamp(70px, 11vw, 112px);
  }

  .hero-corner-tentacle-tr {
    right: -10px;
    top: -9px;
    width: clamp(72px, 11.4vw, 116px);
  }

  .hero-corner-tentacle-bl {
    left: -14px;
    bottom: -12px;
    width: clamp(82px, 12.4vw, 126px);
  }

  .hero-corner-tentacle-br {
    right: -15px;
    bottom: -14px;
    width: clamp(86px, 12.8vw, 132px);
  }

  .hero h1 {
    margin: 0;
    font-size: clamp(2rem, 6.5vw, 4rem);
  }

  .hero h1 .hero-title-token {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy {
    margin: 0;
    max-width: none;
    margin-inline: 0;
  }

  .hero-actions {
    width: min(640px, 100%);
    margin-inline: auto;
  }

  .graffiti-tools {
    left: 50%;
    top: clamp(0.72rem, 1.6vh, 1rem);
    width: min(410px, calc(100% - 1.4rem));
    transform: translate(-50%, -10px) scale(0.96);
  }

  .graffiti-tools-footer {
    padding-top: 0.22rem;
  }

  .graffiti-tools-toggle {
    padding: 0.3rem 0.42rem 0.32rem;
  }

  .hero.is-graffiti-mode .graffiti-tools {
    transform: translate(-50%, 0) scale(1);
  }

  .hero .floating-stickers span:nth-child(1) {
    top: 10%;
    left: 4%;
  }

  .hero .floating-stickers span:nth-child(4) {
    left: 4%;
    right: auto;
    top: 71%;
  }

  .hero .floating-stickers span:nth-child(2) {
    top: 35%;
    right: 2.2%;
  }

  .hero .floating-stickers span:nth-child(3) {
    right: 3.5%;
    top: auto;
    bottom: calc(24% + 60px);
  }

  .hero .floating-stickers span:nth-child(5) {
    left: auto;
    right: calc(19% - 265px);
    top: calc(9% - 20px + 300px);
  }

  .tag-toxic {
    right: 3.5%;
    top: 22%;
  }

  .tag-spray {
    left: 2.2%;
    top: 29%;
    bottom: auto;
  }

  .tag-crew {
    right: 16%;
    bottom: 17%;
  }

  .graffiti-tape {
    left: -10%;
    bottom: 9%;
    font-size: 0.45rem;
    opacity: 0.82;
  }

  .toxic-plaque {
    margin-inline: auto;
    max-width: min(560px, 100%);
    text-align: left;
  }

  .doodle-zig {
    left: 34%;
    top: 15%;
  }

  .doodle-arrow {
    right: 5%;
    bottom: 26%;
  }

  .join-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .join-visual {
    transform: none;
  }

  .join-links {
    justify-content: center;
  }

  .join-shape {
    opacity: 0.38;
  }

  .join-shape-5 {
    width: clamp(140px, 23vw, 240px);
    bottom: 4%;
  }
}

@media (max-width: 980px) {
  .game {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 0.62rem;
    padding-left: clamp(0.72rem, 2.2vw, 1.2rem);
    padding-right: clamp(0.72rem, 2.2vw, 1.2rem);
  }

  .game-jump-logo {
    width: clamp(216px, 34vw, 328px);
    left: clamp(0.56rem, 1.8vw, 0.92rem);
    top: clamp(0.5rem, 1.6vw, 0.8rem);
  }

  .toxic-divider {
    min-height: clamp(62px, 8.8vh, 82px);
    padding-inline: clamp(0.7rem, 3vw, 1.1rem);
  }

  .toxic-divider-copy {
    width: min(100%, 720px);
    justify-content: center;
  }

  .doodle-leaderboard-module {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    transform: none;
    width: min(560px, 100%);
  }

  .doodle-shell {
    border-radius: 22px;
    padding: 0.72rem;
  }

  .doodle-layout::before {
    top: -0.56rem;
    height: 12px;
  }

  .doodle-layout::after {
    bottom: -0.5rem;
    height: 8px;
  }

  .doodle-shell::before {
    width: 186px;
    top: -62px;
    left: -72px;
  }

  .doodle-shell::after {
    width: 196px;
    right: -86px;
    bottom: -88px;
  }

  .doodle-intro h2 {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }

  .doodle-copy {
    font-size: 0.88rem;
  }

  .doodle-board {
    border-radius: 16px;
  }

  .doodle-board {
    width: min(100%, 440px);
  }

  .doodle-board::before {
    top: 0.36rem;
    padding: 0.2rem 0.4rem 0.23rem;
  }

  .doodle-panel {
    grid-template-columns: 1fr;
  }

  .panel {
    padding-top: 4.2rem;
  }

  .hero {
    padding-top: clamp(4rem, 10.5vw, 5.1rem);
    padding-bottom: clamp(3.2rem, 8.8vw, 4.4rem);
  }

  .section-head h2 {
    font-size: clamp(1.7rem, 8vw, 3rem);
  }

  .story-stage {
    min-height: 100%;
    padding: clamp(0.66rem, 1.8vw, 1.06rem);
    border-width: 2px;
    border-radius: 18px;
    box-shadow:
      0 0 0 2px rgba(12, 12, 18, 0.9) inset,
      0.12rem 0.12rem 0 rgba(15, 17, 23, 0.9),
      0.34rem 0.38rem 0 rgba(0, 0, 0, 0.34),
      0 0 20px rgba(203, 255, 51, 0.16);
  }

  .story-pack-item {
    max-width: clamp(56px, 11vw, 122px);
  }

  .story-layout {
    grid-template-columns: minmax(104px, 0.24fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 0.58rem;
  }

  .story-timeline {
    grid-row: 1 / span 2;
    align-self: stretch;
  }

  .story-viewport {
    height: min(56vh, 540px);
    border-width: 2px;
    box-shadow:
      0 0 0 2px rgba(12, 12, 18, 0.9),
      0.14rem 0.14rem 0 rgba(15, 17, 23, 0.9),
      0.34rem 0.38rem 0 rgba(0, 0, 0, 0.34),
      0 14px 28px rgba(0, 0, 0, 0.42),
      0 0 18px rgba(203, 255, 51, 0.18);
  }

  .story-viewport::before {
    inset: 0.32rem;
    border-width: 1.6px;
  }

  .story-overlay {
    min-height: auto;
    max-width: none;
    padding: 0.64rem 0.74rem;
    border-width: 2px;
    border-radius: 16px;
    gap: 0.34rem;
    box-shadow:
      0 0 0 2px rgba(11, 12, 18, 0.9) inset,
      0.12rem 0.12rem 0 rgba(15, 17, 23, 0.9),
      0.34rem 0.38rem 0 rgba(0, 0, 0, 0.34),
      0 0 16px rgba(203, 255, 51, 0.16);
  }

  .story-overlay::after {
    inset: 0.3rem;
    border-width: 1.6px;
    border-radius: 11px;
  }

  .story-overlay h3 {
    font-size: clamp(0.9rem, 2.2vw, 1.58rem);
    max-width: 15ch;
    padding-right: 0.14em;
  }

  .story-overlay h3::before {
    left: -0.02em;
    right: 0.02em;
    height: 0.2em;
  }

  .story-overlay .story-body {
    max-height: none;
    font-size: clamp(0.62rem, 0.9vw, 0.86rem);
    padding: 0.48rem 0.5rem 0.52rem;
  }

  .story-slide {
    padding: 0.56rem;
  }

  .story-slide-frame {
    border-radius: 18px;
    border-width: 2px;
  }

  .story-controls {
    right: 0.7rem;
    bottom: 0.55rem;
  }

  .story-controls::before {
    inset: -6px -8px;
    border-radius: 12px;
  }

  .story-nav {
    width: 40px;
    height: 36px;
    font-size: 1.1rem;
  }

  .origin-toxic-badge {
    min-height: 28px;
    font-size: 0.44rem;
    padding: 0.3rem 0.5rem 0.34rem;
  }

}

@media (max-width: 700px) {
  :root {
    --site-content-gutter: clamp(0.58rem, 3.8vw, 0.92rem);
  }

  .game {
    align-items: stretch;
  }

  .game-jump-logo {
    width: clamp(168px, 48vw, 240px);
    left: 0.46rem;
    top: 0.44rem;
    transform: rotate(-4deg);
  }

  .toxic-divider {
    min-height: clamp(58px, 8vh, 72px);
  }

  .toxic-divider-copy {
    gap: 0.28rem;
    padding: 0.42rem 0.56rem 0.46rem;
    font-size: 0.38rem;
  }

  .toxic-divider-value {
    font-size: 0.37rem;
  }

  .toxic-divider-drips {
    height: 34px;
  }

  .doodle-shell {
    margin-top: 0.2rem;
    border-radius: 18px;
    padding: 0.58rem;
  }

  .doodle-layout::before {
    top: -0.44rem;
    left: 0.34rem;
    right: 0.34rem;
    height: 10px;
  }

  .doodle-layout::after {
    display: none;
  }

  .doodle-shell::before {
    width: 148px;
    top: -46px;
    left: -50px;
  }

  .doodle-shell::after {
    width: 152px;
    right: -62px;
    bottom: -68px;
  }

  .doodle-intro {
    margin-bottom: 0.56rem;
  }

  .doodle-intro h2 {
    margin-top: 0.22rem;
    font-size: clamp(1.24rem, 7.9vw, 2.1rem);
    line-height: 0.96;
  }

  .doodle-copy {
    font-size: 0.78rem;
    line-height: 1.26;
  }

  .doodle-character-chip {
    margin-top: 0.42rem;
    font-size: 0.44rem;
    padding: 0.24rem 0.5rem 0.24rem 0.24rem;
  }

  .doodle-character-chip img {
    width: 30px;
    height: 30px;
  }

  .doodle-sideboard {
    padding: 0.58rem;
  }

  .doodle-side-kicker {
    font-size: 0.38rem;
  }

  .doodle-leaderboard-module {
    width: 100%;
  }

  .doodle-leaderboard-head {
    padding: 0.28rem 0.46rem;
    grid-template-columns: 2.2rem minmax(0, 1fr) auto;
    gap: 0.42rem;
  }

  .doodle-leaderboard-head span {
    font-size: 0.38rem;
  }

  .doodle-leaderboard {
    max-height: min(24vh, 190px);
  }

  .doodle-leaderboard li {
    padding: 0.38rem 0.46rem;
    gap: 0.42rem;
  }

  .doodle-leaderboard li .rank {
    min-width: 2.2rem;
  }

  .doodle-board {
    width: min(100%, 360px);
  }

  .doodle-board::before {
    top: 0.3rem;
    font-size: 0.31rem;
    letter-spacing: 0.06em;
    padding: 0.16rem 0.34rem 0.2rem;
  }

  .doodle-overlay strong {
    font-size: 0.54rem;
  }

  .doodle-overlay p {
    font-size: 0.64rem;
  }

  .doodle-panel {
    border-radius: 12px;
    padding: 0.52rem;
    gap: 0.5rem;
  }

  .doodle-share-panel {
    top: 44%;
    width: min(92%, 320px);
    max-height: calc(100% - 0.9rem);
    padding: 0.48rem;
    padding-top: 0.72rem;
    gap: 0.34rem;
  }

  .doodle-share-close {
    width: 26px;
    height: 26px;
    top: 0.28rem;
    right: 0.28rem;
  }

  .doodle-share-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.28rem;
  }

  .doodle-share-btn.doodle-share-btn-x {
    grid-column: 1 / -1;
  }

  .doodle-actions {
    gap: 0.36rem;
  }

  .doodle-btn {
    padding: 0.5rem 0.38rem 0.54rem;
    font-size: 0.5rem;
  }

  .doodle-status {
    font-size: 0.88rem;
  }

  .doodle-hint {
    font-size: 0.68rem;
  }

  .hero {
    padding-top: clamp(3.9rem, 15vw, 4.8rem);
    padding-bottom: clamp(3rem, 13vw, 4rem);
  }

  .hero h1 {
    margin: 0;
    font-size: clamp(1.8rem, 9.6vw, 3rem);
    line-height: 0.92;
  }

  .hero-copy {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .hero.is-graffiti-mode .hero-left {
    transform: translateY(-30%) scale(0.72) rotate(-1.4deg);
  }

  .hero.is-graffiti-mode .hero-right {
    transform: translateY(30%) scale(0.72) rotate(1.4deg);
  }

  .sequence-frame {
    width: min(73vw, 34.2vh, 312px);
    transform: translateX(-3.5%);
  }

  .hero-backtag {
    left: 50%;
    top: 12%;
    font-size: clamp(1.56rem, 7.2vw, 2.8rem);
    letter-spacing: 0.04em;
    text-shadow:
      0 1px 0 rgba(9, 9, 12, 0.96),
      0 0 12px rgba(180, 240, 0, 0.96),
      0 0 26px rgba(255, 46, 99, 0.78);
  }

  .hero-tag-splash-a {
    left: 33.5%;
    top: 11.4%;
    width: 54px;
    height: 34px;
  }

  .hero-tag-splash-b {
    left: 54%;
    top: 11.2%;
    width: 48px;
    height: 30px;
  }

  .hero-tag-splash-c {
    left: 47%;
    top: 18.2%;
    width: 42px;
    height: 26px;
  }

  #octoFallback.hero-mascot {
    top: -15%;
    left: calc(-7% + 30px);
    width: 99.36%;
    height: 99.36%;
  }

  .hero-right {
    padding: 1.32rem 0.84rem 1.4rem;
    border-radius: 16px;
    -webkit-clip-path: none;
    clip-path: none;
    gap: 0.72rem;
    border-width: 2.4px;
    box-shadow:
      0 0 0 2px rgba(11, 12, 18, 0.9) inset,
      0 0 0 1px rgba(230, 255, 134, 0.26) inset,
      0.12rem 0.12rem 0 var(--comic-ink),
      0.28rem 0.34rem 0 rgba(0, 0, 0, 0.24);
    transform: none;
  }

  .hero-tentacle {
    opacity: 0.68;
    filter:
      drop-shadow(0 5px 8px rgba(0, 0, 0, 0.5))
      drop-shadow(0 0 10px rgba(203, 255, 51, 0.2))
      drop-shadow(0 0 8px rgba(178, 109, 255, 0.16));
  }

  .hero-tentacle-a,
  .hero-tentacle-b {
    width: clamp(72px, 22vw, 116px);
  }

  .hero-tentacle-c,
  .hero-tentacle-d {
    width: clamp(84px, 24vw, 132px);
  }

  .hero-tentacle-a {
    left: calc(-5.8% + 60px);
    top: calc(-1.4% - 80px);
  }

  .hero-tentacle-b {
    right: -6%;
    top: -1%;
    width: clamp(108px, 33vw, 174px);
  }

  .hero-tentacle-c {
    left: -6.2%;
    bottom: -1.8%;
  }

  .hero-tentacle-d {
    right: calc(-6.6% + 200px);
    bottom: -2.4%;
  }

  .hero-corner-tentacle {
    opacity: 0.72;
  }

  .hero-corner-tentacle-tl,
  .hero-corner-tentacle-tr {
    width: clamp(58px, 17vw, 92px);
  }

  .hero-corner-tentacle-bl,
  .hero-corner-tentacle-br {
    width: clamp(68px, 19vw, 104px);
  }

  .hero .kicker {
    border-width: 2.2px;
    box-shadow:
      0.07rem 0.07rem 0 var(--comic-ink),
      0 0 0 1px rgba(255, 255, 255, 0.42) inset,
      0 0 8px rgba(203, 255, 51, 0.3);
  }

  .hero-copy {
    padding: 0.5rem 0.58rem 0.54rem;
    border-width: 2.2px;
    box-shadow:
      0.12rem 0.12rem 0 var(--comic-ink),
      0 0 0 2px rgba(255, 76, 168, 0.2) inset,
      0 0 10px rgba(203, 255, 51, 0.16);
  }

  .hero-copy::after {
    left: 0.92rem;
    bottom: -0.44rem;
    width: 0.76rem;
    height: 0.76rem;
    border-right-width: 2.2px;
    border-bottom-width: 2.2px;
  }

  .hero-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .img-btn {
    width: 100%;
    min-width: 0;
    height: 58px;
    padding: 0.3rem 0.38rem;
    border-radius: 11px;
  }

  .img-btn-text {
    font-size: 0.56rem;
    letter-spacing: 0.06em;
    padding: 0.1rem 0.3rem;
  }

  .graffiti-toggle {
    right: 0.72rem;
    top: 3rem;
    left: auto;
    bottom: auto;
    width: clamp(112px, 31vw, 136px);
    min-width: 0;
    padding: 0;
    border-radius: 999px;
    transform: rotate(-4deg);
  }

  .graffiti-toggle-art {
    inset: 0 5% 20%;
  }

  .graffiti-toggle-label {
    left: 8%;
    right: 8%;
    bottom: 6%;
    padding: 0.26rem 0.22rem 0.28rem;
    border-radius: 11px;
  }

  .graffiti-toggle::after {
    right: -0.2rem;
    top: -0.42rem;
    font-size: 0.34rem;
    padding: 0.08rem 0.28rem 0.11rem;
  }

  .graffiti-toggle-kicker {
    font-size: 0.26rem;
    padding: 0.03rem 0.16rem 0.06rem;
  }

  .graffiti-toggle-text {
    font-size: 0.44rem;
  }

  .graffiti-toggle-hint {
    font-size: 0.33rem;
  }

  .graffiti-tools {
    width: min(360px, calc(100% - 1rem));
    top: 0.55rem;
    border-radius: 14px;
    padding: 0.5rem 0.5rem 0.54rem;
    gap: 0.36rem;
  }

  .graffiti-tools-title {
    font-size: 0.86rem;
  }

  .graffiti-tools-subtitle {
    font-size: 0.4rem;
  }

  .graffiti-tools-footer {
    padding-top: 0.18rem;
  }

  .graffiti-tools-toggle {
    gap: 0.24rem;
    padding: 0.24rem 0.32rem 0.26rem;
    border-radius: 10px;
  }

  .graffiti-tools-toggle-arrow {
    width: 0.52rem;
    height: 0.52rem;
  }

  .graffiti-tools-toggle-text {
    font-size: 0.35rem;
  }

  .graffiti-status span {
    min-height: 28px;
    font-size: 0.42rem;
    padding: 0.22rem 0.24rem 0.2rem;
  }

  .graffiti-group-title {
    font-size: 0.38rem;
  }

  .graffiti-inline-icon {
    width: 0.9rem;
    height: 0.9rem;
  }

  .graffiti-chip {
    padding: 0.24rem 0.36rem;
    font-size: 0.36rem;
    gap: 0.18rem;
  }

  .graffiti-chip-icon {
    width: 1.44rem;
    height: 1.44rem;
  }

  .graffiti-actions {
    gap: 0.26rem;
  }

  .graffiti-actions .graffiti-chip {
    width: 100%;
    border-radius: 9px;
  }

  .graffiti-actions .graffiti-chip .graffiti-chip-icon {
    width: clamp(2.42rem, 19.2vw, 2.95rem);
    height: clamp(2.42rem, 19.2vw, 2.95rem);
  }

  .graffiti-range-label {
    gap: 0.14rem;
  }

  .graffiti-range strong {
    font-size: 0.36rem;
  }

  .graffiti-hint {
    padding: 0.22rem 0.24rem;
    font-size: 0.52rem;
  }

  .graffiti-shortcuts {
    font-size: 0.4rem;
  }

  .graffiti-shortcuts kbd {
    font-size: 0.34rem;
  }

  .more-info::before {
    font-size: 0.6rem;
    padding: 0.18rem 0.34rem;
  }

  .more-info {
    width: clamp(64px, 16vw, 88px);
    bottom: clamp(0.85rem, 3.6vw, 1.35rem);
  }

  .hero .floating-stickers span:nth-child(1) {
    top: 12%;
    left: 3.2%;
  }

  .hero .floating-stickers span:nth-child(4) {
    left: 2.5%;
    right: auto;
    top: 74%;
    transform: rotate(-7deg);
  }

  .hero .floating-stickers span:nth-child(2) {
    top: 44%;
    right: 0.8%;
  }

  .hero .floating-stickers span:nth-child(3) {
    right: 2.4%;
    top: auto;
    bottom: calc(20% + 60px);
  }

  .hero .floating-stickers span:nth-child(5) {
    left: auto;
    right: calc(18% - 265px);
    top: calc(12% - 20px + 300px);
  }

  .hero-graffiti {
    opacity: 0.72;
  }

  .tag-toxic {
    right: 2%;
    top: 20%;
    font-size: 0.56rem;
    padding: 0.14rem 0.36rem 0.18rem;
  }

  .tag-spray {
    left: 1.5%;
    top: 31%;
    bottom: auto;
    font-size: 0.54rem;
    padding: 0.14rem 0.34rem 0.18rem;
  }

  .tag-crew {
    right: 12%;
    bottom: 13%;
    font-size: 0.54rem;
    padding: 0.14rem 0.34rem 0.18rem;
  }

  .graffiti-tape {
    display: none;
  }

  .spray-mark-a {
    left: 12%;
    top: 16%;
    width: 70px;
    height: 54px;
  }

  .spray-mark-b {
    display: none;
  }

  .spray-mark-c {
    left: 62%;
    bottom: 10%;
    width: 62px;
    height: 48px;
  }

  .toxic-plaque {
    margin: 0;
    padding: 0.46rem 0.54rem 0.5rem;
    border-radius: 12px;
  }

  .toxic-plaque-kicker {
    font-size: 0.54rem;
    letter-spacing: 0.07em;
  }

  .toxic-plaque-text {
    margin-top: 0.26rem;
    font-size: 0.67rem;
    line-height: 1.3;
  }

  .toxic-plaque-chips {
    margin-top: 0.3rem;
    gap: 0.24rem;
  }

  .toxic-plaque-chips span {
    padding: 0.1rem 0.26rem 0.12rem;
    font-size: 0.46rem;
  }

  .plaque-drip {
    width: 10px;
  }

  .plaque-drip::before {
    width: 11px;
    height: 8px;
    top: -3px;
  }

  .plaque-drip-a {
    right: 14%;
    height: 22px;
  }

  .plaque-drip-b {
    right: 29%;
    height: 18px;
  }

  .plaque-drip-c {
    right: 5%;
    height: 15px;
  }

  .doodle-zig {
    left: 34%;
    top: 12%;
    width: 72px;
    height: 12px;
  }

  .doodle-arrow {
    right: 2%;
    bottom: 27%;
    width: 46px;
    height: 14px;
    border-top-width: 2px;
  }

  .doodle-arrow::before {
    top: -6px;
    width: 9px;
    height: 9px;
    border-top-width: 2px;
    border-right-width: 2px;
  }

  .doodle-cross {
    left: 18%;
    bottom: 11%;
    width: 20px;
    height: 20px;
  }

  .doodle-cross::before,
  .doodle-cross::after {
    width: 20px;
    height: 2px;
  }

  .story-stage {
    min-height: 100%;
    padding: 0.48rem;
    border-width: 2px;
    border-radius: 14px;
    box-shadow:
      0 0 0 1px rgba(12, 12, 18, 0.9) inset,
      0.1rem 0.1rem 0 rgba(15, 17, 23, 0.88),
      0.24rem 0.3rem 0 rgba(0, 0, 0, 0.3),
      0 0 12px rgba(203, 255, 51, 0.14);
  }

  .story-pack-item {
    max-width: clamp(42px, 14vw, 86px);
  }

  .story-pack-item:nth-child(n + 5) {
    display: none;
  }

  .story-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 0.45rem;
  }

  .story-timeline {
    min-height: 90px;
    align-self: auto;
    padding-left: 0.12rem;
  }

  .story-timeline-line {
    left: calc(0.08rem - 10px);
    top: 10px;
    bottom: 10px;
    width: 4px;
  }

  .story-timeline-items {
    gap: 0.2rem;
  }

  .story-timeline-item {
    padding: 0.15rem 0.24rem 0.15rem 1.28rem;
    border-width: 1.6px;
    border-radius: 9px;
  }

  .story-timeline-item::before {
    left: 0.04rem;
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .story-timeline-year {
    font-size: 0.38rem;
  }

  .story-timeline-label {
    font-size: 0.62rem;
  }

  .story-viewport {
    height: min(44vh, 360px);
    border-radius: 14px;
    border-width: 2px;
    box-shadow:
      0 0 0 1.5px rgba(12, 12, 18, 0.88),
      0.1rem 0.1rem 0 rgba(15, 17, 23, 0.86),
      0.26rem 0.3rem 0 rgba(0, 0, 0, 0.3),
      0 10px 18px rgba(0, 0, 0, 0.36);
  }

  .story-viewport::before {
    inset: 0.24rem;
    border-width: 1.4px;
  }

  .story-slide {
    padding: 0.42rem;
  }

  .story-slide-frame {
    border-radius: 11px;
  }

  .story-overlay {
    min-height: auto;
    max-width: none;
    padding: 0.5rem 0.56rem;
    border-width: 2px;
    border-radius: 12px;
    gap: 0.26rem;
    box-shadow:
      0 0 0 1px rgba(11, 12, 18, 0.86) inset,
      0.08rem 0.08rem 0 rgba(15, 17, 23, 0.86),
      0.2rem 0.24rem 0 rgba(0, 0, 0, 0.26);
  }

  .story-overlay::after {
    inset: 0.22rem;
    border-width: 1.2px;
    border-radius: 8px;
  }

  .story-kicker {
    font-size: 0.34rem;
    padding: 0.14rem 0.3rem 0.16rem;
  }

  .story-overlay h3 {
    font-size: 0.82rem;
    line-height: 0.98;
    -webkit-text-stroke: 0.8px rgba(11, 11, 13, 0.8);
    max-width: none;
    padding-right: 0.08em;
  }

  .story-overlay h3::before {
    opacity: 0.28;
    left: -0.02em;
    right: 0.02em;
    height: 0.18em;
  }

  .story-overlay h3::after {
    display: none;
  }

  .story-overlay .story-body {
    margin-top: 0.14rem;
    font-size: 0.54rem;
    line-height: 1.28;
    max-height: none;
    border-width: 1.8px;
    padding: 0.42rem 0.44rem 0.46rem;
  }

  .story-cta {
    margin-top: 0.24rem;
    font-size: 0.5rem;
    padding: 0.2rem 0.34rem;
    border-radius: 6px;
    border-width: 1.8px;
  }

  .story-cta.is-next::before,
  .story-cta.is-next::after {
    font-size: 0.72rem;
  }

  .story-cta.is-next::before {
    left: -0.58rem;
  }

  .story-cta.is-next::after {
    right: -0.58rem;
  }

  .story-controls {
    right: 0.44rem;
    bottom: 0.42rem;
    gap: 0.28rem;
  }

  .story-controls::before {
    inset: -4px -6px;
    border-width: 1.5px;
    border-radius: 10px;
  }

  .story-nav {
    width: 32px;
    height: 28px;
    border-width: 1.8px;
    border-radius: 6px;
    font-size: 0.92rem;
  }

  .origin-toxic-badge.badge-right,
  .origin-splat.splat-c {
    display: none;
  }

  .join-copy h2 {
    font-size: clamp(1.6rem, 10.5vw, 2.8rem);
  }

  .contract-code {
    width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 980px) {
  .liquid-footer-top {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .liquid-brand {
    grid-column: 1 / -1;
  }

  .liquid-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .join-grid {
    gap: 0.78rem;
  }

  .join-chart-head {
    gap: 0.24rem;
    padding: 0.16rem 0.2rem;
    flex-wrap: wrap;
  }

  .join-chart-title {
    min-height: 1.18rem;
    padding: 0.12rem 0.34rem 0.14rem;
    font-size: clamp(0.36rem, 1.95vw, 0.44rem);
  }

  .join-chart-head-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 0.26rem;
  }

  .join-chart-live-badge,
  .join-chart-open-link {
    min-height: 1.04rem;
    padding: 0.1rem 0.32rem 0.12rem;
    font-size: clamp(0.3rem, 1.7vw, 0.4rem);
  }

  .join-chart-live-dot {
    width: 0.4rem;
    height: 0.4rem;
  }

  .join-visual {
    --join-chart-pad: clamp(0.45rem, 1.8vw, 0.62rem);
    aspect-ratio: 16 / 10;
    border-width: 4px;
    border-radius: 14px;
    box-shadow:
      0 10px 0 rgba(13, 13, 18, 0.98),
      0 18px 28px rgba(0, 0, 0, 0.38),
      0 0 0 2px rgba(255, 46, 99, 0.26) inset,
      0 0 0 4px rgba(11, 11, 16, 0.86) inset,
      0 0 20px rgba(108, 43, 217, 0.3);
  }

  .join-visual::before {
    inset: calc(var(--join-chart-pad) - 0.12rem);
    border-width: 2px;
    border-radius: 10px;
  }

  .join-visual::after {
    display: none;
  }

  .join-chart {
    border-width: 2px;
    border-radius: 9px;
  }

  .join-chart-status {
    bottom: calc(var(--join-chart-pad) + 0.16rem);
    max-width: calc(100% - (var(--join-chart-pad) * 2) - 0.34rem);
    padding: 0.16rem 0.42rem 0.18rem;
  }

  .join-copy {
    width: 100%;
  }

  .contract-code {
    padding: 0.6rem 0.7rem 0.64rem;
  }

  .contract-copy-feedback {
    margin-top: 0.42rem;
  }

  .join-links {
    margin-top: 0.42rem;
    gap: 0.52rem;
  }

  .join-links a.join-link-image {
    height: clamp(70px, 20vw, 102px);
    min-width: clamp(108px, 30vw, 156px);
  }

  .join-shape {
    opacity: 0.28;
  }

  .join-shape-2,
  .join-shape-3 {
    display: none;
  }

  .join-shape-1 {
    top: 7%;
    left: -2%;
    width: clamp(100px, 24vw, 170px);
  }

  .join-shape-4 {
    right: -3%;
    bottom: 20%;
    width: clamp(96px, 22vw, 158px);
  }

  .join-shape-5 {
    width: clamp(110px, 30vw, 180px);
    bottom: 2%;
  }

  .rm-float-btn {
    right: 50px;
    top: 50%;
    bottom: auto;
    width: clamp(76px, 22vw, 102px);
    padding: 0;
    border-radius: 0;
  }

  .rm-float-btn-tag {
    font-size: 0.34rem;
    padding: 0.07rem 0.24rem 0.08rem;
  }

  .rm-modal {
    padding: 0.56rem;
  }

  .rm-modal-dialog {
    border-radius: 16px;
    padding: 0.56rem;
  }

  .rm-modal-title {
    margin-right: 2rem;
    font-size: clamp(0.94rem, 5.2vw, 1.2rem);
  }

  .rm-modal-close {
    width: 32px;
    height: 32px;
    font-size: 1.16rem;
  }

  .rm-modal-frame {
    border-radius: 12px;
    padding: 0.3rem;
  }

  .rm-modal-image {
    max-height: calc(100vh - 150px);
    border-radius: 10px;
  }

  .site-footer {
    padding-top: clamp(1.3rem, 6vw, 2rem);
    padding-bottom: clamp(1.6rem, 7vw, 2.2rem);
  }

  .liquid-card {
    border-radius: 16px;
    padding: 0.66rem;
  }

  .liquid-footer-top {
    grid-template-columns: 1fr;
    gap: 0.56rem;
  }

  .liquid-contract,
  .liquid-buy {
    width: 100%;
  }

  .liquid-buy {
    min-height: 48px;
    font-size: 0.76rem;
  }

  .liquid-links-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .liquid-col {
    padding: 0.5rem 0.54rem 0.56rem;
  }

  .liquid-copy {
    margin-top: 0.6rem;
    line-height: 1.35;
  }
}

@media (max-height: 760px) {
  .hero .floating-stickers {
    display: none;
  }

  .story-stage {
    min-height: 100%;
    padding: 0.56rem;
  }

  .story-viewport {
    height: min(52vh, 420px);
  }

  .story-overlay {
    min-height: auto;
  }

}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  #cursor,
  #cursor-splash-layer {
    display: none;
  }
}

@media (pointer: fine) {
  html,
  body,
  body * {
    cursor: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.origin .story-stage {
  border-radius: 0;
}

/* Cross-device stabilization overrides */
@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }

  main {
    overflow-x: clip;
  }

  .panel {
    padding-top: clamp(3.8rem, 8.4vw, 5.6rem);
    padding-bottom: max(0.9rem, env(safe-area-inset-bottom));
  }

  .hero-layout,
  .story-layout,
  .doodle-layout,
  .join-grid {
    width: min(100%, var(--site-max-width));
  }

  .sequence-frame {
    transform: translateX(0);
  }

  .story-viewport,
  .join-visual,
  .doodle-board {
    max-width: 100%;
  }

  .join-links a.join-link-image {
    min-width: clamp(96px, 26vw, 144px);
  }

  .why-corner-link {
    width: clamp(94px, 18vw, 154px);
  }
}

@media (max-width: 820px) {
  .panel {
    height: auto;
    min-height: 100svh;
  }

  .hero-layout {
    height: auto;
  }

  .graffiti-tools {
    max-height: calc(100dvh - 0.9rem);
    overflow-y: auto;
  }

  .rm-float-btn {
    right: max(0.38rem, calc(env(safe-area-inset-right) + 0.2rem));
    top: auto;
    bottom: max(0.46rem, calc(env(safe-area-inset-bottom) + 0.32rem));
    transform: none;
  }

  .rm-float-btn:hover,
  .rm-float-btn:active {
    transform: none;
  }
}

@media (max-width: 560px) {
  .hero-graffiti {
    opacity: 0.62;
  }

  .why-corner-link {
    width: clamp(82px, 26vw, 116px);
  }

  .toxic-divider-copy {
    font-size: 0.36rem;
  }

  .toxic-divider-value {
    font-size: 0.35rem;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .panel {
    height: auto;
    min-height: 100dvh;
    padding-top: clamp(2.8rem, 8vh, 3.6rem);
    padding-bottom: max(0.72rem, env(safe-area-inset-bottom));
  }

  .hero-layout {
    grid-template-columns: minmax(220px, 0.86fr) minmax(260px, 1.14fr);
    gap: 0.62rem;
  }

  .sequence-frame {
    width: min(38vw, 52vh, 286px);
  }

  .story-layout {
    grid-template-columns: minmax(80px, 0.22fr) minmax(0, 1fr);
  }

  .story-overlay .story-body {
    max-height: 28vh;
    overflow-y: auto;
  }

  .why-corner-links {
    display: none;
  }
}

@media (pointer: coarse) {
  .img-btn,
  .graffiti-chip,
  .graffiti-tools-toggle,
  .doodle-btn,
  .why-nav,
  .story-nav {
    min-height: 44px;
    touch-action: manipulation;
  }

  .join-links a.join-link-image,
  .why-corner-link,
  .rm-float-btn {
    touch-action: manipulation;
  }
}

@media (max-width: 820px) {
  .graffiti-toggle {
    right: max(0.56rem, calc(env(safe-area-inset-right) + 0.18rem));
    top: max(2.8rem, calc(env(safe-area-inset-top) + 2.2rem));
  }

  .graffiti-tools {
    top: max(0.52rem, calc(env(safe-area-inset-top) + 0.12rem));
  }

  .more-info {
    bottom: max(0.72rem, calc(env(safe-area-inset-bottom) + 0.34rem));
  }
}

@media (max-width: 640px) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .img-btn:nth-child(3) {
    grid-column: 1 / -1;
    width: min(100%, 280px);
    justify-self: center;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .img-btn:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }

  .hero .floating-stickers {
    display: none;
  }

  .toxic-plaque-ca-value,
  .toxic-divider-value,
  .contract-code-value {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .why-chart-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .why-slide .why-chart-open-link {
    white-space: normal;
  }
}

@media (max-width: 820px) and (pointer: coarse) {
  .doodle-nick-input {
    font-size: 16px;
  }
}




