@font-face {
    font-family: 'SB Sans Display';
    src: url('SBSansDisplay-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body { 
    padding: 0; 
    margin: 0;
    background-color: white;
}

html {
    height: -webkit-fill-available;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    width: 100vw;
    overflow: hidden;
}

#unity-container { 
    position: absolute;
    background-size: cover;
    background-position: top;
    height: 100%;
    width: 100%;
}

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

.loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 320px;
    height: auto;
    margin-bottom: 40px;
}

.loader-text {
    color: #080808;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 18px;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
}

.dots {
    display: inline-flex;
    align-items: center;
    height: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #20C6D4;
    margin: 0 4px;
    opacity: 0.4;
    animation: dotFade 1.4s infinite;
    transform-origin: center;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

.progress-text {
    color: #5D646C;
    font-family: 'SB Sans Display', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 18px;
    margin: 0;
}

@keyframes dotFade {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.33);
    }
}
