:root {
  --bg: #100b08;
  --bg-deep: #050403;
  --ink: #fff0bc;
  --muted: #c8c2b3;
  --gold: #efff45;
  --red: #ff2a2a;
  --blue: #42b6ff;
  --mint: #47ff8a;
  --violet: #b05cff;
  --rust: #b55022;
  --ash: #191713;
  --line: rgba(255, 240, 188, 0.2);
  --panel: rgba(11, 10, 8, 0.82);
  --panel-strong: rgba(17, 15, 11, 0.94);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  --pointer-x: 50%;
  --pointer-y: 42%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 106.25%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 42, 42, 0.16), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(71, 255, 138, 0.11), transparent 24%),
    linear-gradient(180deg, #080604 0%, #15100c 42%, #050403 100%);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  overflow-x: hidden;
}

body::selection {
  color: #120b07;
  background: var(--gold);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 60;
  opacity: 0.18;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(255, 42, 42, 0.08) 0 1px, transparent 1px 23px);
  mix-blend-mode: overlay;
}

body::after {
  z-index: 61;
  opacity: 0.08;
  background:
    radial-gradient(circle at 20% 30%, #fff 0 1px, transparent 1px 60px),
    radial-gradient(circle at 80% 70%, #fff 0 1px, transparent 1px 70px),
    repeating-linear-gradient(135deg, transparent 0 10px, rgba(255, 255, 255, 0.16) 10px 11px, transparent 11px 24px);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scene-backdrop,
#sky-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.scene-backdrop {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.96), rgba(20, 11, 8, 0.74) 48%, rgba(5, 4, 3, 0.96)),
    image-set(
      url("assets/goofy-lurking-background-720.jpg") 1x,
      url("assets/goofy-lurking-background.jpg") 2x
    )
    center 42% / cover no-repeat;
  filter: contrast(1.24) saturate(0.78) sepia(0.18);
}

.scene-backdrop::before {
  content: "";
  position: absolute;
  inset: -34px;
  background:
    image-set(
      url("assets/goofy-lurking-background-720.jpg") 1x,
      url("assets/goofy-lurking-background.jpg") 2x
    )
    center 42% / cover no-repeat;
  filter: blur(28px) saturate(1.5) contrast(1.2);
  opacity: 0.24;
  transform: scale(1.04);
}

.scene-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(239, 255, 69, 0.04) 0 2px, transparent 2px 18px),
    linear-gradient(180deg, rgba(5, 4, 3, 0.54), rgba(5, 4, 3, 0.88)),
    linear-gradient(110deg, rgba(255, 42, 42, 0.28), transparent 34%, rgba(71, 255, 138, 0.13) 68%, rgba(239, 255, 69, 0.19));
}

#sky-canvas {
  z-index: -2;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 2px solid rgba(239, 255, 69, 0.55);
  background:
    repeating-linear-gradient(135deg, rgba(239, 255, 69, 0.12) 0 8px, transparent 8px 18px),
    rgba(8, 7, 5, 0.94);
  color: var(--ink);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 6px 10px 6px 6px;
  border: 1px solid rgba(239, 255, 69, 0.28);
  background:
    repeating-linear-gradient(135deg, rgba(255, 42, 42, 0.12) 0 5px, transparent 5px 11px),
    rgba(0, 0, 0, 0.36);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.54);
  font-size: 1.45rem;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 2px 2px 0 rgba(255, 42, 42, 0.42);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand:hover {
  transform: rotate(-1deg) translateY(-1px);
  border-color: rgba(239, 255, 69, 0.82);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.58), 0 0 28px rgba(239, 255, 69, 0.18);
}

.brand-icon {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(239, 255, 69, 0.72);
  object-fit: cover;
  object-position: 50% 28%;
  filter: contrast(1.1) saturate(0.92);
  box-shadow: 3px 3px 0 rgba(255, 42, 42, 0.58);
}

.brand strong {
  color: var(--gold);
  text-shadow: 2px 2px 0 rgba(255, 42, 42, 0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  padding: 27px 0 24px;
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 4px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--mint));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(9, 9, 20, 0.18);
  border-radius: 4px;
  background: rgba(239, 255, 69, 0.08);
}

.menu-toggle span:not(.sr-only) {
  width: 21px;
  height: 3px;
  margin: 3px 0;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: 122px 24px 64px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 76px 0 0;
  background:
    repeating-linear-gradient(156deg, rgba(239, 255, 69, 0.035) 0 3px, transparent 3px 22px),
    linear-gradient(90deg, rgba(5, 4, 3, 0.9), rgba(5, 4, 3, 0.4) 52%, rgba(5, 4, 3, 0.82)),
    linear-gradient(180deg, transparent 0%, rgba(5, 4, 3, 0.84) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(290px, 1fr) minmax(320px, 450px);
  grid-template-areas: "copy poster";
  align-items: center;
  gap: 28px 52px;
}

.hero-copy {
  grid-area: copy;
  position: relative;
  max-width: 620px;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  margin: 0 0 14px;
  padding: 5px 8px;
  color: #0a0906;
  background: var(--gold);
  font-size: 0.82rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 5px 5px 0 rgba(255, 42, 42, 0.62);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  color: #fff0bc;
  font-size: 6rem;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow:
    4px 4px 0 rgba(255, 42, 42, 0.72),
    -3px -2px 0 rgba(71, 255, 138, 0.22),
    0 10px 36px rgba(0, 0, 0, 0.75);
}

.contract-bubble {
  position: relative;
  width: min(420px, 100%);
  margin: 20px 0 0;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 3px solid #fff0bc;
  border-radius: 999px;
  color: #15100a;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.85), transparent 18%),
    linear-gradient(135deg, #ffe87a 0%, #ffb800 46%, #47ff8a 100%);
  text-decoration: none;
  box-shadow:
    7px 7px 0 rgba(255, 42, 42, 0.68),
    0 0 28px rgba(255, 232, 122, 0.32);
  transform: rotate(-1.5deg);
}

.contract-bubble::after {
  content: "";
  position: absolute;
  left: 38px;
  bottom: -16px;
  width: 34px;
  height: 24px;
  background: #ffcf23;
  clip-path: polygon(0 0, 100% 0, 22% 100%);
}

.contract-bubble span,
.contract-bubble strong {
  position: relative;
  z-index: 1;
}

.contract-bubble span {
  color: #060504;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.contract-bubble strong {
  padding: 6px 9px;
  border: 2px solid currentColor;
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-capsule-sticker {
  position: absolute;
  top: -20px;
  right: 12px;
  width: clamp(82px, 9vw, 128px);
  margin: 0;
  z-index: 2;
  transform: rotate(12deg);
  animation: capsule-float 4.8s ease-in-out infinite;
  filter: drop-shadow(0 18px 28px rgba(71, 255, 138, 0.36)) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.7));
}

.home-capsule-sticker::before {
  content: "";
  position: absolute;
  inset: 18% 8%;
  z-index: -1;
  border-radius: 999px;
  background: rgba(71, 255, 138, 0.38);
  filter: blur(18px);
}

.home-capsule-sticker img {
  width: 100%;
}

@keyframes capsule-float {
  0%,
  100% {
    transform: translateY(0) rotate(12deg);
  }

  50% {
    transform: translateY(-12px) rotate(8deg);
  }
}

h2 {
  font-size: 3.15rem;
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(255, 42, 42, 0.34);
}

h3 {
  font-size: 1.25rem;
  line-height: 1.18;
}

.hero-lede {
  max-width: 560px;
  margin: 22px 0 0;
  color: #f2e4bd;
  font-size: 1.2rem;
  line-height: 1.55;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 2px solid rgba(255, 240, 188, 0.22);
  border-radius: 4px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff8d8;
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, #ff2a2a, #8b0d0d);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.55), 0 14px 34px rgba(255, 42, 42, 0.28);
}

.button-secondary {
  color: #120d08;
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.18) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, #efff45, #ff8b2f);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.55), 0 14px 34px rgba(239, 255, 69, 0.2);
}

