body {
    overflow-x: hidden;
    overflow-y: hidden;
}

#GameLoadingDiv016 {
    /* background-color: #084B4A; */
    background-color: #000000;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#GameLoadingDiv016_img {
    width: 75%;
    margin-bottom: 15px;
}

#progress-container {
    margin-top: 10px;
    width: 75%;
    background-color: #222;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
    position: relative;
}

#progress-bar {
    width: 0%;
    height: 30px;
    background: linear-gradient(to right, #007BFF, #0056b3);
    color: white;
    border-radius: 15px;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

#inner-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, rgba(51, 153, 255, 0.9), rgba(51, 153, 255, 0.6));
    border-radius: 15px;
    animation: move 2s linear infinite;
    overflow: hidden;
}

@keyframes move {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

#progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    color: white;
    font-weight: bold;
}