.gm-info { text-align: center; font-weight: 700; color: #25323f; min-height: 22px; }
.gm-board {
  display: grid;
  grid-template-columns: repeat(5, 52px);
  gap: 5px;
  margin: 8px auto;
  width: max-content;
}
.gm-cell {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #e3e9f1;
  cursor: pointer;
  user-select: none;
  transition: background .15s, transform .08s;
}
.gm-cell.on { background: #4d96ff; }
.gm-cell.picked { background: #ffd93d; }
.gm-cell:active { transform: scale(.93); }
