canvas#board {
  display: block;
  background: #1a0635;
  border: 2px solid var(--c-yellow);
  box-shadow: 0 0 0 4px var(--c-bg), 0 0 24px rgba(255,214,10,0.35);
  touch-action: manipulation;
  image-rendering: pixelated;
}
.status {
  position: fixed;
  bottom: calc(32px + env(safe-area-inset-bottom));
  left: 50%; transform: translateX(-50%);
  font-size: clamp(10px, 2vw, 13px);
  letter-spacing: 0.16em;
  color: var(--c-cyan);
  z-index: 20;
}
.status.win { color: var(--c-yellow); }
.status.lose { color: var(--c-red); }
.status.draw { color: rgba(255,255,255,0.7); }
