.game-page {
    padding: max(12px, env(safe-area-inset-top)) 16px calc(16px + env(safe-area-inset-bottom));
}

.game-topbar {
    min-height: 56px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 12px;
}

.game-title {
    margin: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 750;
}

.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;
}

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