/* ══════════════════════════════════════════
   CSS VARIABLES
══════════════════════════════════════════ */
:root {
  --red: #D42B2B;
  --red2: #E8192C;
  --cream: #FFF8E8;
  --warm: #F5E6C8;
  --yellow: #F7C948;
  --yellow2: #FFD700;
  --brown: #8B5E3C;
  --green: #4CAF50;
  --green2: #2E7D32;
  --blue: #2196F3;
  --blue2: #1565C0;
  --shadow: rgba(0,0,0,0.25);
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; user-select: none; }
html, body { width: 100%; height: 100%; height: 100dvh; background: #2a1a0e; display: flex; align-items: center; justify-content: center; overflow: hidden; touch-action: manipulation; }

/* Prevent image dragging globally */
img { -webkit-user-drag: none; user-select: none; pointer-events: none; }
/* Re-enable pointer events only for interactive images (wedges on belt) */
.wedge-obj img { pointer-events: auto; }
.ing-item img { pointer-events: auto; }

#game {
  width: 390px;
  height: 720px;
  max-width: 100vw;
  max-height: 100vh;
  max-height: 100dvh;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  font-family: 'Nunito', sans-serif;
}
@media (max-width: 420px) {
  #game {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    padding-top: env(safe-area-inset-top, 0px);
  }
}

/* ── SCREENS ── */
.screen { position: absolute; inset: 0; display: none; flex-direction: column; align-items: center; }
.screen.show { display: flex; }

/* ════════════════════════════════
   SCREEN 0 – INTRO
════════════════════════════════ */
#s0 {
  background: url('assets/Shopping_Bag_Interior_baseColor (2).webp') center/cover no-repeat;
  justify-content: flex-start;
}
.intro-sky { display: none; }
.intro-ground { display: none; }
.grass-strip { display: none; }

.factory-wrap { position: absolute; top: 15px; right: -20px; z-index: 3; width: 270px; }
.factory-wrap img { width: 100%; height: auto; }

.intro-cow { position: absolute; bottom: 130px; left: -60px; z-index: 10; width: 288px; }
.intro-cow img { width: 100%; height: auto; }

