:root {
  --lime: #c8ff00;
  --lime-2: #deff4a;
  --ink: #111;
  --brown: #6b3a1f;
  --cream: #fff8e8;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: "Nunito", system-ui, sans-serif;
  background: var(--lime);
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.poo-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, #fff6 0 8%, transparent 9%),
    radial-gradient(circle at 88% 12%, #fff5 0 6%, transparent 7%),
    repeating-linear-gradient(-18deg, transparent 0 28px, #0000000d 28px 30px),
    var(--lime);
}
.confetti span {
  position: fixed; top: -20px; width: 10px; height: 18px; border-radius: 3px;
  animation: fall linear infinite; z-index: 1; pointer-events: none; opacity: .85;
}
@keyframes fall {
  to { transform: translateY(110vh) rotate(540deg); }
}

.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 16px;
  padding: 10px 18px;
  background: #c8ff00ee;
  border-bottom: 4px solid #111;
  backdrop-filter: blur(8px);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; }
.brand img { width: 52px; height: 52px; border-radius: 16px; border: 3px solid #111; background: var(--lime); }
.brand span { font-family: "Bangers", cursive; font-size: 28px; letter-spacing: 1px; }
.nav-links { margin-left: auto; display: flex; gap: 16px; font-weight: 800; }
.nav-links a:hover { text-decoration: underline; }
@media (max-width: 720px) { .nav-links { display: none; } }

.sound {
  border: 3px solid #111; background: #111; color: var(--lime);
  font-weight: 900; border-radius: 999px; padding: 8px 14px;
  animation: pulse 1.2s ease-in-out infinite;
}
.sound.on { background: var(--ink); }
@keyframes pulse { 50% { transform: scale(1.06); } }

.hero {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px;
  align-items: center; padding: 36px 8vw 20px;
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; text-align: center; } }
.kicker {
  display: inline-block; background: #111; color: var(--lime);
  font-weight: 900; padding: 6px 12px; border-radius: 999px; letter-spacing: .08em;
}
h1 {
  font-family: "Bangers", cursive; font-size: clamp(64px, 12vw, 140px);
  line-height: .85; margin: 12px 0 8px; text-shadow: 6px 6px 0 #111;
  color: #fff;
  -webkit-text-stroke: 4px #111;
}
.tag { font-size: clamp(22px, 4vw, 36px); font-weight: 900; margin: 0 0 18px; }
.hero-logo {
  width: min(420px, 90%); margin: 0 auto;
  animation: bounce 1.6s ease-in-out infinite;
  filter: drop-shadow(8px 12px 0 #111);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}
.ctas { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 900px) { .ctas { justify-content: center; } }
.btn {
  border: 3px solid #111; background: #111; color: var(--lime);
  font-weight: 900; padding: 12px 18px; border-radius: 16px; font-size: 16px;
  box-shadow: 4px 4px 0 #111;
}
.btn.alt { background: #fff; color: #111; }
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #111; }

.ticker {
  position: relative; z-index: 2;
  border-top: 4px solid #111; border-bottom: 4px solid #111;
  background: #111; color: var(--lime); overflow: hidden; padding: 10px 0;
  font-family: "Bangers", cursive; font-size: 28px; letter-spacing: 1px;
}
.ticker-track { display: flex; gap: 40px; width: max-content; animation: marquee 16s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

.wrap { position: relative; z-index: 2; width: min(1100px, calc(100% - 32px)); margin: 0 auto; }
section { padding: 56px 0; }
h2 { font-family: "Bangers", cursive; font-size: clamp(36px, 6vw, 56px); margin: 0 0 8px; }
.lede { font-weight: 800; font-size: 18px; max-width: 50ch; }

.vids { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; }
@media (max-width: 800px) { .vids { grid-template-columns: 1fr; } }
.vids video, .card {
  border: 4px solid #111; border-radius: 22px; background: #fff;
  box-shadow: 8px 8px 0 #111; overflow: hidden;
}
.vids video { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }

.album {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 800px) { .album { grid-template-columns: 1fr 1fr; } }
.album a {
  display: block; border: 4px solid #111; border-radius: 18px; overflow: hidden;
  background: #fff; box-shadow: 6px 6px 0 #111;
  transform: rotate(-1.2deg); transition: transform .2s;
}
.album a:nth-child(even) { transform: rotate(1.4deg); }
.album a:hover { transform: rotate(0) scale(1.04); z-index: 2; }
.album img { width: 100%; height: 220px; object-fit: cover; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 800px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  border: 4px solid #111; background: #fff; border-radius: 18px; padding: 16px;
  box-shadow: 5px 5px 0 #111; text-align: center;
}
.stat b { display: block; font-family: "Bangers", cursive; font-size: 34px; }

.together {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: center;
}
@media (max-width: 800px) { .together { grid-template-columns: 1fr; } }
.together img { border: 4px solid #111; border-radius: 22px; box-shadow: 8px 8px 0 #111; }

footer {
  position: relative; z-index: 2;
  border-top: 4px solid #111; padding: 22px; text-align: center; font-weight: 800;
}

.lightbox {
  position: fixed; inset: 0; background: #000c; display: none;
  align-items: center; justify-content: center; z-index: 80; padding: 24px;
}
.lightbox.on { display: flex; }
.lightbox img { max-height: 88vh; max-width: 92vw; border: 6px solid #111; border-radius: 16px; }

.toast {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: #111; color: var(--lime); padding: 10px 16px; border-radius: 999px;
  font-weight: 900; display: none; z-index: 90;
}

.loader {
  position: fixed; inset: 0; z-index: 100; background: var(--lime);
  display: flex; align-items: center; justify-content: center; text-align: center;
  border: 0;
}
.loader.hide { opacity: 0; pointer-events: none; transition: opacity .4s; }
.loader img { width: 180px; animation: bounce 1s ease-in-out infinite; }
.loader { cursor: pointer; }
.loader p { font-family: "Bangers", cursive; font-size: 42px; margin: 8px 0 0; }
.bar { width: 220px; height: 16px; border: 3px solid #111; border-radius: 999px; margin: 12px auto 0; overflow: hidden; background: #fff; }
.bar span { display: block; height: 100%; width: 0; background: #111; }
.go {
  display: none; margin: 18px auto 0; max-width: 320px;
  background: #111; color: var(--lime); border-radius: 18px;
  padding: 14px 18px; font-size: 26px !important; line-height: 1.15;
  animation: pulse 1s ease-in-out infinite;
}
.loader.ready .go { display: block; }
.loader.ready .bar { display: none; }
