/* ================= PREMIUM LOADER ================= */

#pageLoader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(135deg,#070b1a,#111827,#1e1b4b);
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
z-index:999999;
transition:1s;
}

.loader-logo{
width:120px;
height:120px;
border-radius:50%;
background:#fff;
padding:10px;
animation:loaderPulse 2s infinite;
}

.loader-text{
margin-top:25px;
font-size:28px;
font-weight:700;
background:linear-gradient(90deg,#06b6d4,#ec4899);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.loader-bar{
width:220px;
height:6px;
background:rgba(255,255,255,0.08);
border-radius:30px;
overflow:hidden;
margin-top:25px;
}

.loader-progress{
height:100%;
width:0%;
background:linear-gradient(90deg,#06b6d4,#ec4899);
animation:loadingBar 3s linear forwards;
}

@keyframes loadingBar{
0%{width:0%;}
100%{width:100%;}
}

@keyframes loaderPulse{
50%{
transform:scale(1.08);
}
}