.tn-board {
  display: grid;
  gap: 2px;
  margin: 6px auto;
  width: max-content;
  background: #e7ecf3;
  padding: 5px;
  border-radius: 10px;
}
.tn-cell {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  font-size: 19px;
  transition: background .12s;
}
.tn-cell.tree { cursor: default; }
.tn-cell.tent { background: #ffe1a8; }
.tn-clue {
  display: grid;
  gap: 2px;
  margin: 2px auto;
}
.tn-clue span {
  width: 34px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #3a4a5e;
  background: #eef3f9;
  border-radius: 4px;
}
.tn-clue.row { grid-auto-flow: column; }
