.gomoku-stage {
    margin-top: 14px;
    padding: 14px;
    border-radius: 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;
}

#gomokuCanvas {
    width: 100%;
    aspect-ratio: 1;
    display: block;
    border-radius: 12px;
    background: #d8a85f;
    touch-action: none;
}
