:root{--bg: #0a0a0f; --panel-bg: #16161e; --accent-pink: #ff00ff; --accent-green: #00ff9f; --accent-cyan: #00e5ff; --text: #e0e0e0; --font-main: 'JetBrains Mono', monospace; --font-retro: 'VT323', monospace;}
.claw-machine-container{width:300px;height:450px;max-width:100%;max-height:100%;border:4px solid var(--accent-pink);border-radius:12px;background:var(--panel-bg);position:relative;overflow:hidden;margin:0 auto;box-shadow:0 0 20px rgba(255,0,255,0.2),inset 0 0 15px rgba(0,0,0,0.6);}.game-screen{position:absolute;top:15px;left:50%;transform:translateX(-50%);background:#000;color:var(--accent-green);font-family:var(--font-retro);padding:4px 15px;border:2px solid var(--accent-cyan);border-radius:4px;font-size:21px;letter-spacing:1px;width:80%;text-align:center;z-index:10;box-shadow:0 0 10px rgba(0,255,159,0.2);}.game-layout{margin-top:75px;height:calc(100% - 75px);display:flex;flex-direction:column;justify-content:space-between;padding:10px;box-sizing:border-box;}.target-row{display:flex;justify-content:center;padding:15px;border:2px dashed rgba(0,229,255,0.2);border-radius:6px;background:rgba(0,0,0,0.2);}.target-slot{width:92px;height:35px;border:2px dashed var(--accent-cyan);border-radius:4px;display:flex;align-items:center;justify-content:center;background:rgba(0,229,255,0.05);position:relative;color:rgba(0,229,255,0.4);font-family:var(--font-retro);font-size:16px;}.stamp-row{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:15px;padding:15px;}.draggable-stamp{width:88px;height:31px;cursor:grab;position:relative;touch-action:none;z-index:5;}.draggable-stamp:active{cursor:grabbing;}.draggable-stamp img{width:88px;height:31px;display:block;border:2px solid var(--accent-pink);border-radius:4px;box-shadow:0 0 10px rgba(255,0,255,0.2);background:#000;}.game-locked .draggable-stamp{pointer-events:none;opacity:0.6;}.spin-dissolve{animation:spinNDissolve 1.5s cubic-bezier(0.55,0.085,0.68,0.53) forwards;pointer-events:none;}@keyframes spinNDissolve{0%{transform:scale(1) rotate(0deg);opacity:1;filter:hue-rotate(0deg) blur(0px);}50%{transform:scale(1.2) rotate(360deg);opacity:0.8;filter:hue-rotate(180deg) blur(2px);}100%{transform:scale(0) rotate(1080deg);opacity:0;filter:hue-rotate(360deg) blur(10px);}}