html,
body {
    padding: 0;
    margin: 0;
    background: #F4F2ED;
}

#desktop-mobile-only {
    display: none;
}

#mobile-experience {
    display: block;
}

@media only screen and (min-width: 901px) {
    html,
    body {
        min-height: 100%;
        overflow: auto;
        background: #FFFFFF;
    }

    #desktop-mobile-only {
        display: block;
    }

    #mobile-experience {
        display: none;
    }
}

html::before,
html::after {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    background: #F4F2ED;
    z-index: 100000;
    pointer-events: none;
}

html::before {
    top: 0;
    height: env(safe-area-inset-top);
}

html::after {
    bottom: 0;
    height: env(safe-area-inset-bottom);
}

#unity-container {
    position: fixed;
    inset: 0;
    background: #F4F2ED;
}

#unity-canvas {
    width: 100%;
    height: 100%;
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#unity-logo {
    background: url('nestle-preg-logo-2026.png') no-repeat center;
    background-size: contain;
    width: min(320px, 80vw);
    height: 120px;
}

#unity-progress-bar-empty {
    width: min(300px, 75vw);
    height: 10px;
    margin-top: 32px;
    background: #C8D6DE;
    border-radius: 999px;
    overflow: hidden;
}

#unity-progress-bar-full {
    width: 0%;
    height: 100%;
    margin-top: 0;
    background: #1E3A4F;
    border-radius: 999px;
}

#unity-loading-text {
    margin-top: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #1E3A4F;
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none
}

#chooseCamSel {
    display: none
}
