body {
    margin: 0;
}

#unity-container {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#unity-canvas {
    background: #231F20;
}

#unity-container.unity-desktop {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

#unity-container.unity-mobile {
    position: fixed;
    width: 100%;
    height: 100%
}

.unity-mobile #unity-footer {
    display: none
}

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

#unity-loading-bar {
    position: absolute;
    text-align: center;
    margin-bottom: 56px;
    width: 280px;
}

#unity-progress-bar-empty {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
}

#unity-progress-bar-full {
    width: 0%;
    height: 100%;
    background: #FFFFFF;
    transition: width 0.2s ease;
}

#unity-logo {
    margin-left: 8px;
    width: 256px;
    height: 256px;
    background: url('bear_bear.png') no-repeat center;
    background-size: contain;
    transform: scale(0.8);
}
