/* Meme Season — playground world drawn from the logo */
:root {
  --sky-deep: #1494ff;
  --sky: #3eb8ff;
  --sky-soft: #7dd6ff;
  --cloud: #ffffff;
  --sun: #ffe566;
  --sun-hot: #ffb400;
  --grass-dark: #2fbe32;
  --grass: #4fd445;
  --grass-light: #7af05a;
  --wood: #c9853a;
  --wood-dark: #8a4e1a;
  --blossom: #ff9ec8;
  --yellow: #ffde00;
  --yellow-deep: #ff9a12;
  --orange: #ff6a00;
  --purple: #7a3dff;
  --purple-deep: #4b1fa8;
  --ink: #1d3b18;
  --ink-soft: #2f5a28;
}

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

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sky-deep);
  overflow-x: hidden;
}

.font-display,
.world-title {
  font-family: "Luckiest Guy", "Fredoka", sans-serif;
}

/* ---------- sky world ---------- */
.sky-world {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 247, 180, 0.85) 0%, transparent 22%),
    radial-gradient(circle at 12% 18%, rgba(255, 158, 200, 0.28) 0%, transparent 24%),
    linear-gradient(180deg, #0e86f6 0%, #2eb3ff 28%, #6ecfff 62%, #b8ecff 86%, #d9f7c2 100%);
}

.sun {
  position: absolute;
  top: 4.5rem;
  right: 7%;
  z-index: 0;
  width: clamp(90px, 16vw, 160px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fffce6 0%, var(--sun) 38%, var(--sun-hot) 100%);
  box-shadow:
    0 0 0 10px rgba(255, 229, 102, 0.28),
    0 0 70px 28px rgba(255, 180, 0, 0.45);
  animation: pulse-sun 6s ease-in-out infinite;
}

.cloud {
  position: absolute;
  z-index: 1;
  background: #fff;
  border-radius: 999px;
  filter: drop-shadow(0 10px 10px rgba(20, 80, 140, 0.12));
  animation: drift 28s linear infinite;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 999px;
}

.cloud-a {
  top: 7.2rem;
  left: -6%;
  width: 170px;
  height: 46px;
}

.cloud-a::before {
  width: 78px;
  height: 78px;
  top: -46px;
  left: 22px;
}

.cloud-a::after {
  width: 58px;
  height: 58px;
  top: -32px;
  left: 86px;
}

.cloud-b {
  top: 9.5rem;
  right: 18%;
  width: 130px;
  height: 38px;
  animation-duration: 36s;
  animation-delay: -12s;
}

.cloud-b::before {
  width: 60px;
  height: 60px;
  top: -34px;
  left: 16px;
}

.cloud-b::after {
  width: 44px;
  height: 44px;
  top: -24px;
  left: 64px;
}

.cloud-c {
  top: 14rem;
  left: 28%;
  width: 110px;
  height: 32px;
  opacity: 0.85;
  animation-duration: 42s;
  animation-delay: -20s;
}

.cloud-c::before {
  width: 48px;
  height: 48px;
  top: -28px;
  left: 14px;
}

.cloud-c::after {
  width: 36px;
  height: 36px;
  top: -18px;
  left: 52px;
}