.poster-stage {
  grid-area: poster;
  position: relative;
  display: grid;
  align-items: start;
  justify-items: end;
  width: min(100%, 440px);
  justify-self: end;
  margin: 0;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 220ms ease;
}

.poster-stage::before,
.poster-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.poster-stage::before {
  inset: 5% -7% -5%;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(239, 255, 69, 0.36), rgba(71, 255, 138, 0.18), rgba(255, 42, 42, 0.34));
  filter: blur(22px);
  opacity: 0.72;
}

.poster-stage::after {
  inset: 0;
  border-radius: 4px;
  border: 2px solid rgba(239, 255, 69, 0.36);
  box-shadow: inset 0 0 0 1px rgba(255, 42, 42, 0.22);
}

.poster-stage > img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(92svh - 154px);
  object-fit: contain;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.hero-gallery {
  width: min(100%, 378px);
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.hero-gallery-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(8, 7, 5, 0.9);
  box-shadow: var(--shadow);
}

.hero-gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.12) saturate(0.95);
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 520ms ease, transform 900ms ease;
}

.hero-gallery-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 58px;
  z-index: 3;
  display: grid;
  gap: 8px;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.62);
}

.hero-gallery-caption span {
  width: max-content;
  padding: 7px 10px;
  border-radius: 3px;
  color: #140d06;
  background: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-gallery-caption strong {
  color: #fff8db;
  font-size: 1.7rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-gallery-dots {
  position: absolute;
  left: 18px;
  bottom: 20px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-gallery-dot {
  width: 36px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.28);
  transition: width 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-gallery-dot.is-active {
  width: 52px;
  border-color: rgba(245, 200, 95, 0.95);
  background: var(--gold);
}

.celebration-strip {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 2px solid rgba(0, 0, 0, 0.78);
  border-bottom: 2px solid rgba(0, 0, 0, 0.78);
  background:
    repeating-linear-gradient(135deg, #efff45 0 18px, #101010 18px 36px);
  color: #080604;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
}

.strip-track {
  display: flex;
  width: max-content;
  gap: 32px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.34);
  animation: marquee 18s linear infinite;
}

.strip-track span {
  white-space: nowrap;
}

.billboard-takeover {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 104px 24px 78px;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.92) 0%, rgba(5, 4, 3, 0.56) 42%, rgba(5, 4, 3, 0.16) 70%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.16), rgba(5, 4, 3, 0.86)),
    image-set(
      url("assets/goofy-billboard-720.jpg") 1x,
      url("assets/goofy-billboard.jpg") 2x
    )
    center 39% / cover no-repeat;
  border-bottom: 2px solid rgba(239, 255, 69, 0.28);
}

.billboard-takeover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(135deg, rgba(255, 42, 42, 0.08) 0 2px, transparent 2px 18px),
    linear-gradient(110deg, rgba(239, 255, 69, 0.26), transparent 24%, rgba(71, 255, 138, 0.16) 68%, transparent),
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.2), transparent 24%);
  mix-blend-mode: screen;
}

.billboard-takeover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: repeating-linear-gradient(90deg, #efff45 0 30px, #ff2a2a 30px 60px, #101010 60px 90px);
  box-shadow: 0 -16px 38px rgba(255, 42, 42, 0.2);
}

.billboard-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 560px) 1fr;
  gap: 34px;
  align-items: end;
}

.billboard-copy {
  padding-top: 22px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.62);
}

.billboard-copy h2 {
  max-width: 560px;
  color: #fff0bc;
  font-size: 4.2rem;
  line-height: 0.96;
}

.billboard-copy p:last-child {
  max-width: 540px;
  margin: 22px 0 0;
  color: #f4f9ff;
  font-size: 1.12rem;
  line-height: 1.62;
}

.road-signs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.road-signs span {
  position: relative;
  min-width: 168px;
  padding: 11px 14px;
  border: 2px solid rgba(239, 255, 69, 0.74);
  border-radius: 4px;
  color: #f8fff5;
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.18) 0 6px, transparent 6px 12px),
    rgba(14, 86, 52, 0.82);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  font-size: 0.98rem;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
  transform: rotate(-1.5deg);
}

.road-signs .road-sign-bling {
  min-width: 204px;
  color: #120b05;
  border-color: #ffd95a;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 6px, transparent 6px 12px),
    linear-gradient(135deg, #f7d15e, #b97710 48%, #ffe887);
  box-shadow:
    0 0 0 5px rgba(0, 0, 0, 0.64),
    0 0 0 9px rgba(255, 217, 90, 0.36),
    0 18px 46px rgba(0, 0, 0, 0.52);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.42);
}

