.ice-board { display: grid; gap: 4px; justify-content: center; margin: 8px auto; }
.ice-board .cell { width: 40px; height: 40px; border-radius: 8px; background: var(--surface-2); display: grid; place-items: center; font-size: 20px; }
.ice-board .wall { background: #2b3f5c; }
.ice-board .start { background: #4d96ff; }
.ice-board .goal { background: #6bcb77; }
.ice-board .me { box-shadow: inset 0 0 0 3px #ffd93d; }
.hud { text-align: center; font-size: 14px; color: var(--muted); margin: 8px 0; }
.hud b { color: var(--ink); }
