body {
    padding: 0;
    margin: 0
}

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

#unity-canvas {
    width: 100%;
    height: 100%;
    background: #C41230;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    text-align: center
}

#unity-logo {
    width: 300px;
    height: 60px;
    margin: 0 auto;
    background: url('miami-logo.png') no-repeat center;
    background-size: contain
}

#unity-progress-bar-empty {
    width: 100%;
    height: 18px;
    margin-top: 28px;
    margin-left: auto;
    margin-right: auto;
    background: #000000;
    border-radius: 16px;
    border: 3px solid #ffffff;
    overflow: hidden;
    box-sizing: border-box;
    padding: 3px 3px
}

#unity-progress-bar-full {
    width: 0%;
    height: 100%;
    background: #C41230;
    border-radius: 8px;
    transition: width 0.3s ease
}

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

body.mobile #unity-logo {
    width: 80vw;
    max-width: 320px;
    height: 60px
}

body.mobile #unity-progress-bar-empty {
    height: 20px;
    margin-top: 24px;
    padding: 4px 4px
}
