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

.score-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.score-row div {
    min-height: 54px;
    padding: 8px 10px;
    border-radius: 10px;
    background: var(--bg);
}

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

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

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

#snakeCanvas {
    width: 100%;
    aspect-ratio: 1;
    display: block;
    border-radius: 12px;
    background: #101417;
}

.start-btn {
    width: 100%;
    height: 44px;
    margin-top: 12px;
    border-radius: 12px;
    color: #fff;
    background: var(--brand);
    font-size: 16px;
    font-weight: 700;
}

.control-pad {
    width: 216px;
    margin: 18px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 64px);
    grid-template-rows: repeat(2, 58px);
    gap: 8px;
    justify-content: center;
}

.control-pad button {
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.control-pad button:active {
    background: var(--pressed);
}

.control-pad [data-dir="up"] {
    grid-column: 2;
}

.control-pad [data-dir="left"] {
    grid-column: 1;
}

.control-pad [data-dir="down"] {
    grid-column: 2;
}

.control-pad [data-dir="right"] {
    grid-column: 3;
}
