/* OOO Forever — Sticker Icons + Illustration helpers
   Sticker style: chunky 3px outline, soft fills, slight rotation.
   Use as: <svg class="ico"><use href="#i-sun"></use></svg>
*/
:root { --ico-stroke: 3; }

.ico {
  width: 28px; height: 28px;
  stroke: var(--line);
  stroke-width: var(--ico-stroke);
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.ico--filled-fluro { fill: var(--fluro); }
.ico--filled-cream { fill: var(--cream); }
.ico--lg { width: 48px; height: 48px; }
.ico--xl { width: 72px; height: 72px; }

/* Illustration placeholder */
.illo {
  position: relative;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(10,29,22,0.05) 14px 15px),
    var(--cream-soft);
  border: var(--stroke-3) solid var(--line);
  border-radius: var(--r-lg);
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--s-6);
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink-mute);
  box-shadow: var(--sticker-3);
  overflow: hidden;
}
.illo--fluro { background-color: var(--fluro); color: var(--green-900); }
.illo--green { background-color: var(--green-800); color: var(--cream); }
.illo--green::before, .illo--green::after { filter: invert(1); }
.illo__label { display: block; opacity: 0.75; max-width: 28ch; }
.illo__sub { display: block; margin-top: 6px; opacity: 0.55; }

/* Wobble animation for stickers */
@keyframes wobble {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}
.wobble { animation: wobble 4s var(--ease-in-out) infinite; transform-origin: center; }

/* Float */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float { animation: float 5s var(--ease-in-out) infinite; }
