body { padding: 0; margin: 0 }
#unity-container { position: absolute }
#unity-container.unity-desktop { left: 50%; top: 50%; transform: translate(-50%, -50%) }
#unity-container.unity-mobile { width: 100%; height: 100% }
#unity-canvas { background: #231F20 }
.unity-mobile #unity-canvas { width: 100%; height: 100% }

#unity-progress-bar-background {
    position: absolute;
    left: 50%;
    bottom: 32%;   /* ⬅⬅ moved up */
    transform: translate(-50%, -50%);
}



#unity-logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%); /* Center horizontally, no vertical shift */
    width: 50vw; /* Start large */
    height: 50vh; /* Takes up the top half */
    background: url('brain.png') no-repeat center;
    background-size: contain;
    animation: scaleLogo 5s ease-out forwards; /* Slows down over time */
}

@keyframes scaleLogo {
    from {
        transform: translate(-50%, 0) scale(1); /* Start at normal size */
    }
    to {
        transform: translate(-50%, 25%) scale(2.5); /* Scale up & move slightly up */
    }
}



#unity-progress-bar-empty { width: 250px; height: 18px; margin-top: 10px; margin-left: 6.5px; transform: translateX(-10%); background: url('progress-bar-empty-light.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 18px; margin-top: 10px; transform: translateX(-10%); background: url('progress-bar-full-light.png') no-repeat center }
#unity-progress-bar-text { width: 250px; margin-top: 10px; font-family: 'Open Sans', sans-serif; font-weight: bold; font-size: 14px; color: #fff; transform: translate(110%, -155%);}
#privacy-notice {
    position: absolute;
    left: 50%;
    bottom: 6%; /* ⬅ sits between bar (32%) and Lilly logo (~ -39%) */
    transform: translate(-50%, -50%);
    
    width: 75vw;
    max-width: 450px;
    height: 18vh;  /* a bit smaller so it fits nicely */
    
    background: url('privacy-notice.png') no-repeat center;
    background-size: contain;
}


#lilly-logo { 
    position: absolute; 
    left: 50%; 
    bottom: -39%; 
    transform: translate(-50%, -50%); 
    width: 50vw; 
    height: 50vh; 
    background: url('logo.png') no-repeat center; 
    background-size: contain; 
}

/* Footer Parent */
#footer-parent {
    position: relative;
}

/* Footer Text */
#footer-text {
    /* position: absolute;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 6px;
    color: #fff;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    width: 100%;
    padding-bottom: 10px;
    left: 50%;
    background-size: contain; */

    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 6px;
    color: #fff;
    text-align: center; 
    width: 100%;
    padding-bottom: 10px;

    position: absolute; 
    left: 50%; 
    bottom: -50%; 
    transform: translate(-50%, -7%); 
    height: 50vh; 
    background-size: contain; 
}

/* Adjustments for Landscape Mode */
@media screen and (orientation: landscape) {
    #privacy-notice {
        width: 50vw; /* Adjust width for landscape */
        height: 12vh; /* Adjust height for landscape */
        bottom: 10%; /* Adjust positioning for landscape */
    }
    
    #lilly-logo {
        width: 30vh; /* Use viewport height instead of width */
        height: 30vh;
        bottom: -20%; /* Adjust positioning to match portrait mode proportions */
    }

    #footer-text {
        font-family: 'IBM Plex Sans', sans-serif;
        font-size: 6px;
        color: #fff;
        text-align: center; 
        width: 100%;
        padding-bottom: 10px;
    
        position: absolute; 
        left: 50%; 
        bottom: -39%; 
        transform: translate(-50%, 12%); 
        height: 30vh;
        bottom: -20%; /* Adjust positioning to match portrait mode proportions */
        background-size: contain; 
    }
}

#unity-webgl-logo { float:left; width: 204px; height: 38px; background: url('webgl-logo.png') no-repeat center }
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
#unity-fullscreen-button { float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }

p {
    font-family: 'IBM Plex Sans', sans-serif;
}

h1 {
    font-family: 'IBM Plex Sans', sans-serif;
}