.road-signs .road-sign-bling::before,
.road-signs .road-sign-bling::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.road-signs .road-sign-bling::before {
  left: -18px;
  right: -18px;
  top: -17px;
  bottom: -17px;
  border-radius: 10px;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 6px, #4b2b00 6px 8px, #ffd95a 8px 13px, #fff0a5 13px 15px, transparent 15px 27px) top left / 34px 18px repeat-x,
    repeating-radial-gradient(ellipse at center, transparent 0 6px, #4b2b00 6px 8px, #ffd95a 8px 13px, #fff0a5 13px 15px, transparent 15px 27px) bottom left / 34px 18px repeat-x;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.55));
}

.road-signs .road-sign-bling::after {
  left: -18px;
  right: -18px;
  top: -10px;
  bottom: -10px;
  border-left: 14px dotted #ffd95a;
  border-right: 14px dotted #ffd95a;
  filter: drop-shadow(0 3px 0 #4b2b00);
}

.road-signs span:nth-child(2) {
  transform: rotate(1.8deg);
}

.charity-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 96px 24px;
  color: var(--ink);
  background:
    repeating-linear-gradient(135deg, rgba(239, 255, 69, 0.045) 0 2px, transparent 2px 18px),
    linear-gradient(120deg, rgba(5, 4, 3, 0.98), rgba(22, 26, 16, 0.94) 45%, rgba(17, 70, 39, 0.5));
  border-top: 2px solid rgba(239, 255, 69, 0.44);
  border-bottom: 2px solid rgba(255, 42, 42, 0.26);
  isolation: isolate;
}

.charity-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 18%, rgba(239, 255, 69, 0.22), transparent 26%),
    radial-gradient(circle at 84% 62%, rgba(71, 255, 138, 0.2), transparent 30%);
}

.charity-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(160deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 16px),
    linear-gradient(90deg, rgba(5, 4, 3, 0.98) 0%, rgba(5, 4, 3, 0.86) 48%, rgba(5, 4, 3, 0.34) 72%, rgba(5, 4, 3, 0.12));
}

.charity-glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, #47ff8a 0 24px, #efff45 24px 48px, #ff2a2a 48px 72px);
  box-shadow: 0 -18px 42px rgba(71, 255, 138, 0.22);
}

.charity-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  gap: 34px;
  align-items: center;
}

.charity-copy {
  max-width: 980px;
}

.charity-copy .eyebrow {
  color: #090805;
}

.charity-copy h2 {
  max-width: 900px;
  color: var(--ink);
  font-size: 4.35rem;
  line-height: 0.95;
  text-shadow: 4px 4px 0 rgba(255, 42, 42, 0.42), 0 10px 36px rgba(0, 0, 0, 0.8);
}

.charity-copy p {
  max-width: 700px;
  margin: 22px 0 0;
  color: #e5d8b6;
  font-size: 1.12rem;
  line-height: 1.65;
}

.charity-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.charity-proof div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(239, 255, 69, 0.24);
  border-radius: 4px;
  background:
    repeating-linear-gradient(135deg, rgba(239, 255, 69, 0.04) 0 3px, transparent 3px 13px),
    rgba(0, 0, 0, 0.58);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.charity-proof span {
  display: block;
  color: var(--mint);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.charity-proof strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.95rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.content-section {
  position: relative;
  z-index: 1;
  padding: 88px 24px;
  background:
    repeating-linear-gradient(145deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 18px),
    linear-gradient(180deg, rgba(10, 8, 6, 0.96), rgba(5, 4, 3, 0.94)),
    linear-gradient(110deg, rgba(255, 42, 42, 0.14), rgba(71, 255, 138, 0.08), rgba(239, 255, 69, 0.08));
  border-top: 1px solid rgba(239, 255, 69, 0.12);
}

.content-section:nth-of-type(odd) {
  background:
    repeating-linear-gradient(45deg, rgba(239, 255, 69, 0.025) 0 2px, transparent 2px 20px),
    linear-gradient(180deg, rgba(12, 9, 6, 0.96), rgba(5, 4, 3, 0.92)),
    linear-gradient(90deg, rgba(71, 255, 138, 0.08), rgba(239, 255, 69, 0.06), rgba(176, 92, 255, 0.09));
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about-grid,
.dex-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(300px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.section-copy p,
.dex-layout p {
  margin: 0;
  color: #e5d8b6;
  font-size: 1.05rem;
  line-height: 1.7;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.stat-row div,
.social-card,
.meme-card,
.meme-gallery-card,
.dex-panel {
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 13px),
    var(--panel-strong);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.48), 0 18px 50px rgba(0, 0, 0, 0.34);
}

.stat-row div {
  min-height: 96px;
  padding: 18px;
}

.stat-row strong {
  display: block;
  color: var(--mint);
  font-size: 2.2rem;
  line-height: 1;
}

.stat-row span {
  display: block;
  margin-top: 8px;
  color: #e5d8b6;
  font-size: 0.9rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.social-grid,
.meme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.social-card,
.meme-card,
.meme-gallery-card {
  min-height: 210px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-card:hover,
.meme-card:hover,
.meme-gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 255, 69, 0.72);
  background:
    repeating-linear-gradient(135deg, rgba(255, 42, 42, 0.05) 0 3px, transparent 3px 13px),
    rgba(25, 17, 12, 0.96);
}

.social-card span,
.meme-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 4px;
  color: #110c08;
  background: var(--gold);
  font-weight: 900;
}

.twitter-card {
  position: relative;
}

.twitter-card::after {
  content: "x.com/goofyahhhcoin";
  position: absolute;
  right: 10px;
  top: 10px;
  max-width: calc(100% - 74px);
  padding: 3px 6px;
  border: 1px solid #00ff00;
  color: #00ff00;
  background: #000000;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 #ff00ff;
}

.social-card .twitter-logo {
  background: #000000;
  border: 2px solid #ffff00;
  box-shadow: 4px 4px 0 #ff00ff, 0 0 18px rgba(0, 255, 0, 0.62);
}

.twitter-logo svg {
  width: 25px;
  height: 25px;
  fill: #ffffff;
  filter: drop-shadow(0 0 5px #00ff00);
}

.social-card strong {
  display: block;
  font-size: 1.28rem;
}

.social-card small,
.meme-card p {
  display: block;
  margin-top: 12px;
  color: #dfd2b0;
  font-size: 0.96rem;
  line-height: 1.55;
}

.meme-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(210px, auto);
  align-items: stretch;
}

.meme-card p {
  margin-bottom: 0;
}

.meme-gallery-card {
  position: relative;
  grid-column: span 2;
  grid-row: span 2;
  min-height: 520px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.meme-gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 18px),
    linear-gradient(180deg, rgba(5, 4, 3, 0.06), rgba(5, 4, 3, 0.28) 48%, rgba(5, 4, 3, 0.88)),
    radial-gradient(circle at 75% 18%, rgba(239, 255, 69, 0.3), transparent 28%);
}

.meme-gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 68%;
  filter: contrast(1.12) saturate(0.88);
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.meme-gallery-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.meme-gallery-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.meme-gallery-card figcaption span {
  width: max-content;
  padding: 7px 10px;
  border-radius: 3px;
  color: #120b07;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.meme-gallery-card figcaption strong {
  color: #fff8db;
  font-size: 2rem;
  line-height: 0.98;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.58);
  text-transform: uppercase;
}

.dex-panel {
  padding: 22px;
}

