/* quirk.bar */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #fce7f3; color: #1a1a1a; font-family: 'Lato', sans-serif; font-weight: 400; line-height: 1.6; }
.hello { text-align: center; padding: 5rem 2rem 3rem; position: relative; overflow: hidden; }
.shape { position: absolute; }
.star-shape { width: 24px; height: 24px; background: #fbbf24; clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); top: 15%; left: 20%; transform: rotate(15deg); }
.circle-shape { width: 30px; height: 30px; border-radius: 50%; background: #60a5fa; top: 25%; right: 18%; }
.zigzag-shape { width: 30px; height: 20px; background: #4ade80; clip-path: polygon(0 100%, 25% 0, 50% 100%, 75% 0, 100% 100%); bottom: 30%; left: 15%; transform: rotate(-10deg); }
.brand { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(3rem, 8vw, 5rem); text-decoration: underline wavy #fb923c; position: relative; z-index: 1; }
.bar-badge { display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.8rem; background: #60a5fa; border: 3px solid #1a1a1a; padding: 0.2rem 0.8rem; margin-top: 0.5rem; animation: wiggle 2s ease-in-out infinite; }
.weird-label { display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.65rem; background: #fbbf24; border: 3px solid #1a1a1a; padding: 0.15rem 0.5rem; margin-top: 0.5rem; animation: wiggle 2s ease-in-out infinite 0.3s; }
@keyframes wiggle { 0%, 100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }
.explore { max-width: 440px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.collage-block { border: 3px solid #1a1a1a; padding: 1.5rem; }
.pink-bg { background: #fbbf24; }
.yellow-bg { background: #fb923c; }
.blue-bg { background: #4ade80; }
.block-title { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem; margin-bottom: 0.3rem; }
.block-text { font-size: 0.75rem; }
.wiggle-zone { text-align: center; padding: 3rem 2rem; }
.face-row { display: flex; justify-content: center; gap: 1rem; }
.face-badge { width: 40px; height: 40px; border-radius: 50%; background: #fbbf24; border: 2px solid #1a1a1a; position: relative; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 4px; padding-top: 8px; animation: wiggle 2s ease-in-out infinite; }
.eye { width: 4px; height: 4px; border-radius: 50%; background: #1a1a1a; }
.eye.wink { height: 2px; border-radius: 0; }
.smile { width: 10px; height: 5px; border-bottom: 2px solid #1a1a1a; border-radius: 0 0 10px 10px; }
.smile.wide { width: 14px; }
.bye { text-align: center; padding: 3rem 2rem 5rem; }
.bye-text { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.5rem; text-decoration: underline wavy #fb923c; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
