.ws-board { display: grid; gap: 2px; margin: 14px auto; width: max-content; touch-action: none; user-select: none; }
.ws-cell { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 6px; background: #fff; border: 1px solid var(--card-bd); font-weight: 700; font-size: 15px; color: var(--ink); cursor: pointer; }
.ws-cell.sel { background: #ffe9a8; }
.ws-cell.found { background: var(--brand); color: #fff; }
.ws-words { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 12px auto; max-width: 460px; }
.ws-word { padding: 4px 12px; border-radius: 20px; background: var(--card); border: 2px solid var(--card-bd); font-weight: 700; font-size: 14px; letter-spacing: 1px; }
.ws-word.done { background: #6bcb77; border-color: #6bcb77; color: #fff; text-decoration: line-through; }
.status-line { text-align: center; font-weight: 700; color: var(--brand); min-height: 22px; }