.dex-panel > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.dex-panel > div:first-child {
  padding-top: 0;
}

.dex-panel span {
  color: var(--gold);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.dex-panel strong {
  color: #fff0bc;
  text-align: right;
}

.dex-panel .button {
  width: 100%;
  margin-top: 20px;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-top: 2px solid rgba(239, 255, 69, 0.4);
  color: #0f0b08;
  background:
    repeating-linear-gradient(135deg, #efff45 0 18px, #ff2a2a 18px 36px, #101010 36px 54px);
}

.site-footer p {
  margin: 0;
  font-weight: 900;
  color: #fff0bc;
  text-shadow: 2px 2px 0 #000;
}

.site-footer a {
  font-weight: 900;
  color: #fff0bc;
  text-shadow: 2px 2px 0 #000;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr 360px;
    gap: 24px;
  }

  h1 {
    font-size: 4.7rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .meme-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .meme-gallery-card {
    min-height: 480px;
  }

  .meme-gallery-card img {
    min-height: 480px;
  }

  .billboard-copy h2 {
    font-size: 3.2rem;
  }

  .charity-copy h2 {
    font-size: 3.25rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    background:
      repeating-linear-gradient(135deg, rgba(239, 255, 69, 0.12) 0 8px, transparent 8px 18px),
      rgba(8, 7, 5, 0.96);
  }

  .nav-shell {
    width: min(100% - 24px, 1180px);
    height: 68px;
  }

  .brand {
    min-height: 50px;
    padding: 5px 8px 5px 5px;
    gap: 7px;
    font-size: 1.16rem;
  }

  .brand-icon {
    width: 39px;
    height: 39px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(239, 255, 69, 0.34);
    border-radius: 4px;
    background:
      repeating-linear-gradient(135deg, rgba(255, 42, 42, 0.08) 0 6px, transparent 6px 14px),
      rgba(8, 7, 5, 0.98);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.52);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header.is-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 15px 12px;
  }

  .nav-link::after {
    left: 12px;
    right: auto;
    width: 44px;
    bottom: 6px;
  }

  .hero {
    min-height: auto;
    padding: 96px 16px 44px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "poster"
      "copy";
    gap: 24px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .home-capsule-sticker {
    top: -14px;
    right: 0;
    width: 76px;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .poster-stage {
    width: min(82vw, 360px);
    justify-self: center;
  }

  .poster-stage img {
    width: 100%;
    max-height: none;
  }

  .billboard-takeover {
    min-height: 720px;
    align-items: end;
    padding: 84px 16px 58px;
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.12), rgba(5, 4, 3, 0.28) 42%, rgba(5, 4, 3, 0.92)),
      image-set(
        url("assets/goofy-billboard-720.jpg") 1x,
        url("assets/goofy-billboard.jpg") 2x
      )
      center top / cover no-repeat;
  }

  .billboard-inner {
    grid-template-columns: 1fr;
  }

  .billboard-copy h2 {
    font-size: 2.45rem;
  }

  .billboard-copy p:last-child {
    font-size: 1rem;
  }

  .road-signs {
    justify-content: flex-start;
  }

  .charity-section {
    padding: 70px 16px;
    background:
      repeating-linear-gradient(135deg, rgba(239, 255, 69, 0.045) 0 2px, transparent 2px 18px),
      linear-gradient(180deg, rgba(5, 4, 3, 0.96), rgba(5, 4, 3, 0.92) 52%, rgba(17, 70, 39, 0.5));
  }

  .charity-section::after {
    background:
      repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 16px),
      linear-gradient(180deg, rgba(5, 4, 3, 0.28) 0%, rgba(5, 4, 3, 0.84) 36%, rgba(5, 4, 3, 0.96) 74%);
  }

  .charity-layout,
  .charity-proof {
    grid-template-columns: 1fr;
  }

  .charity-copy h2 {
    font-size: 2.35rem;
  }

  .charity-copy p {
    font-size: 1rem;
  }

  .about-grid,
  .dex-layout,
  .social-grid,
  .meme-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .meme-gallery-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 520px;
  }

  .meme-gallery-card img {
    min-height: 520px;
  }

  .meme-gallery-card figcaption strong {
    font-size: 1.62rem;
  }

  .content-section {
    padding: 66px 16px;
  }

  .social-card,
  .meme-card {
    min-height: 176px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 1.06rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  .home-capsule-sticker {
    top: -10px;
    width: 62px;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

}

/* Cyberpunk degen takeover */
:root {
  --bg: #000000;
  --bg-deep: #000000;
  --ink: #ffff00;
  --muted: #00ff00;
  --gold: #ffff00;
  --red: #ff00ff;
  --blue: #00ffff;
  --mint: #00ff00;
  --violet: #ff00ff;
  --rust: #ff00ff;
  --ash: #060006;
  --line: rgba(0, 255, 0, 0.55);
  --panel: rgba(0, 0, 0, 0.88);
  --panel-strong: rgba(0, 0, 0, 0.96);
  --shadow: 0 0 0 2px #00ff00, 11px 11px 0 #ff00ff, 0 0 34px rgba(0, 255, 0, 0.58);
}

html {
  background: #000000;
}

body {
  color: var(--mint);
  min-width: 0;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 0, 255, 0.22), transparent 20%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.9)),
    repeating-linear-gradient(0deg, rgba(0, 255, 0, 0.055) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 0, 255, 0.055) 0 1px, transparent 1px 19px),
    image-set(
      url("assets/goofy-lurking-background-720.jpg") 1x,
      url("assets/goofy-lurking-background.jpg") 2x
    )
    center 42% / cover fixed no-repeat,
    #000000;
  cursor: crosshair;
  font-family: "Lucida Console", "Courier New", monospace;
}

body::before {
  z-index: 62;
  opacity: 0.28;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0, 255, 0, 0.12) 0 1px, transparent 1px 11px);
  animation: crt-roll 1.8s steps(3, end) infinite;
}

body::after {
  z-index: 63;
  opacity: 0.16;
  background:
    radial-gradient(circle at 12% 20%, #00ff00 0 1px, transparent 1px 34px),
    radial-gradient(circle at 78% 66%, #ff00ff 0 1px, transparent 1px 42px),
    repeating-linear-gradient(135deg, transparent 0 7px, rgba(255, 255, 0, 0.22) 7px 8px, transparent 8px 15px);
  animation: static-pop 0.9s steps(2, end) infinite;
}

.crt-static {
  position: fixed;
  inset: 0;
  z-index: 58;
  pointer-events: none;
  opacity: 0.18;
  background:
    repeating-radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.3) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(115deg, transparent 0 9px, rgba(255, 0, 255, 0.22) 9px 10px, transparent 10px 18px);
  mix-blend-mode: screen;
  animation: static-jitter 0.62s steps(2, end) infinite;
}

.neon-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  width: 24px;
  height: 24px;
  border: 2px solid #00ff00;
  border-radius: 50%;
  box-shadow:
    0 0 10px #00ff00,
    0 0 24px #ff00ff,
    inset 0 0 12px #ffff00;
  pointer-events: none;
  transform: translate(calc(var(--cursor-x, 50vw) - 50%), calc(var(--cursor-y, 50vh) - 50%));
  transition: transform 45ms linear;
}

