/* ppuzzl.bid */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #fafafa; color: #000000; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.6; }
.auction { text-align: center; padding: 4rem 2rem 3rem; }
.hero-frame { display: inline-block; border: 3px solid #000; padding: 2.5rem 3.5rem; }
.brand { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 3.5rem); box-shadow: 4px 4px 0 #000; display: inline-block; padding: 0.2rem 0.5rem; }
.bid-highlight { background: #facc15; padding: 0 0.3rem; }
.going { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.7rem; background: #facc15; display: inline-block; padding: 0.2rem 0.6rem; margin-top: 1rem; letter-spacing: 0.1em; }
.items { max-width: 440px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.auction-card { border: 3px solid #000; box-shadow: 4px 4px 0 #000; padding: 24px; position: relative; }
.yellow-card { background: #facc15; }
.pink-card { background: #f472b6; }
.green-card { background: #4ade80; }
.hot-label { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.6rem; background: #000; color: #f472b6; display: inline-block; padding: 0.1rem 0.5rem; margin-bottom: 0.5rem; letter-spacing: 0.1em; }
.item-name { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1rem; margin-bottom: 0.5rem; }
.bid-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }
.bid-amount { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: clamp(36px, 6vw, 52px); }
.timer { font-family: 'IBM Plex Mono', monospace; font-size: 1.2rem; color: #dc2626; border: 3px solid #000; display: inline-block; padding: 0.4rem 0.8rem; margin-top: 0.8rem; background: #fafafa; }
.sold-label { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.2rem; margin-top: 0.5rem; letter-spacing: 0.1em; }
.sold { max-width: 440px; margin: 0 auto; padding: 0 1.5rem 2rem; }
.close { text-align: center; padding: 3rem 2rem 4rem; }
.close-text { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1rem; text-decoration: underline; text-decoration-thickness: 3px; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
