body { padding: 0; margin: 0 }
#unity-container { position: fixed; width: 100%; height: 100%; }
#unity-canvas { width: 100%; height: 100%; background: #231F20 }

#unity-logo { width: 512px; height: 512px; background: url('unity-logo-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);
    }
}
.splash_container {
    width: 100vw;
    height: 100vh;
    background: url('loading_bg.png') no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blur_container {
    width: 100vw;
    height: 200px;
    background: url('blur_bg.png') no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    margin-bottom: 120px;
}

.loading_text {
    color: #e0d74e;
    text-align: center;
    font-size: 16px; 
    font-weight: 800;
    margin-top: 12px; 
}

.progress {
    position: absolute;
    top: 70%;
    width: 100%;
    padding-bottom: 12vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.progress_text {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 2px;
}

.progress_text > span {
    text-shadow: -2px -2px 2px black, 2px -2px 2px black, -2px 2px 2px black,
        2px 3px 3px black;
}

.progress_bar {
    width: 56.7vw;
    aspect-ratio: 238/24;
    border: 2px solid #000;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 999px;
}

.progress_bar_inner {
    width: 0%;
    height: 100%;
    padding-top: 4px;
    border-radius: 999px;
    background: linear-gradient(0deg, #f7e253 0%, #e6b442 50%, #f0df70 100%);
    background-origin: content-box;
    transition: width 0.5s ease-in-out;
    box-sizing: border-box;
}
