/* dames.css */
.dm-wrap { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.dm-board {
  display: grid; grid-template-columns: repeat(8, 38px); grid-auto-rows: 38px;
  border: 3px solid #3e2b18; border-radius: 6px; overflow: hidden;
}
.dm-cell { display: grid; place-items: center; position: relative; }
.dm-cell.light { background: #e9d3a8; }
.dm-cell.dark { background: #8a5a32; }
.dm-cell[data-clk] { cursor: pointer; }
.dm-cell.target::after {
  content: ""; position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,206,92,.8);
}
.dm-cell.sel { box-shadow: inset 0 0 0 3px var(--accent-2); }
.dm-piece {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  font-size: 16px; color: #2a2200; box-shadow: 0 2px 3px rgba(0,0,0,.4);
}
.dm-piece.seat0 { background: #f4f1e8; border: 2px solid #cbb27a; }
.dm-piece.seat1 { background: #1c1c22; border: 2px solid #444; color: #ffce5c; }
@media (max-width: 380px) {
  .dm-board { grid-template-columns: repeat(8, 33px); grid-auto-rows: 33px; }
  .dm-piece { width: 24px; height: 24px; }
}
