* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

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

#unity-canvas {
    min-height: 100%;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    background: url('back.webp') no-repeat center center;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
}

#unity-logo {
    width: 100%; 
    aspect-ratio: 3 / 2;
    background: url('LogoAndImage.png') no-repeat center; 
    background-size: contain; 
    height: auto; 
    max-width: 900px;
    margin-top: 25px;
}

#unity-loading-bar {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center; 
    width: 100%;
    height: 100vh;
    justify-content: space-between;
    padding: 20px;
}

#unity-progress-bar-empty {
    width: 100%; 
    height: 24px;
    background: url('progress-bar-empty-dark.png') no-repeat center;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 100px;
    position: relative;
    max-width: 840px;
}

#unity-progress-bar-full {
    width: 0%;
    height: 24px;
    background: url('progress-bar-full-dark.png') no-repeat center;
    background-size: cover;
    border-radius: 12px;
    transition: width 0.3s ease;
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none
}
