body { padding: 0; margin: 0 }
#unity-container { position: fixed; width: 100%; height: 100%; }
#unity-canvas { width: 100%; height: 100%; background: #231F20 }
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-logo { width: 512px; height: 512px; background: url('unity-logo-dark.png') no-repeat center }
#unity-progress-bar-empty {   position: absolute;  margin-top: 340px; width: 141px; height: 16px; background: url('progress-bar-empty-dark.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 16px;  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 }
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.5);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#loaderContainer {
    background-color: beige;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #d523c6) 0 0/300% 300%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loader {
    display: flex;
    width: 100px;
    height: 100px;
    justify-content: space-around;
    align-items: center;
    animation: spin 2s linear infinite;
}

.dot {
    width: 20px;
    height: 20px;
    background-color: #23a6d5;
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
    background-color: #23d5ab;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
    background-color: #ee7752;
}

#loadingText {
    position: absolute;
    margin-top: 140px;
    font-size: 16px;
    color: #fff;
}

