*{margin:0;padding:0;box-sizing:border-box}:root{--bg: #1a1a2e;--bg-secondary: #16213e;--bg-dark: #0f3460;--primary: #ff6b35;--primary-dark: #e55a2b;--secondary: #00ff88;--accent: #ff6b6b;--coin: #ffcc00;--text: #888888;--white: #ffffff}body{font-family:"Press Start 2P",Courier New,monospace;background-color:var(--bg);color:var(--white);min-height:100vh;display:flex;justify-content:center;align-items:center;overflow:hidden}#game-container{position:relative;width:640px;height:480px;background:var(--bg-secondary);border:3px solid var(--primary);border-radius:8px;box-shadow:0 0 20px #ff6b354d,0 0 40px #ff6b351a,inset 0 0 60px #00000080;overflow:hidden}#game-canvas{position:absolute;top:0;left:0;width:100%;height:100%;image-rendering:pixelated}#character-select{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:20px;background:linear-gradient(180deg,var(--bg) 0%,var(--bg-secondary) 100%);z-index:10}#character-select h1{font-size:16px;color:var(--primary);text-shadow:0 0 10px var(--primary),0 0 20px var(--primary);margin-bottom:5px;text-align:center;animation:pulse 2s ease-in-out infinite}#character-select .subtitle{font-size:10px;color:var(--secondary);text-shadow:0 0 5px var(--secondary);margin-bottom:20px}.characters{display:flex;gap:15px;justify-content:center}.character-card{background:var(--bg-dark);border:2px solid var(--text);border-radius:8px;padding:15px;width:180px;cursor:pointer;transition:all .3s ease;text-align:center}.character-card:hover{border-color:var(--primary);box-shadow:0 0 15px #ff6b3580;transform:translateY(-5px)}.character-card.selected{border-color:var(--secondary);box-shadow:0 0 20px #00ff8880}.character-sprite{width:64px;height:64px;margin:0 auto 10px;background:var(--bg-secondary);border-radius:4px;image-rendering:pixelated}.flora-sprite{background:linear-gradient(135deg,#d4a574 50%,#c4956a 50%);position:relative}.flora-sprite:after{content:"";position:absolute;width:100%;height:100%;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect fill='%23d4a574' x='4' y='2' width='8' height='6'/%3E%3Crect fill='%23c4956a' x='3' y='8' width='10' height='6'/%3E%3Crect fill='%23000' x='6' y='4' width='2' height='2'/%3E%3Crect fill='%23000' x='10' y='4' width='2' height='2'/%3E%3Crect fill='%23000' x='7' y='7' width='4' height='1'/%3E%3Crect fill='%23d4a574' x='2' y='1' width='3' height='4'/%3E%3Crect fill='%23d4a574' x='11' y='1' width='3' height='4'/%3E%3C/svg%3E") center/contain no-repeat}.nouki-sprite{background:linear-gradient(135deg,#f0d9b5 50%,#e5c9a0 50%);position:relative}.nouki-sprite:after{content:"";position:absolute;width:100%;height:100%;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect fill='%23f0d9b5' x='3' y='2' width='10' height='7'/%3E%3Crect fill='%23e5c9a0' x='2' y='9' width='12' height='5'/%3E%3Crect fill='%23000' x='5' y='5' width='2' height='2'/%3E%3Crect fill='%23000' x='9' y='5' width='2' height='2'/%3E%3Crect fill='%23000' x='7' y='8' width='2' height='2'/%3E%3Crect fill='%23f0d9b5' x='1' y='0' width='4' height='4'/%3E%3Crect fill='%23f0d9b5' x='11' y='0' width='4' height='4'/%3E%3C/svg%3E") center/contain no-repeat}.laska-sprite{background:linear-gradient(135deg,#4a4a4a 30%,#7a5c3a 70%);position:relative}.laska-sprite:after{content:"";position:absolute;width:100%;height:100%;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect fill='%234a4a4a' x='4' y='2' width='4' height='6'/%3E%3Crect fill='%237a5c3a' x='8' y='2' width='4' height='6'/%3E%3Crect fill='%23555' x='3' y='8' width='10' height='6'/%3E%3Crect fill='%23fff' x='5' y='4' width='2' height='2'/%3E%3Crect fill='%23000' x='6' y='4' width='1' height='1'/%3E%3Crect fill='%2389CFF0' x='9' y='4' width='2' height='2'/%3E%3Crect fill='%23000' x='10' y='4' width='1' height='1'/%3E%3Crect fill='%23000' x='7' y='7' width='2' height='1'/%3E%3Crect fill='%234a4a4a' x='2' y='0' width='3' height='4'/%3E%3Crect fill='%237a5c3a' x='11' y='0' width='3' height='4'/%3E%3C/svg%3E") center/contain no-repeat}.character-card h2{font-size:11px;color:var(--white);margin-bottom:3px}.character-card .breed{font-size:7px;color:var(--text);margin-bottom:10px}.stats{text-align:left}.stat{display:flex;justify-content:space-between;align-items:center;margin-bottom:5px;font-size:7px}.stat-label{color:var(--text)}.stat-value{display:flex;gap:2px}.stat-value span{width:8px;height:8px;border:1px solid var(--primary);border-radius:2px}.stat-value .filled{background:var(--primary);box-shadow:0 0 3px var(--primary)}.stat-value .empty{background:transparent}#game-ui{position:absolute;top:10px;left:10px;right:10px;display:flex;justify-content:space-between;align-items:flex-start;z-index:5;pointer-events:none}#score-display{display:flex;flex-direction:column;gap:5px}#score{font-size:16px;color:var(--secondary);text-shadow:0 0 5px var(--secondary),0 0 10px var(--secondary)}#level{font-size:8px;color:var(--primary);text-shadow:0 0 5px var(--primary)}#lives-display{font-size:16px;color:var(--accent);text-shadow:0 0 5px var(--accent)}#game-over{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;background:#1a1a2ef2;z-index:20}#game-over h1{font-size:24px;color:var(--accent);text-shadow:0 0 10px var(--accent),0 0 20px var(--accent);margin-bottom:20px;animation:pulse 1s ease-in-out infinite}#game-over p{font-size:12px;color:var(--white);margin-bottom:10px}#game-over span{color:var(--secondary);text-shadow:0 0 5px var(--secondary)}#game-over button{font-family:"Press Start 2P",monospace;font-size:10px;padding:10px 20px;margin:5px;background:var(--bg-dark);color:var(--primary);border:2px solid var(--primary);border-radius:4px;cursor:pointer;transition:all .2s}#game-over button:hover{background:var(--primary);color:var(--bg);box-shadow:0 0 15px var(--primary)}#level-up{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:24px;color:var(--coin);text-shadow:0 0 10px var(--coin),0 0 20px var(--coin),0 0 40px var(--coin);z-index:15;animation:levelUp 1s ease-out forwards}@keyframes levelUp{0%{transform:translate(-50%,-50%) scale(.5);opacity:0}50%{transform:translate(-50%,-50%) scale(1.2);opacity:1}to{transform:translate(-50%,-50%) scale(1);opacity:0}}#instructions{position:absolute;bottom:5px;left:0;width:100%;text-align:center;font-size:6px;color:var(--text);z-index:5}@keyframes pulse{0%,to{opacity:1}50%{opacity:.7}}.hidden{display:none!important}@media (max-width: 700px){#game-container{width:100vw;height:100vh;border-radius:0;border:none}.characters{flex-direction:column;gap:10px}.character-card{width:90%;max-width:280px;padding:10px}#character-select h1{font-size:12px}}
