html,
body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: radial-gradient(circle, #2b3a4a 0%, #0b141d 100%);
}

#unity-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#unity-container.unity-desktop {
    position: relative;
}

#unity-canvas {
    background: #231F20;
    height: 100vh !important;
    width: auto !important;
    aspect-ratio: 9 / 16 !important;
    max-width: 100vw !important;
    max-height: 1366px !important;
    object-fit: contain !important;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

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

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

#unity-logo {
    width: 200px;
    height: 100px;
    background: url('images/hammer_games_web_logo.png') no-repeat center;
    background-size: contain;
    margin-bottom: 20px;
}

#unity-progress-bar-empty {
    width: 141px;
    height: 18px;
    margin: 10px auto;
    background: url('progress-bar-empty-dark.png') no-repeat center;
}

#unity-progress-bar-full {
    width: 0%;
    height: 18px;
    background: url('progress-bar-full-dark.png') no-repeat center;
}

#unity-footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: white;
    pointer-events: none;
}

#unity-footer>* {
    pointer-events: auto;
}

.unity-mobile #unity-footer {
    display: none;
}