body { 
    padding: 0; 
    margin: 0; 
    overflow: hidden; 
    width: 100%;
    height: 100%;
}
#unity-container { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}
#unity-canvas { 
    background: #231F20; 
    width: 100%; 
    height: 100%; 
    display: block;
}
.unity-mobile #unity-canvas { width: 100%; height: 100%; }
#unity-loading-bar { 
    position: absolute; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%); 
    display: block; /* ✅ Важно: должен быть visible */
    width: 200px;
    text-align: center;
}
#unity-logo {
    width: 154px; 
    height: 130px;
    margin: 0 auto 10px;
    background: url('unity-logo-dark.png') no-repeat center / contain;
}
#unity-progress-bar-empty { 
    width: 141px; 
    height: 17px; 
    margin: 0 auto;
    background: url('progress-bar-empty-dark.png') no-repeat center / contain;
}
#unity-progress-bar-full { 
    width: 0%; 
    height: 17px; 
    background: url('progress-bar-full-dark.png') no-repeat left / contain;
    transition: width 0.1s;
}
.unity-mobile #unity-loading-bar { width: 200px; height: 40px; }
.unity-mobile #unity-logo { background: url('unity-logo-dark.png') no-repeat center / contain; width: 132px; height: 112px; }
.unity-mobile #unity-progress-bar-empty { background: url('progress-bar-empty-dark.png') no-repeat center / contain; width: 199px; height: 29px; }
.unity-mobile #unity-progress-bar-full { background: url('progress-bar-full-dark.png') no-repeat left / contain; width: 0%; height: 29px; }
#unity-warning { position: absolute; left: 50%; transform: translate(-50%, 0); background: white; padding: 20px; border-radius: 10px; box-shadow: 0 0 20px black; display: none; }
/* Скрываем футер Unity целиком */
#unity-footer {
    display: none !important;
}
/* Дополнительно скрываем отдельные элементы, если футер не сработает */
#unity-logo-title-footer,
#unity-fullscreen-button,
#unity-build-title {
    display: none !important;
}