.music-panel {
  position: fixed;
  left: 12px;
  top: 86px;
  z-index: 126;
  width: min(238px, calc(100vw - 24px));
  padding: 7px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 7px;
  border: 2px solid #ffff00;
  color: #000000;
  background:
    repeating-linear-gradient(135deg, rgba(255, 0, 255, 0.2) 0 5px, transparent 5px 10px),
    #00ff00;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 #ff00ff, 0 0 20px rgba(0, 255, 0, 0.72);
}

.music-toggle {
  min-height: 34px;
  padding: 0 8px;
  border: 2px solid #000000;
  color: #ffff00;
  background: #000000;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.music-toggle:hover {
  animation: degen-hover 320ms steps(2, end) infinite;
}

.music-volume {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  font-size: 0.62rem;
}

.music-volume input {
  width: 100%;
  accent-color: #ff00ff;
}

.volume-meter {
  grid-column: 1 / -1;
  height: 9px;
  border: 1px solid #000000;
  background: #120012;
  overflow: hidden;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.8);
}

.volume-meter i {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00ff00, #ffff00, #ff00ff);
  box-shadow: 0 0 14px #ff00ff;
  transition: width 120ms linear;
}

.music-panel.is-muted .volume-meter i {
  background: #ff00ff;
}

.cursor-spark {
  position: fixed;
  z-index: 119;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  background: #ffff00;
  box-shadow: 0 0 16px #00ff00, 0 0 28px #ff00ff;
  animation: cursor-spark 620ms ease-out forwards;
}

.meme-pixel {
  position: fixed;
  left: 73.4vw;
  top: 41.2vh;
  z-index: 80;
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  background: #ffff00;
  box-shadow: 0 0 12px #ffff00;
  opacity: 0.7;
}

.meme-takeover {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-content: center;
  gap: 16px;
  color: #000000;
  background:
    repeating-linear-gradient(45deg, #00ff00 0 22px, #ff00ff 22px 44px, #ffff00 44px 66px);
  text-align: center;
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

.meme-takeover.is-active {
  animation: meme-takeover 1450ms steps(2, end) both;
}

.meme-takeover span,
.meme-takeover strong {
  padding: 6px 12px;
  background: #000000;
  color: #ffff00;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #ff00ff, -3px -3px 0 #00ff00;
}

.meme-takeover span {
  font-size: clamp(3.4rem, 11vw, 9rem);
  line-height: 0.82;
}

.scene-backdrop {
  background:
    radial-gradient(circle at 58% 44%, rgba(255, 0, 255, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.46) 48%, rgba(0, 0, 0, 0.92)),
    image-set(
      url("assets/goofy-lurking-background-720.jpg") 1x,
      url("assets/goofy-lurking-background.jpg") 2x
    )
    center 42% / cover no-repeat;
  filter: contrast(1.56) saturate(1.12) hue-rotate(18deg) brightness(0.72);
}

.scene-backdrop::before {
  background:
    image-set(
      url("assets/goofy-lurking-background-720.jpg") 1x,
      url("assets/goofy-lurking-background.jpg") 2x
    )
    center 42% / cover no-repeat;
  filter: blur(20px) saturate(1.8) contrast(1.34) hue-rotate(30deg);
  opacity: 0.36;
}

.scene-backdrop::after {
  background:
    repeating-linear-gradient(90deg, rgba(0, 255, 0, 0.08) 0 2px, transparent 2px 10px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.94)),
    linear-gradient(110deg, rgba(255, 0, 255, 0.34), transparent 30%, rgba(0, 255, 0, 0.22) 66%, rgba(255, 255, 0, 0.25));
}

#sky-canvas {
  z-index: -1;
  opacity: 0.9;
}

.site-header {
  border-bottom: 3px solid #00ff00;
  background:
    repeating-linear-gradient(90deg, rgba(255, 0, 255, 0.22) 0 5px, transparent 5px 10px),
    #000000;
  box-shadow: 0 0 28px rgba(0, 255, 0, 0.5);
}

.nav-shell {
  width: min(100% - 12px, 1380px);
  height: 70px;
  gap: 8px;
}

.brand,
.nav-link,
.button,
.popup-action {
  font-family: "Comic Sans MS", "Comic Sans", "Arial Rounded MT Bold", cursive;
}