.petal {
  position: fixed;
  top: -8%;
  z-index: 40;
  width: 14px;
  height: 10px;
  border-radius: 70% 0 70% 0;
  background: linear-gradient(135deg, #fff 10%, var(--blossom) 60%, #ff6ea8 100%);
  opacity: 0.85;
  pointer-events: none;
  animation: petal-fall linear infinite;
}

.petal:nth-child(1) { left: 8%; animation-duration: 11s; }
.petal:nth-child(2) { left: 22%; animation-duration: 14s; animation-delay: -3s; width: 11px; }
.petal:nth-child(3) { left: 38%; animation-duration: 12s; animation-delay: -6s; }
.petal:nth-child(4) { left: 54%; animation-duration: 16s; animation-delay: -2s; width: 12px; }
.petal:nth-child(5) { left: 68%; animation-duration: 13s; animation-delay: -8s; }
.petal:nth-child(6) { left: 82%; animation-duration: 15s; animation-delay: -4s; }
.petal:nth-child(7) { left: 12%; animation-duration: 18s; animation-delay: -9s; width: 9px; }
.petal:nth-child(8) { left: 91%; animation-duration: 12.5s; animation-delay: -5s; }

.blossom-tree {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: clamp(140px, 22vw, 280px);
  height: clamp(180px, 32vw, 360px);
}

.blossom-tree::before {
  content: "";
  position: absolute;
  left: 46%;
  bottom: 0;
  width: 18px;
  height: 42%;
  border-radius: 8px;
  background: linear-gradient(90deg, #8a4e1a, #c9853a);
}

.blossom-tree::after {
  content: "";
  position: absolute;
  left: 8%;
  top: 0;
  width: 84%;
  height: 68%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 40%, #ffd0e6 0 18%, transparent 19%),
    radial-gradient(circle at 58% 28%, #ff9ec8 0 22%, transparent 23%),
    radial-gradient(circle at 72% 52%, #ffb7d6 0 20%, transparent 21%),
    radial-gradient(circle at 40% 62%, #ff89b8 0 24%, transparent 25%),
    radial-gradient(circle at 22% 50%, #ffe0ef 0 16%, transparent 17%);
  filter: drop-shadow(0 8px 0 rgba(255, 110, 168, 0.2));
}

.blossom-left { left: -4%; bottom: 12%; transform: rotate(-8deg); }
.blossom-right { right: -6%; bottom: 18%; transform: scaleX(-1) rotate(-6deg); }

/* ---------- type ---------- */
.world-title {
  position: relative;
  display: grid;
  justify-items: center;
  margin: 0;
  line-height: 0.82;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(3.4rem, 13vw, 8.2rem);
  font-weight: 400;
}

.world-title span {
  position: relative;
  color: #ffde00;
  background: linear-gradient(180deg, #fff56a 0%, #ffde00 42%, #ff9a12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 1px 0 #fff)
    drop-shadow(0 -1px 0 #fff)
    drop-shadow(1px 0 0 #fff)
    drop-shadow(-1px 0 0 #fff)
    drop-shadow(3px 3px 0 #fff)
    drop-shadow(-3px 3px 0 #fff)
    drop-shadow(3px -2px 0 #fff)
    drop-shadow(-3px -2px 0 #fff)
    drop-shadow(6px 8px 0 var(--purple))
    drop-shadow(8px 12px 0 var(--purple-deep));
}

.ticker-candy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem 0.35rem;
  border: 4px solid #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff56a, #ff9a12);
  color: var(--purple-deep);
  box-shadow: 0 6px 0 var(--purple), 0 12px 24px rgba(75, 31, 168, 0.28);
}

.park-sign {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 3px solid #fff;
  background: rgba(255, 255, 255, 0.42);
  color: #0d4f9c;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(13, 79, 156, 0.16);
}

/* ---------- chrome ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  background: linear-gradient(180deg, rgba(14, 134, 246, 0.72), rgba(14, 134, 246, 0.12));
  backdrop-filter: blur(12px);
  border-bottom: 3px solid rgba(255, 255, 255, 0.35);
}

.logo-chip {
  border: 3px solid #fff;
  box-shadow: 0 4px 0 var(--purple), 0 8px 16px rgba(75, 31, 168, 0.28);
}

.candy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 4px solid #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff56a 0%, #ffde00 55%, #ff9a12 100%);
  color: var(--purple-deep);
  box-shadow: 0 6px 0 var(--purple), 0 14px 24px rgba(75, 31, 168, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.candy-btn:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 9px 0 var(--purple), 0 18px 28px rgba(75, 31, 168, 0.3);
}

.wood-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 4px solid #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #e8a24e, #c9853a 60%, #8a4e1a);
  color: #fff8e8;
  box-shadow: 0 6px 0 #5c3010, 0 12px 20px rgba(92, 48, 16, 0.28);
  transition: transform 0.2s ease;
}

.wood-btn:hover {
  transform: translateY(-3px) rotate(1deg);
}

.buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 4px solid #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #9cff57 0%, #4fd445 45%, #2fbe32 100%);
  color: #163d12;
  box-shadow: 0 6px 0 #1d7a22, 0 14px 24px rgba(29, 122, 34, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buy-btn:hover {
  transform: translateY(-3px) rotate(-1deg) scale(1.03);
  box-shadow: 0 9px 0 #1d7a22, 0 18px 28px rgba(29, 122, 34, 0.35);
}

.tg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 4px solid #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #6ec8ff 0%, #2aabee 55%, #1e96d1 100%);
  color: #fff;
  box-shadow: 0 6px 0 #0d6fa3, 0 14px 24px rgba(13, 111, 163, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tg-btn:hover {
  transform: translateY(-3px) rotate(1deg);
  box-shadow: 0 9px 0 #0d6fa3, 0 18px 28px rgba(13, 111, 163, 0.35);
}

.meme-wall .polaroid:nth-child(3n + 1) { transform: rotate(-2.4deg); }
.meme-wall .polaroid:nth-child(3n + 2) { transform: rotate(2.1deg); }
.meme-wall .polaroid:nth-child(3n) { transform: rotate(-1.2deg); }

.meme-wall .polaroid:hover {
  transform: rotate(0deg) scale(1.05);
}

.ca-pill {
  border: 3px solid #fff;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 4px 0 var(--purple);
}

.ca-pill:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* sticker frames like the logo letters */
.sticker {
  position: relative;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 2rem;
  background: #fff;
  box-shadow:
    0 8px 0 var(--purple),
    0 22px 40px rgba(29, 59, 24, 0.22);
}

.sticker-round {
  border-radius: 50%;
  border-width: 10px;
}

.sticker img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.park-mural {
  border-radius: 2.4rem;
  overflow: hidden;
  border: 10px solid #fff;
  box-shadow:
    0 10px 0 var(--purple),
    0 28px 60px rgba(14, 80, 140, 0.28);
}

.park-mural img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- grass land ---------- */
.grass-land {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 28% 62%, #fff 0 1.6px, transparent 2.6px),
    radial-gradient(circle at 47% 30%, #fffce8 0 2px, transparent 3px),
    radial-gradient(circle at 63% 78%, #fff 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 81% 22%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 91% 58%, #fffce8 0 1.7px, transparent 2.7px),
    linear-gradient(180deg, #6ee24a 0%, #4fd445 38%, #38c832 100%);
  background-size: 180px 180px, 220px 220px, 160px 160px, 200px 200px, 170px 170px, 210px 210px, auto;
}

.hill-join {
  position: relative;
  height: 90px;
  margin-top: -1px;
  background: radial-gradient(120% 180% at 50% -20%, transparent 54%, #6ee24a 55%);
}

.panel {
  background: linear-gradient(180deg, #fffef6, #fff6cc);
  border: 8px solid #fff;
  border-radius: 2rem;
  box-shadow:
    0 8px 0 var(--purple),
    0 20px 36px rgba(75, 31, 168, 0.18);
}

.wood-label {
  display: inline-block;
  padding: 0.25rem 0.8rem 0.15rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #e8a24e, #8a4e1a);
  color: #fff8e8;
  border: 3px solid #fff;
  letter-spacing: 0.22em;
}

.marquee-wrap {
  position: relative;
  overflow: hidden;
  border-top: 6px solid #fff;
  border-bottom: 6px solid #fff;
  background: linear-gradient(90deg, var(--purple-deep), var(--purple) 50%, #ff6ea8);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.4rem;
  animation: marquee 26s linear infinite;
}

.bunting {
  display: flex;
  justify-content: center;
  gap: 0;
  height: 28px;
  overflow: hidden;
}

.bunting i {
  width: 22px;
  height: 28px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.bunting i:nth-child(6n + 1) { background: #ffde00; }
.bunting i:nth-child(6n + 2) { background: #ff6ea8; }
.bunting i:nth-child(6n + 3) { background: #7a3dff; }
.bunting i:nth-child(6n + 4) { background: #3eb8ff; }
.bunting i:nth-child(6n + 5) { background: #4fd445; }
.bunting i:nth-child(6n) { background: #ff6a00; }

.polaroid {
  background: #fff;
  border: 8px solid #fff;
  border-radius: 1.4rem;
  padding: 0 0 2.2rem;
  box-shadow: 0 8px 0 var(--purple), 0 18px 32px rgba(29, 59, 24, 0.2);
  transition: transform 0.25s ease;
}

.polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.8rem;
}

.polaroid figcaption {
  margin-top: 0.7rem;
  font-family: "Luckiest Guy", sans-serif;
  text-align: center;
  letter-spacing: 0.04em;
  color: var(--purple-deep);
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.04);
  z-index: 2;
}

.fence {
  height: 28px;
  background:
    repeating-linear-gradient(
      90deg,
      #c9853a 0 10px,
      #8a4e1a 10px 12px,
      transparent 12px 28px
    );
  border-top: 6px solid #8a4e1a;
  opacity: 0.85;
}

@keyframes drift {
  from { transform: translateX(-10vw); }
  to { transform: translateX(110vw); }
}

@keyframes pulse-sun {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes petal-fall {
  0% { transform: translateY(-10vh) rotate(0deg); opacity: 0; }
  12% { opacity: 0.9; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0.15; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.bob {
  animation: bob 4.8s ease-in-out infinite;
}

@media (max-width: 700px) {
  .blossom-tree { display: none; }
  .sun { top: 5.2rem; right: 4%; }
}
