body {
    padding: 0;
    margin: 0;
    overflow: hidden; /* ������� ��������� */
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version */
    background: #5ce7fc;
}

#unity-container {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#unity-canvas {
    position: absolute;
    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;
    justify-content: center;
}

#circle {
    position: relative;
    width: auto;
    height: calc(50vh); /* ������������ ������ � ����������� �� ���� �������� */
}

#circle img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* ��������� ��������� */
}

#center-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#center-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* ��������� ��������� */
}

#unity-progress-bar-empty {
    width: 100%;
    max-width: 800px;
    height: 18px;
    margin-top: 10px;
    background: url('progress-bar-empty-dark.png') no-repeat center;
}

#unity-progress-bar-full {
    width: 0%;
    height: 18px;
    margin-top: 10px;
    background: url('progress-bar-full-dark.png') no-repeat center;
}

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