.brand {
  border: 2px solid #ffff00;
  color: #ffff00;
  background:
    repeating-linear-gradient(135deg, #000000 0 7px, rgba(0, 255, 0, 0.24) 7px 14px);
  box-shadow: 5px 5px 0 #ff00ff, 0 0 18px rgba(255, 255, 0, 0.52);
}

.brand-icon {
  border-color: #00ff00;
  box-shadow: 3px 3px 0 #ff00ff, 0 0 16px #00ff00;
  filter: contrast(1.34) saturate(1.45);
}

.brand strong,
.nav-link:hover,
.nav-link.is-active {
  color: #00ff00;
}

.nav-links {
  gap: 14px;
}

.nav-link {
  color: #ff00ff;
  font-size: 1rem;
  text-shadow: 2px 2px 0 #000000, 0 0 11px #ff00ff;
}

.nav-link::after {
  bottom: 12px;
  background: linear-gradient(90deg, #00ff00, #ffff00, #ff00ff);
  box-shadow: 0 0 12px #00ff00;
}

.hero {
  min-height: 100svh;
  padding: 92px 10px 10px;
  background:
    repeating-linear-gradient(90deg, rgba(0, 255, 0, 0.08) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255, 0, 255, 0.1) 0 1px, transparent 1px 32px);
}

.hero::before {
  inset: 70px 0 0;
  background:
    radial-gradient(circle at 78% 25%, rgba(255, 0, 255, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.24) 48%, rgba(0, 0, 0, 0.82)),
    repeating-linear-gradient(135deg, rgba(255, 255, 0, 0.08) 0 4px, transparent 4px 13px);
}

.hero-inner {
  width: min(1380px, 100%);
  grid-template-columns: minmax(330px, 1fr) minmax(320px, 430px);
  gap: 18px;
  align-items: stretch;
}

.hero-copy {
  max-width: none;
  padding: 14px;
  border: 2px solid #00ff00;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.68)),
    repeating-linear-gradient(135deg, rgba(255, 0, 255, 0.14) 0 4px, transparent 4px 11px);
  box-shadow: 9px 9px 0 #ff00ff, 0 0 30px rgba(0, 255, 0, 0.42);
}

.hero-copy h1 {
  padding-right: clamp(100px, 12vw, 154px);
}

.eyebrow {
  margin-bottom: 8px;
  border: 1px solid #ff00ff;
  color: #000000;
  background: #00ff00;
  font-size: 0.75rem;
  box-shadow: 4px 4px 0 #ff00ff;
}

h1,
h2,
h3 {
  font-family: "Comic Sans MS", "Comic Sans", Impact, fantasy;
}

h1 {
  color: #ffff00;
  font-size: clamp(4.4rem, 9vw, 9rem);
  line-height: 0.76;
  text-shadow:
    5px 0 0 #ff00ff,
    -5px 0 0 #00ff00,
    0 0 24px #ffff00;
  animation: glitch-title 1.1s steps(2, end) infinite;
}

.contract-bubble {
  width: min(460px, calc(100% - 8px));
  margin-top: 16px;
  padding: 10px 13px 10px 16px;
  border-color: #00ff00;
  border-radius: 999px 22px 999px 30px;
  color: #000000;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.95), transparent 16%),
    linear-gradient(100deg, #ffff00 0%, #00ff00 48%, #ff00ff 100%);
  box-shadow:
    6px 6px 0 #ff00ff,
    -4px -4px 0 #00ff00,
    0 0 26px rgba(255, 255, 0, 0.72);
  animation: contract-bubble-pulse 1.35s steps(2, end) infinite;
}

.contract-bubble::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px dashed rgba(0, 0, 0, 0.78);
  border-radius: inherit;
  pointer-events: none;
}

.contract-bubble::after {
  left: 42px;
  bottom: -17px;
  background: #00ff00;
  filter: drop-shadow(4px 4px 0 #ff00ff);
}

.contract-bubble:hover {
  transform: translate(-2px, -2px) rotate(1.5deg);
}

.contract-bubble span {
  color: #000000;
  font-size: clamp(1.7rem, 3.4vw, 2.65rem);
  text-shadow: 2px 2px 0 #ffff00;
}

.contract-bubble strong {
  color: #ffff00;
  background: #000000;
  box-shadow: 3px 3px 0 #ff00ff;
}

h2 {
  color: #ffff00;
  text-shadow: 3px 0 0 #ff00ff, -3px 0 0 #00ff00, 0 0 18px rgba(255, 255, 0, 0.65);
}

h3 {
  color: #00ff00;
}

.home-capsule-sticker {
  top: 12px;
  right: 18px;
  width: clamp(54px, 5.8vw, 78px);
  filter: drop-shadow(0 0 18px #00ff00) drop-shadow(0 0 22px #ff00ff);
}

.hero-lede {
  max-width: 760px;
  margin-top: 10px;
  color: #00ff00;
  font-size: 1.03rem;
  line-height: 1.35;
  text-shadow: 0 0 12px #00ff00;
}

.hero-actions {
  gap: 8px;
  margin-top: 12px;
}

.button,
.popup-action {
  min-height: 42px;
  border: 2px solid #00ff00;
  border-radius: 0;
  color: #000000;
  background: #ffff00;
  box-shadow: 5px 5px 0 #ff00ff, 0 0 16px rgba(255, 255, 0, 0.62);
}

.button:hover,
.menu-toggle:hover,
.popup-action:hover,
.hero-gallery-dot:hover {
  animation: degen-hover 320ms steps(2, end) infinite;
}

.button-primary,
.button-secondary,
.wheel-button,
.popup-action {
  color: #000000;
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.18) 0 6px, transparent 6px 12px),
    #ffff00;
  box-shadow: 5px 5px 0 #ff00ff, 0 0 22px rgba(255, 255, 0, 0.8);
}

.chaos-cta {
  animation: cta-pulse 1.1s steps(2, end) infinite;
}

.degen-bento {
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) minmax(142px, 0.68fr);
  gap: 12px;
  width: min(660px, 100%);
  margin-top: 16px;
}

.activity-feed,
.fear-meter,
.dos-panel,
.wheel-button {
  min-width: 0;
  border: 2px solid #ff00ff;
  background:
    repeating-linear-gradient(0deg, rgba(0, 255, 0, 0.1) 0 2px, transparent 2px 8px),
    rgba(0, 0, 0, 0.94);
  box-shadow: 5px 5px 0 #00ff00, 0 0 18px rgba(255, 0, 255, 0.44);
}

.activity-feed {
  grid-row: span 2;
  padding: 8px;
}

.activity-feed span,
.fear-meter span,
.dos-panel span {
  display: block;
  color: #ffff00;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.activity-feed ul {
  display: grid;
  gap: 5px;
  max-height: 112px;
  margin: 8px 0 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  font-size: 0.7rem;
  line-height: 1.25;
}

.activity-feed li {
  padding: 4px 5px;
  color: #00ff00;
  background: rgba(255, 0, 255, 0.14);
  text-shadow: 0 0 8px #00ff00;
}

.activity-feed strong {
  color: #ff00ff;
}

.fear-meter,
.dos-panel {
  padding: 8px;
}

.meter-track {
  height: 14px;
  margin: 7px 0;
  border: 1px solid #ffff00;
  background: #150015;
}

.meter-track i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00ff00, #ffff00, #ff00ff);
  box-shadow: 0 0 20px #ff00ff;
  animation: meter-radiate 900ms steps(2, end) infinite;
}

.fear-meter strong {
  color: #ff00ff;
  font-size: clamp(1rem, 2vw, 1.42rem);
  line-height: 0.9;
  text-shadow: 2px 2px 0 #ffff00;
}

.dos-panel code {
  display: block;
  margin-top: 7px;
  color: #00ff00;
  font-size: 0.72rem;
  line-height: 1.25;
}

.wheel-button {
  width: 100%;
  min-height: 38px;
  color: #000000;
}

.poster-stage {
  width: min(100%, 430px);
  border: 2px solid #ffff00;
  background: #000000;
  box-shadow: 9px 9px 0 #00ff00, 0 0 30px rgba(255, 0, 255, 0.52);
}

