body {
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: black;
    background: black url("../images/bgImage.png") no-repeat center 45%;
    background-size: 150% 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%;
}

#progressbar-container {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    user-select: none;
    width: 100vw;
}

#logo-image {
    width: 60%; /* 图片宽度匹配容器宽度 */
    height: auto; /* 高度自动调整，保持宽高比 */
    max-width: 65%; /* 最大宽度不超过图片的原始宽度 */
}

#progressbar-bg {
    width: 50%;
    height: 4px;
    max-width: 420px;
    border-radius: 5px;
    background-color: rgb(68, 68, 68);
    align-content: center;
    padding: 2px;
}

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

#tip {
    font-size: 14px;
    color: black;
    font-weight: bold;
    text-align: center;
    /* white-space: nowrap; */
}

.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;
}
