.game-container{display:flex;flex-direction:column;align-items:center;padding:20px;font-family:Segoe UI,sans-serif;background:#f0f9ff;min-height:100vh}header{width:100%;max-width:400px;display:flex;justify-content:space-between;align-items:center;margin-bottom:20px}h1{font-size:1.2rem;color:#0369a1}.stats{display:flex;gap:15px;background:#fff;padding:8px 15px;border-radius:20px;box-shadow:0 4px 6px -1px #0000001a}.maze-grid{display:grid;grid-template-columns:repeat(10,30px);grid-template-rows:repeat(10,30px);gap:2px;background:#e0f2fe;padding:5px;border-radius:8px}.cell{width:30px;height:30px;display:flex;align-items:center;justify-content:center;background:#fff;border-radius:4px}.cell.wall{background:#bae6fd}.cell img{width:24px;height:24px;object-fit:contain}.overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:#ffffffe6;display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:10}button{padding:12px 24px;background:#0284c7;color:#fff;border:none;border-radius:12px;font-weight:700;cursor:pointer;display:flex;align-items:center;gap:8px;transition:transform .2s}button:hover{transform:scale(1.05)}.icon{width:20px;height:20px}@media (max-width: 480px){.maze-grid{grid-template-columns:repeat(10,25px);grid-template-rows:repeat(10,25px)}.cell{width:25px;height:25px}}.hearts{display:flex;gap:4px}.cell span{font-size:16px}
