#loadingScreen{
    position:fixed;
    inset:0;
    background:#050816;
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.loader-box{
    width:400px;
    text-align:center;
}

.loader-box h2{
    color:white;
    margin-bottom:20px;
}

.progress-bar{
    width:100%;
    height:25px;
    background:#1e293b;
    border-radius:20px;
    overflow:hidden;
}

#progress{
    width:0%;
    height:100%;
    background:#00e5ff;
    transition:.1s;
}

#percent{
    display:block;
    margin-top:10px;
    color:white;
    font-size:22px;
}

.dashboard{
    text-align:center;
    padding:50px;
    color:white;
}

.cards{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:30px;
}

.card{
    width:250px;
    padding:30px;
    border-radius:20px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#050816;
    overflow:hidden;
    font-family:Arial, sans-serif;
}

.container{
    width:100%;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-card{
    width:800px;
    padding:50px;
    text-align:center;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.1);

    border-radius:25px;

    transition:.15s;

    transform-style:preserve-3d;

    box-shadow:
    0 0 30px rgba(0,229,255,.3);
}

.logo{
    width:220px;
    margin-bottom:20px;

    filter:
    drop-shadow(0 0 20px #00e5ff);
}

h1{
    color:white;
    font-size:60px;

    text-shadow:
    0 0 10px #00e5ff,
    0 0 20px #00e5ff;
}

p{
    color:#ccc;
    margin-top:15px;
    margin-bottom:30px;
}

.btn-glow{
    padding:15px 40px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-size:18px;

    background:#00e5ff;
    color:#000;

    transition:.3s;
}

.particle{
    position:fixed;
    width:4px;
    height:4px;
    border-radius:50%;
    background:#00e5ff;
    pointer-events:none;
}