.intro-title {
  position: absolute; top: 24px; left: 0; right: 0; z-index: 20; text-align: center;
  font-family: 'Baloo 2', cursive; font-weight: 900; line-height: 1.15;
}
.intro-title .line1 { font-size: 26px; color: white; text-shadow: 2px 3px 0 var(--red), 4px 5px 0 rgba(0,0,0,.15); }
.intro-title .line2 { font-size: 32px; color: var(--yellow); text-shadow: 2px 3px 0 #b8860b, 4px 5px 0 rgba(0,0,0,.15); }
.intro-title .line3 { font-size: 26px; color: white; text-shadow: 2px 3px 0 var(--red), 4px 5px 0 rgba(0,0,0,.15); }

.start-btn {
  position: absolute; bottom: 56px; left: 50%; transform: translateX(-50%);
  z-index: 20; width: 260px; height: 64px;
  background: linear-gradient(180deg, #6dd15a 0%, #3f9e2e 100%);
  border: none; border-radius: 40px; cursor: pointer;
  box-shadow: 0 8px 0 #1e5c12, 0 12px 30px rgba(0,0,0,.3);
  font-family: 'Baloo 2', cursive; font-size: 24px; font-weight: 900;
  color: white; letter-spacing: 1px; text-shadow: 0 2px 4px rgba(0,0,0,.3);
  transition: transform .08s, box-shadow .08s;
}
.start-btn:active { transform: translateX(-50%) translateY(5px); box-shadow: 0 3px 0 #1e5c12, 0 6px 15px rgba(0,0,0,.2); }

/* ════════════════════════════════
   SCREEN 1 – POUR
════════════════════════════════ */
#s1 { background: linear-gradient(180deg, #e8d5b4 0%, #f5ead0 100%); justify-content: flex-start; }
.kitchen-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, #f9f0da 0%, #e8d5b4 100%);
}
.kitchen-shelf {
  position: absolute; top: 120px; left: 0; right: 0; height: 16px;
  background: linear-gradient(180deg, #c4956a, #a67c52);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.pour-title {
  position: relative; z-index: 10; margin-top: 50px; text-align: center;
  font-family: 'Baloo 2', cursive; font-size: 24px; font-weight: 900;
  color: white; text-shadow: 2px 3px 0 var(--red);
}
.pour-subtitle { position: relative; z-index: 10; font-size: 17px; font-weight: 700; color: #6b3a1f; margin-top: 4px; }

.tank-area { position: relative; z-index: 10; margin-top: 30px; }
.vat-area { position: relative; z-index: 10; margin-top: -10px; }

/* PUSH Button */
.push-btn-wrap { position: relative; z-index: 10; margin-top: 20px; }
.push-btn {
  width: 110px; height: 110px; border-radius: 50%; border: none; cursor: pointer;
  background: radial-gradient(circle at 38% 35%, #ff6b6b, var(--red2) 55%, #a81020);
  box-shadow: 0 10px 0 #7a0e18, 0 14px 35px rgba(232,25,44,.45),
              inset 0 -6px 12px rgba(0,0,0,.25), inset 0 6px 10px rgba(255,255,255,.2);
  transition: transform .08s, box-shadow .08s;
  position: relative;
}
.push-btn::after {
  content: 'PUSH'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Baloo 2', cursive; font-size: 20px; font-weight: 900;
  color: white; text-shadow: 0 2px 4px rgba(0,0,0,.4); letter-spacing: 1px;
}
.push-btn:active, .push-btn.pressed {
  transform: translateY(7px);
  box-shadow: 0 3px 0 #7a0e18, 0 6px 15px rgba(232,25,44,.3),
              inset 0 6px 12px rgba(0,0,0,.35);
}
.push-arrow {
  position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
  font-size: 0; width: 40px; height: 40px;
  animation: arrowBob 0.7s ease-in-out infinite;
}
@keyframes arrowBob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

.fill-pct { display: none; }

/* ════════════════════════════════
   SCREEN 2 – FLAVOR
════════════════════════════════ */
#s2 { background: radial-gradient(ellipse at 50% 30%, #f9f0da 0%, #e8d5b4 100%); justify-content: flex-start; }
.flavor-title { position: relative; z-index: 10; margin-top: 50px; font-family: 'Baloo 2', cursive; font-size: 22px; font-weight: 900; color: white; text-shadow: 2px 3px 0 var(--red); text-align: center; padding: 0 20px; }
.conveyor-belt {
  position: relative; z-index: 10; width: 380px; height: 90px; margin-top: 20px;
  background: linear-gradient(180deg, #9c6b3c 0%, #7b4a1e 100%);
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,.3), inset 0 -4px 8px rgba(0,0,0,.2);
  overflow: hidden;
}
.belt-rollers {
  position: absolute; bottom: 4px; left: 0; right: 0; height: 18px;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 22px, rgba(0,0,0,.2) 22px, rgba(0,0,0,.2) 26px);
  display: flex; align-items: center; gap: 22px; padding: 0 8px;
}
.roller { width: 16px; height: 16px; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #c49a6c, #7b4a1e); box-shadow: inset -2px -2px 4px rgba(0,0,0,.3); flex-shrink: 0; }
.belt-surface {
  position: absolute; top: 8px; left: 0; right: 0; height: 60px;
  background: linear-gradient(180deg, #b8956a 0%, #a07848 100%);
  display: flex; align-items: center; gap: 28px; padding: 0 16px;
  overflow: hidden;
}
.ing-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  cursor: grab; flex-shrink: 0; z-index: 20;
  transition: transform .15s;
  position: relative;
}
.ing-item:active { cursor: grabbing; }
.ing-item.used { opacity: .3; pointer-events: none; }
.ing-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 0 rgba(0,0,0,.2), 0 6px 15px rgba(0,0,0,.15); }
.ing-name { font-size: 9px; font-weight: 800; color: rgba(255,255,255,.9); letter-spacing: .5px; text-shadow: 0 1px 3px rgba(0,0,0,.4); }

.big-vat-wrap { position: relative; z-index: 10; margin-top: 20px; }
.drop-hint-text { font-family: 'Baloo 2', cursive; font-size: 16px; color: #9a6b3a; font-weight: 700; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; white-space: nowrap; }
.dropped-icons { position: absolute; top: 35%; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.dropped-icon { font-size: 28px; animation: dropIn .4s cubic-bezier(.34,1.56,.64,1); }
@keyframes dropIn { from{transform:scale(0) rotate(-20deg); opacity:0} to{transform:scale(1) rotate(0); opacity:1} }
.ing-count-label { position: absolute; z-index:10; bottom: 30px; font-family: 'Baloo 2', cursive; font-size: 16px; color: var(--brown); font-weight: 800; }
.drag-ghost {
  position: fixed; pointer-events: none; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.4));
}

/* ════════════════════════════════
   SCREEN 3 – CHURN
════════════════════════════════ */
#s3 { background: radial-gradient(ellipse at 50% 40%, #f9f0da 0%, #e8d5b4 100%); justify-content: flex-start; }

/* Smile Meter */
.smile-meter-area { position: relative; z-index: 10; margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.meter-row { display: flex; align-items: center; gap: 10px; }
.meter-cheese-icon { width: 44px; height: 44px; }
.meter-bar-outer {
  width: 320px; height: 40px; border-radius: 30px;
  background: #3a2010;
  padding: 5px; box-shadow: inset 0 2px 8px rgba(0,0,0,.4), 0 4px 12px rgba(0,0,0,.2);
  position: relative; overflow: hidden;
}
.meter-bar-track {
  height: 100%; border-radius: 20px; overflow: hidden; position: relative;
  background: linear-gradient(90deg, #d42b2b 0%, #f7a800 40%, #f7c948 65%, #ffed80 100%);
}
.meter-bar-cover {
  position: absolute; right: 0; top: 0; bottom: 0;
  background: #3a2010; transition: width .15s ease; border-radius: 0 20px 20px 0;
}
.meter-face {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: none;
  transition: right .15s ease;
}
.meter-face img {
  width: 100%; height: 100%; object-fit: contain;
  transition: opacity 0.3s ease;
}
.meter-label-text { font-family: 'Baloo 2', cursive; font-size: 13px; color: #7b4a1e; font-weight: 700; }

.churn-scene { position: relative; z-index: 10; margin-top: 10px; display: flex; align-items: flex-start; flex: 1; cursor: pointer; }
.cow-side { position: relative; width: 110px; }
.churn-vat-wrap { position: relative; cursor: pointer; }

/* Whisk animation */
.whisk-svg {
  position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
  z-index: 5; pointer-events: none;
  transition: transform .05s;
}
.whisk-svg.animating { animation: whiskSpin .4s ease-in-out; }
@keyframes whiskSpin {
  0%{transform:translateX(-50%) rotate(-25deg)}
  50%{transform:translateX(-50%) rotate(25deg)}
  100%{transform:translateX(-50%) rotate(-10deg)}
}

.churn-ripple-layer { position: absolute; inset: 0; border-radius: 0 0 50% 50%; overflow: hidden; pointer-events: none; z-index: 4; }
.churn-ripple-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.5);
  animation: rippleExpand .7s ease-out forwards;
}
@keyframes rippleExpand {
  from{width:20px;height:20px;opacity:.9}
  to{width:160px;height:80px;opacity:0}
}

.tap-to-mix { position: relative; z-index: 10; margin-top: 4px; font-family: 'Baloo 2', cursive; font-size: 18px; font-weight: 900; color: var(--brown); text-shadow: 0 1px 3px rgba(0,0,0,.15); pointer-events: none; animation: tapPulse 1s ease-in-out infinite; white-space: nowrap; text-align: center; }
@keyframes tapPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.95)} }

.churn-taps-label { position: absolute; z-index:10; bottom: 60px; font-family: 'Baloo 2', cursive; font-size: 16px; color: var(--brown); font-weight: 800; }
.churn-title { position: relative; z-index:10; margin-top: 50px; font-family: 'Baloo 2', cursive; font-size: 22px; font-weight: 900; color: white; text-shadow: 2px 3px 0 var(--red); text-align: center; padding: 0 20px; }

/* ════════════════════════════════
   SCREEN 4 – PACKAGING
════════════════════════════════ */
#s4 { background: radial-gradient(ellipse at 50% 30%, #f9f0da 0%, #e8d5b4 100%); justify-content: flex-start; }
.pack-title { position: relative; z-index:10; margin-top: 50px; font-family: 'Baloo 2', cursive; font-size: 22px; font-weight: 900; color: white; text-shadow: 2px 3px 0 var(--red); }

.pack-conveyor {
  position: relative; z-index: 10; width: 390px; height: 120px; margin-top: 14px;
  background: linear-gradient(180deg, #6b6b6b 0%, #4a4a4a 50%, #3a3a3a 100%);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,.3), inset 0 2px 4px rgba(255,255,255,.1);
}
.pack-belt-top { position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(180deg, #888, #555); border-radius: 8px 8px 0 0; }
.pack-rollers-row {
  position: absolute; bottom: 4px; left: 0; right: 0; display: flex; gap: 22px; padding: 0 12px; align-items: center;
}
.pack-roller { width: 18px; height: 18px; border-radius: 50%; background: radial-gradient(circle at 38% 35%, #ccc, #888); box-shadow: inset -2px -2px 4px rgba(0,0,0,.4), 0 1px 3px rgba(0,0,0,.3); flex-shrink: 0; }
.pack-belt-surface { position: absolute; top: 6px; left: 0; right: 0; height: 90px; background: repeating-linear-gradient(90deg, #555 0px, #555 46px, #4a4a4a 46px, #4a4a4a 48px, #5a5a5a 48px, #5a5a5a 94px, #4a4a4a 94px, #4a4a4a 96px); }

.wedge-obj {
  position: absolute; top: 4px; cursor: grab; z-index: 20;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
  transition: none;
}
.wedge-obj:active { cursor: grabbing; }

.trivia-bubble {
  position: relative; z-index: 10; margin-top: 12px;
  background: white; border-radius: 16px; padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
  max-width: 340px; font-size: 13px; font-weight: 700; color: #333;
  animation: triviaSlide .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes triviaSlide { from{transform:translateX(30px);opacity:0} to{transform:translateX(0);opacity:1} }
.trivia-cow-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.pack-boxes-row {
  position: relative; z-index: 10; display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; justify-content: center; width: 390px; padding: 0 10px;
}
.pack-box {
  width: 82px; height: 95px; border-radius: 14px; cursor: default;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
  border: 4px dashed rgba(255,255,255,.4);
  transition: transform .15s, box-shadow .15s, border .15s;
  position: relative;
}
.pack-box.lit { border-style: solid; border-color: var(--yellow2); transform: scale(1.07); box-shadow: 0 10px 30px rgba(0,0,0,.25), 0 0 20px rgba(255,215,0,.5); }
.box-label-text { font-family: 'Baloo 2', cursive; font-size: 11px; font-weight: 900; color: white; letter-spacing: .5px; }
.box-counter { position: absolute; top: -12px; right: -12px; width: 28px; height: 28px; border-radius: 50%; background: var(--red2); color: white; font-family: 'Baloo 2', cursive; font-size: 14px; font-weight: 900; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 10px rgba(232,25,44,.4); }

.pack-score-label { position: absolute; z-index: 10; bottom: 25px; font-family: 'Baloo 2', cursive; font-size: 18px; color: var(--brown); font-weight: 800; }

/* ════════════════════════════════
   SCREEN 5 – REWARD
════════════════════════════════ */
#s5 { background: linear-gradient(170deg, #D42B2B 0%, #e84545 50%, #D42B2B 100%); justify-content: flex-start; align-items: center; }
.reward-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 48%; background: #f5ead0; border-radius: 60% 60% 0 0 / 20% 20% 0 0; }
.reward-title-wrap { position: relative; z-index: 5; margin-top: 50px; text-align: center; font-family: 'Baloo 2', cursive; font-weight: 900; }
.reward-title-wrap .rt1 { font-size: 44px; color: var(--cream); text-shadow: 3px 4px 0 rgba(0,0,0,.2); line-height: 1.1; }
.reward-title-wrap .rt2 { font-size: 38px; color: var(--yellow); text-shadow: 2px 3px 0 #a0780a; }

.lvqr-box-wrap { position: relative; z-index: 5; margin-top: 10px; display: flex; align-items: flex-end; gap: 20px; }
.wedge-stack { display: flex; flex-direction: column; align-items: center; gap: -4px; }
.stacked-box { width: 70px; height: 20px; border-radius: 6px; background: linear-gradient(180deg, #f5f5f5, #ddd); border: 2px solid #bbb; margin-top: -4px; display: flex; align-items: center; justify-content: center; font-size: 8px; color: var(--red); font-weight: 800; letter-spacing: .3px; }
.laughing-cow-3d { font-size: 72px; animation: cowCelebrate .4s ease-in-out infinite alternate; filter: drop-shadow(0 8px 16px rgba(0,0,0,.3)); }
@keyframes cowCelebrate { from{transform:rotate(-8deg) scale(1)} to{transform:rotate(8deg) scale(1.08)} }
@keyframes float3D { 0%,100%{transform:translateY(0) rotate(-4deg)} 50%{transform:translateY(-12px) rotate(4deg)} }

.score-chip { position: relative; z-index: 5; background: white; border-radius: 20px; padding: 12px 28px; margin-top: 8px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,.15); }
.score-big { font-family: 'Baloo 2', cursive; font-size: 52px; font-weight: 900; color: var(--red2); line-height: 1; display: block; }
.score-sub { font-size: 13px; color: #888; font-weight: 700; letter-spacing: .5px; }

.cta-stack { position: relative; z-index: 5; display: flex; flex-direction: column; gap: 12px; width: 300px; margin-top: 14px; }
.cta-b {
  height: 58px; border: none; border-radius: 40px; cursor: pointer;
  font-family: 'Baloo 2', cursive; font-size: 20px; font-weight: 900;
  color: white; letter-spacing: .5px; text-shadow: 0 2px 4px rgba(0,0,0,.25);
  transition: transform .08s, box-shadow .08s;
}
.cta-b:active { transform: translateY(4px); }
.cta-green { background: linear-gradient(180deg, #6dd15a, #3f9e2e); box-shadow: 0 7px 0 #1e5c12, 0 10px 25px rgba(0,0,0,.2); }
.cta-green:active { box-shadow: 0 3px 0 #1e5c12; }
.cta-blue  { background: linear-gradient(180deg, #4ab8f5, #1a8fd1); box-shadow: 0 7px 0 #0d5c96, 0 10px 25px rgba(0,0,0,.2); }
.cta-blue:active  { box-shadow: 0 3px 0 #0d5c96; }
.cta-gold  { background: linear-gradient(180deg, #f7d24e, #e8a800); box-shadow: 0 7px 0 #9a6800, 0 10px 25px rgba(0,0,0,.2); color: #5a3800; }
.cta-gold:active  { box-shadow: 0 3px 0 #9a6800; }

.qr-row { position: relative; z-index: 5; display: flex; align-items: center; justify-content: flex-end; width: 300px; margin-top: 4px; }
.qr-box { width: 72px; height: 72px; background: white; border-radius: 10px; padding: 4px; box-shadow: 0 4px 15px rgba(0,0,0,.2); }
.play-again { position: relative; z-index: 5; margin-top: 10px; width: 80%; height: 58px; border: none; border-radius: 40px; background: linear-gradient(180deg, #6dd15a, #3f9e2e); box-shadow: 0 7px 0 #1e5c12, 0 10px 25px rgba(0,0,0,.2); color: white; font-family: 'Baloo 2', cursive; font-size: 20px; font-weight: 900; letter-spacing: .5px; text-shadow: 0 2px 4px rgba(0,0,0,.25); cursor: pointer; transition: transform .08s, box-shadow .08s; }
.play-again:active { transform: translateY(4px); box-shadow: 0 3px 0 #1e5c12; }

/* ════════════════════════════════
   SHARED UI
════════════════════════════════ */
#timer-bar-outer { display: none; position: absolute; top: env(safe-area-inset-top, 0px); left: 0; right: 0; height: 9px; background: rgba(0,0,0,.2); z-index: 100; border-radius: 32px 32px 0 0; overflow: hidden; }
#timer-bar { height: 100%; background: linear-gradient(90deg, #4CAF50, #FFD700 60%, #E8192C); transition: width .1s linear; }

#hud-score { position: absolute; top: calc(14px + env(safe-area-inset-top, 0px)); right: 16px; z-index: 100;
  background: var(--red2); color: white; font-family: 'Baloo 2', cursive; font-size: 17px; font-weight: 900;
  padding: 4px 14px; border-radius: 20px; box-shadow: 0 4px 12px rgba(232,25,44,.35); display: none; }

.spark {
  position: absolute; pointer-events: none; z-index: 200; font-size: 22px;
  animation: sparkFly .7s ease-out forwards;
}
@keyframes sparkFly {
  from{transform:translate(0,0) scale(1);opacity:1}
  to{transform:translate(var(--tx),var(--ty)) scale(0);opacity:0}
}

.confetti-piece {
  position: absolute; z-index: 200; pointer-events: none;
  border-radius: 3px;
  animation: confFall linear forwards;
}
@keyframes confFall {
  0%{transform:translateY(-10px) rotate(0deg);opacity:1}
  100%{transform:translateY(740px) rotate(720deg);opacity:0}
}

.phase-flash { position: absolute; inset: 0; background: white; z-index: 300; pointer-events: none; animation: flashFade .35s ease-out forwards; border-radius: 32px; }
@keyframes flashFade { from{opacity:.75} to{opacity:0} }

.check-pop { position: absolute; pointer-events: none; z-index: 200; font-size: 30px; animation: checkPop .6s cubic-bezier(.34,1.56,.64,1) forwards; }
@keyframes checkPop { from{transform:scale(0)} 60%{transform:scale(1.3)} to{transform:scale(0);opacity:0} }