.poster-stage::before {
  inset: -9px;
  border-radius: 0;
  background: conic-gradient(from 90deg, #00ff00, #ffff00, #ff00ff, #00ffff, #00ff00);
  filter: blur(15px);
  opacity: 0.54;
}

.poster-stage::after {
  border-color: #00ff00;
  border-radius: 0;
  box-shadow: inset 0 0 22px rgba(0, 255, 0, 0.42);
}

.hero-gallery,
.hero-gallery-frame,
.hero-gallery-image,
.meme-gallery-card,
.meme-gallery-card img {
  border-radius: 0;
}

.hero-gallery-caption span {
  color: #000000;
  background: #00ff00;
}

.hero-gallery-caption strong {
  color: #ffff00;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  text-shadow: 3px 3px 0 #ff00ff;
}

.hero-gallery-dot {
  border-color: #00ff00;
  background: #ff00ff;
  box-shadow: 0 0 12px #ff00ff;
}

.hero-gallery-dot.is-active {
  border-color: #ffff00;
  background: #ffff00;
  box-shadow: 0 0 18px #ffff00;
}

.celebration-strip,
.ticker-wall {
  border-top: 2px solid #00ff00;
  border-bottom: 2px solid #ff00ff;
  background: #000000;
  color: #ffff00;
  box-shadow: 0 0 22px rgba(0, 255, 0, 0.44);
}

.strip-track,
.ticker-wall div {
  gap: 20px;
  padding: 8px 10px;
  font-family: "Lucida Console", "Courier New", monospace;
  text-shadow: 0 0 10px #ffff00;
}

.ticker-wall {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.ticker-wall div {
  display: flex;
  width: max-content;
  animation: marquee 12s linear infinite reverse;
}

.ticker-wall span {
  white-space: nowrap;
}

.billboard-takeover,
.charity-section,
.content-section {
  padding: 54px 10px;
  background:
    repeating-linear-gradient(90deg, rgba(0, 255, 0, 0.08) 0 2px, transparent 2px 30px),
    repeating-linear-gradient(0deg, rgba(255, 0, 255, 0.07) 0 2px, transparent 2px 28px),
    #000000;
  border-top: 2px solid #00ff00;
  border-bottom: 2px solid #ff00ff;
}

.billboard-takeover {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.85)),
    image-set(
      url("assets/goofy-billboard-720.jpg") 1x,
      url("assets/goofy-billboard.jpg") 2x
    )
    center 39% / cover no-repeat;
}

.section-inner,
.billboard-inner {
  width: min(100% - 12px, 1380px);
}

.section-heading,
.section-copy,
.social-card,
.meme-card,
.dex-panel,
.charity-proof div,
.billboard-copy,
.road-signs span {
  border: 2px solid #00ff00;
  border-radius: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 0, 255, 0.11) 0 5px, transparent 5px 12px),
    rgba(0, 0, 0, 0.9);
  box-shadow: 6px 6px 0 #ff00ff, 0 0 22px rgba(0, 255, 0, 0.28);
}

.billboard-copy {
  padding: 12px;
}

.billboard-copy h2,
.charity-copy h2 {
  color: #ffff00;
  text-shadow: 4px 0 0 #ff00ff, -4px 0 0 #00ff00;
}

.road-signs span,
.road-signs .road-sign-bling {
  color: #000000;
  background: #00ff00;
  border-color: #ffff00;
  box-shadow: 0 0 0 4px #000000, 7px 7px 0 #ff00ff, 0 0 24px #00ff00;
}

.charity-section {
  color: #00ff00;
}

.charity-proof {
  gap: 8px;
}

.charity-proof div {
  min-height: 92px;
}

.charity-proof span {
  color: #ffff00;
  text-shadow: 2px 2px 0 #ff00ff;
}

.charity-proof strong,
.section-copy p,
.meme-card p,
.social-card small,
.dex-layout p,
.billboard-copy p:last-child,
.charity-copy p {
  color: #00ff00;
}

.about-grid,
.dex-layout,
.social-grid,
.meme-grid {
  gap: 10px;
}

.social-card,
.meme-card {
  min-height: 144px;
  padding: 12px;
}

.social-card:hover,
.meme-card:hover,
.meme-gallery-card:hover,
.dex-panel:hover {
  transform: rotate(-1deg) translateY(-2px);
  box-shadow: 8px 8px 0 #ffff00, 0 0 28px rgba(255, 0, 255, 0.5);
}

.meme-gallery-card {
  border: 2px solid #ffff00;
  box-shadow: 8px 8px 0 #ff00ff, 0 0 32px rgba(255, 255, 0, 0.42);
}

.meme-gallery-card figcaption {
  background: linear-gradient(0deg, #000000, rgba(0, 0, 0, 0.12));
}

.dex-panel div {
  border-color: #ff00ff;
  background: #000000;
}

.dex-panel strong {
  color: #ffff00;
}

.popup-stack {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}

.ad-popup {
  position: fixed;
  width: min(214px, calc(100vw - 24px));
  border: 2px solid #ffff00;
  color: #00ff00;
  background:
    repeating-linear-gradient(0deg, rgba(0, 255, 0, 0.08) 0 2px, transparent 2px 8px),
    #000000;
  box-shadow: 5px 5px 0 #ff00ff, 0 0 18px rgba(255, 255, 0, 0.42);
  pointer-events: auto;
}

.popup-one {
  right: 12px;
  bottom: 78px;
}

.popup-two {
  right: 236px;
  bottom: 30px;
  transform: rotate(-1.5deg);
}

.ad-popup header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 7px;
  color: #000000;
  background: #ffff00;
  cursor: grab;
}

.ad-popup.is-dragging header {
  cursor: grabbing;
}

