body {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #121212; /* ������ ��� */
    color: #e0e0e0; /* ������� ����� */
}

#unity-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1e1e1e; /* ������ ��� ��� ���������� */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

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

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

#unity-canvas {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background-color: #222; /* ������ ��� ��� canvas */
}

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

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    background-color: rgba(0, 0, 0, 0.8); /* �������������� ������ ��� */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#unity-logo {
    width: 154px;
    height: 130px;
    background: url('unity-logo-dark.png') no-repeat center;
    background-size: contain;
}

#unity-progress-bar-empty {
    width: 100%;
    height: 18px;
    margin-top: 10px;
    background: #444; /* ������ ��� ��� ������� ��������-���� */
    border-radius: 9px;
    overflow: hidden;
}

#unity-progress-bar-full {
    width: 0%;
    height: 18px;
    background: linear-gradient(to right, #4caf50, #81c784);
    border-radius: 9px;
}

#unity-footer {
    position: relative;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    background-color: #1e1e1e; /* ������ ��� ��� ������ */
    border-radius: 0 0 10px 10px;
    color: #e0e0e0;
}

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

#unity-logo-title-footer {
    width: 102px;
    height: 38px;
    background: url('unity-logo-title-footer.png') no-repeat center;
    background-size: contain;
}

#unity-build-title {
    margin-right: 10px;
    line-height: 38px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}

#unity-fullscreen-button {
    cursor: pointer;
    width: 38px;
    height: 38px;
    background: url('fullscreen-button.png') no-repeat center;
    background-size: contain;
    transition: transform 0.2s;
}

    #unity-fullscreen-button:hover {
        transform: scale(1.1);
    }

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: #333; /* ������ ��� ��� �������������� */
    color: #e0e0e0;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: none;
}

    #unity-warning div {
        margin-bottom: 5px;
    }

        #unity-warning div:last-child {
            margin-bottom: 0;
        }
