/* 页面整体样式 */
body {
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #171724;
    background: rgb(41, 39, 39) /*url("../images/bgImage.png") no-repeat center 45%*/;
    background-size: 100% auto;
}

#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-mobile #unity-canvas {
    width: 100%;
    height: 100%;
}

/* logo 单独居中靠上 */
#logo-container {
    position: fixed;
    top: 50%;
    left: 51%;
    transform: translate(-50%,-50%);
    text-align: center;
}

#logo-image {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 进度条和 tip 固定在底部居中 */
#progressbar-container {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    user-select: none;
    width: 100vw;
    max-width: 420px;
}

#progressbar-bg {
    width: 100%;
    height: 4px;
    background-color: rgb(68, 68, 68);
    border-radius: 5px;
    padding: 2px;
}

#progressbar {
    width: 0%;
    height: 100%;
    background-color: rgb(255, 72, 206);
    border-radius: 5px;
}

#tip {
    font-size: 14px;
    color: black;
    font-weight: bold;
    text-align: center;
}

.multiple-text-shadow {
    text-shadow:
        0 0 2px white,
        0 0 2px white,
        0 0 2px white,
        0 0 2px white,
        0 0 2px white,
        0 0 2px white,
        0 0 2px white;
}
