body {
    padding: 0;
    margin: 0;
    background-color: #1F2223;
}

#unity-container {
    position: absolute
}

#unity-container.unity-desktop {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

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

#unity-canvas {
    background: url('sky-background.png');
    background-image: url('sky-background.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
}

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

#unity-footer {
    position: relative
}

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

#unity-logo-title-footer {
    float: left;
    width: 102px;
    height: 38px;
    background: url('unity-logo-title-footer.png') no-repeat center
}

#unity-build-title {
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-family: arial;
    font-size: 18px
}

#unity-fullscreen-button {
    cursor: pointer;
    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
}

#unity-loading {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block
}

#unity-logo {
    position: absolute;
    top: 6.25%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 70.9%;
    height: 15.2%;
    background: url('Logo.png') no-repeat center;
    background-size: contain;
}

#unity-progress-bar-empty {
    position: absolute;
    width: 256px;
    height: 16px;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    background: #1C1917;
    border-radius: 2px;
    border: black 2px solid;
    color: white;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 12px;
}


#unity-progress-bar-full {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    background: url('loading-full.png') no-repeat;
    background-size: 100% 100%;
    width: 0%;
}

#unity-progress-bar-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

/* #desktop-background 
{
    position: absolute;
    background: url('exodia-desktop-background.png') no-repeat;
    background-size: auto 100vh;
    background-position: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
} */

#desktop-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* hoặc rgba(255,255,255,0.3) nếu muốn làm sáng */
    z-index: 0;
    pointer-events: none;
}