@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Nunito:wght@400;600;800&display=swap');

:root {
  --green: #96D81F;
  --green-lite: #BCE85A;
  --pink: #F42B8C;
  --pink-deep: #C41368;
  --cream: #F7EDD9;
  --ink: #100C10;
  --slime: #D9F23A;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--green);
  background-image:
    radial-gradient(circle at 15% 20%, var(--green-lite) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, var(--green-lite) 0%, transparent 35%);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: 'Luckiest Guy', cursive;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.6rem;
}

a { color: inherit; }

/* ---------- NAV ---------- */
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem;
  background: var(--cream);
  border-bottom: 5px solid var(--ink);
}

.brand {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.15rem;
  color: var(--pink);
  -webkit-text-stroke: 1px var(--ink);
  text-decoration: none;
  margin-right: auto;
}

nav a.link {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.35rem 0.8rem;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
}

nav a.link:hover,
nav a.link:focus-visible {
  background: var(--slime);
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--ink);
}

/* ---------- LAYOUT ---------- */
main {
  max-width: 680px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.hero {
  margin-bottom: 2.5rem;
}

.hero img {
  display: block;
  width: 100%;
  border: 5px solid var(--ink);
  border-radius: 28px;
  box-shadow: 8px 8px 0 var(--ink);
}

.card {
  background: var(--cream);
  border: 5px solid var(--ink);
  border-radius: 28px;
  box-shadow: 8px 8px 0 var(--ink);
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.card.pink {
  background: var(--pink);
  color: var(--cream);
}

.card.tilt { transform: rotate(-1.2deg); }

.card h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
.card h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }

.card p { margin: 0 0 0.9rem; }
.card p:last-child { margin-bottom: 0; }

.tag {
  display: inline-block;
  background: var(--slime);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0.15rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink);
}

/* ---------- A11Y ---------- */
:focus-visible {
  outline: 4px solid var(--ink);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ---------- SECTIONS ---------- */
html { scroll-behavior: smooth; }

section { scroll-margin-top: 86px; }

.embed-placeholder {
  border: 4px dashed var(--ink);
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  font-weight: 800;
  opacity: 0.55;
  margin-bottom: 1rem;
}

.embed-placeholder.dark { border-color: var(--cream); }

.video-slot iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 4px solid var(--ink);
  border-radius: 18px;
  display: block;
  margin-bottom: 1rem;
}

.shop-card { text-align: center; }

.shop-card .butt {
  display: block;
  width: min(300px, 78%);
  height: auto;
  margin: 0.5rem auto 1.25rem;
}

.nothing-card {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  transform: rotate(0.8deg);
}

.nothing-card h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

/* ---------- MASCOT ---------- */
.fx-layer { position: fixed; inset: 0; pointer-events: none; z-index: 60; }

.mascot {
  position: fixed;
  left: 0; top: 0;
  z-index: 55;
  cursor: pointer;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
}

.mascot-inner { display: block; transform-origin: 50% 88%; }

.mascot img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(4px 5px 0 rgba(16,12,16,0.3));
  user-select: none;
  -webkit-user-drag: none;
}

.mascot img.hidden { display: none; }

.hero-space { height: 56vh; min-height: 290px; }

.puff {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%,
              #F2FFA8 0%, #D9F23A 45%, rgba(217,242,58,0) 72%);
  pointer-events: none;
  animation: puff 900ms cubic-bezier(.2,.7,.3,1) forwards;
}

@keyframes puff {
  0%   { transform: translate(0,0) scale(.25); opacity: .95; }
  100% { transform: translate(var(--dx), var(--dy)) scale(2); opacity: 0; }
}

/* small hop, no spin */
.gag-hop { animation: hop 560ms cubic-bezier(.3,1.5,.4,1); }

@keyframes hop {
  0%,100% { transform: translateY(0) scaleY(1); }
  20%     { transform: translateY(-22px) scaleY(1.08); }
  55%     { transform: translateY(0) scaleY(.88); }
  78%     { transform: translateY(0) scaleY(1.04); }
}

button.link { font-family: inherit; cursor: pointer; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .puff, .gag-hop { animation: none; }
}

/* ---------- copy blocks ---------- */
.big {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(1.5rem, 5.5vw, 2.1rem);
  line-height: 1.15;
  margin: 0;
}

.card.tilt-r { transform: rotate(1deg); }

.faq { margin: 0; }

.faq dt {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(1.05rem, 3.8vw, 1.35rem);
  line-height: 1.2;
  margin-top: 1.1rem;
}

.faq dt:first-child { margin-top: 0.3rem; }

.faq dd {
  margin: 0.15rem 0 0;
  font-weight: 800;
  font-size: 1.05rem;
  opacity: 0.92;
}
