.game {
    width: min(1600px, 100%);
}

.layout {
    grid-template-columns: 55% 40%;
    justify-content: space-between;
    gap: 0;
}

.scene-wrap {
    height: clamp(520px, 72vh, 820px);
    aspect-ratio: auto;
}

.panel:first-child {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px) {
    .game {
        width: 1600px;
        max-width: none;
    }

    .layout {
        grid-template-columns: 55% 40%;
    }

    .scene-wrap {
        height: clamp(520px, 72vh, 820px);
        min-height: 520px;
    }
}
