.chess-stage {
    margin-top: 14px;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.status-row {
    min-height: 54px;
    padding: 8px 10px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: var(--bg);
}

.status-row span,
.status-row strong {
    display: block;
}

.status-row span {
    color: var(--secondary);
    font-size: 12px;
}

.status-row strong {
    margin-top: 4px;
    font-size: 20px;
    line-height: 1.1;
}

.chess-board {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    user-select: none;
}

.square {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: 800;
}

.square.light {
    background: #f0d9b5;
}

.square.dark {
    background: #b58863;
}

.square.selected {
    outline: 3px solid var(--brand);
    outline-offset: -3px;
}

.piece-white {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .55);
}

.piece-black {
    color: #111;
}
