.dm-board {
  display: grid;
  gap: 2px;
  margin: 0 auto;
  background: var(--line);
  border: 2px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  touch-action: manipulation;
}
.dm-cell {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 5vw, 22px);
  font-weight: 700;
  background: #fff;
  color: #222;
  cursor: pointer;
  user-select: none;
  transition: background .12s, color .12s;
}
.dm-cell.sel { background: #dbeafe; color: #1d4ed8; box-shadow: inset 0 0 0 2px #1d4ed8; }
.dm-cell.placed { background: #ecfdf5; color: #047857; }
.dm-cell.wrong { box-shadow: inset 0 0 0 2px #ef4444; }
