/*.bone-loader{
    position:fixed;
    inset:0;
    background:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.bone-loader span{
    font-size:1.3rem;
    color:#2A2A72;
    margin-bottom:15px;
}

.bone-loader-bar{
    width:250px;
    height:10px;
    background:#ddd;
    border-radius:20px;
    overflow:hidden;
}

.bone-loader-bar div{
    height:100%;
    width:0%;
    background:linear-gradient(90deg,#2A2A72,#009FFD);
    animation:loading 2s infinite;
}

@keyframes loading{
    0%{width:0}
    50%{width:100%}
    100%{width:0}
}*/
.bone-loader{
    position:absolute;
    inset:0;
    background:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:10;
}

/* اجعل الحاوية الأم relative */
.bone-game-container{
    position:relative;
}