.ad-popup header span {
  min-width: 0;
  overflow: hidden;
  font-size: 0.66rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ad-popup header button {
  width: 21px;
  height: 19px;
  padding: 0;
  border: 2px solid #000000;
  color: #000000;
  background: #ff00ff;
  font-weight: 900;
}

.ad-popup p {
  margin: 0;
  padding: 7px 8px;
  color: #00ff00;
  font-size: 0.72rem;
  line-height: 1.25;
}

.popup-action {
  width: calc(100% - 16px);
  min-height: 34px;
  margin: 0 8px 8px;
  font-size: 0.68rem;
}

.goofy-clippy {
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 96;
  display: grid;
  grid-template-columns: minmax(0, 210px) 90px;
  gap: 7px;
  align-items: end;
  pointer-events: none;
}

.clippy-bubble {
  position: relative;
  min-height: 94px;
  padding: 8px;
  border: 2px solid #ffff00;
  color: #00ff00;
  background:
    repeating-linear-gradient(0deg, rgba(0, 255, 0, 0.09) 0 2px, transparent 2px 8px),
    rgba(0, 0, 0, 0.95);
  box-shadow: 5px 5px 0 #ff00ff, 0 0 18px rgba(0, 255, 0, 0.42);
  pointer-events: auto;
  transform: rotate(-1.2deg);
}

.clippy-bubble::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: 24px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #ffff00;
  filter: drop-shadow(3px 3px 0 #ff00ff);
}

.clippy-bubble p {
  margin: 0;
  color: #00ff00;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.24;
  text-shadow: 0 0 10px #00ff00;
}

.clippy-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.clippy-button {
  min-height: 22px;
  padding: 0 6px;
  border: 2px solid #00ff00;
  color: #000000;
  background: #ffff00;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 #ff00ff;
}

.clippy-button:hover,
.clippy-character:hover {
  animation: degen-hover 320ms steps(2, end) infinite;
}

.goofy-clippy.is-talking .clippy-bubble {
  animation: degen-hover 260ms steps(2, end) 2;
}

.goofy-clippy.is-talking .clippy-character {
  box-shadow: 6px 6px 0 #ffff00, 0 0 34px rgba(255, 0, 255, 0.7);
  transform: rotate(2deg) translateY(-3px);
}

.clippy-character {
  position: relative;
  width: 90px;
  height: 120px;
  padding: 0;
  border: 2px solid #00ff00;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 0, 0.22), transparent 48%),
    #000000;
  box-shadow: 6px 6px 0 #ff00ff, 0 0 28px rgba(255, 255, 0, 0.52);
  pointer-events: auto;
  overflow: hidden;
}

.clippy-character::before {
  content: "HELP.EXE";
  position: absolute;
  left: 5px;
  top: 5px;
  z-index: 3;
  padding: 2px 5px;
  color: #000000;
  background: #00ff00;
  font-size: 0.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.clippy-model-wrap,
.clippy-model,
.clippy-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.clippy-model {
  z-index: 2;
  filter: drop-shadow(0 0 16px #00ff00);
}

.clippy-fallback {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 18%;
  filter: contrast(1.35) saturate(1.35);
}

.clippy-model:defined + .clippy-fallback {
  display: none;
}

.goofy-clippy.is-hidden {
  grid-template-columns: 64px;
}

.goofy-clippy.is-hidden .clippy-bubble {
  display: none;
}

.goofy-clippy.is-hidden .clippy-character {
  width: 64px;
  height: 78px;
}

.site-footer {
  padding: 8px 10px;
  border-top: 2px solid #ff00ff;
  color: #ff00ff;
  background: #000000;
  font-size: 0.68rem;
}

.site-footer .button {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.7rem;
}

@keyframes crt-roll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(7px);
  }
}

@keyframes static-pop {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(2px, -1px);
  }
}

@keyframes static-jitter {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-2px, 1px);
  }

  100% {
    transform: translate(1px, -1px);
  }
}

@keyframes cursor-spark {
  from {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1);
  }

  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.12) translateY(28px);
  }
}

@keyframes glitch-title {
  0%,
  100% {
    transform: translate(0, 0) skewX(0deg);
  }

  33% {
    transform: translate(2px, -1px) skewX(-2deg);
  }

  66% {
    transform: translate(-2px, 1px) skewX(2deg);
  }
}

@keyframes contract-bubble-pulse {
  0%,
  100% {
    filter: brightness(1) saturate(1.05);
  }

  50% {
    filter: brightness(1.28) saturate(1.35);
  }
}

@keyframes degen-hover {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(2px, -2px) rotate(1.4deg);
  }

  50% {
    transform: translate(-2px, 1px) rotate(-1.4deg);
  }

  75% {
    transform: translate(1px, 2px) rotate(0.8deg);
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    filter: brightness(1);
    box-shadow: 5px 5px 0 #ff00ff, 0 0 16px rgba(255, 255, 0, 0.62);
  }

  50% {
    filter: brightness(1.65);
    box-shadow: 5px 5px 0 #00ff00, 0 0 32px #ffff00;
  }
}

@keyframes meter-radiate {
  0%,
  100% {
    filter: saturate(1);
  }

  50% {
    filter: saturate(2.4) brightness(1.6);
  }
}

@keyframes meme-takeover {
  0% {
    opacity: 0;
    transform: scale(0.2) rotate(-4deg);
  }

  14%,
  86% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: scale(1.2) rotate(4deg);
  }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: minmax(280px, 1fr) minmax(280px, 360px);
  }

  .degen-bento {
    grid-template-columns: minmax(0, 1fr) minmax(118px, 0.64fr);
    width: 100%;
  }

  .activity-feed {
    grid-row: span 2;
  }

  .popup-two {
    right: 14px;
    bottom: 214px;
  }
}

@media (max-width: 760px) {
  .neon-cursor {
    display: none;
  }

  .music-panel {
    left: 8px;
    top: 76px;
    width: min(210px, calc(100vw - 16px));
    grid-template-columns: 66px 1fr;
    gap: 6px;
    padding: 6px;
  }

  .music-toggle {
    min-height: 30px;
    font-size: 0.62rem;
  }

  .music-volume {
    font-size: 0.56rem;
  }

  .hero {
    padding: 82px 8px 8px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "poster"
      "copy";
  }

  .hero-copy {
    padding: 8px;
  }

  .poster-stage {
    width: min(92vw, 340px);
  }

  .degen-bento {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .activity-feed {
    grid-row: auto;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-copy h1 {
    padding-right: 72px;
  }

  .contract-bubble {
    width: min(100%, 390px);
    margin-top: 12px;
    padding: 10px 11px 10px 13px;
    gap: 10px;
    border-radius: 22px;
  }

  .contract-bubble span {
    font-size: 1.7rem;
  }

  .contract-bubble strong {
    padding: 6px 7px;
    font-size: 0.7rem;
  }

  .home-capsule-sticker {
    top: 8px;
    right: 8px;
    width: 46px;
  }

  .nav-links {
    border-color: #00ff00;
  }

  .popup-stack {
    display: none;
  }

  .goofy-clippy {
    left: 8px;
    right: 8px;
    bottom: 8px;
    grid-template-columns: minmax(0, 1fr) 60px;
    gap: 6px;
  }

  .clippy-bubble {
    min-height: 80px;
    padding: 7px;
  }

  .clippy-bubble p {
    font-size: 0.62rem;
  }

  .clippy-bubble::after {
    right: -12px;
    bottom: 22px;
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 12px;
  }

  .clippy-button {
    min-height: 20px;
    font-size: 0.54rem;
  }

  .clippy-character {
    width: 60px;
    height: 82px;
  }

  .goofy-clippy.is-hidden .clippy-character {
    width: 52px;
    height: 66px;
  }

  .billboard-takeover,
  .charity-section,
  .content-section {
    padding: 42px 8px;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .degen-bento,
  .charity-proof {
    grid-template-columns: 1fr;
  }

  .activity-feed ul {
    max-height: 124px;
  }
}

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

  .poster-stage {
    transform: none;
  }
}
