/* ------------------------------
   SPLASH SCREENS
------------------------------ */
#intro-splash {
    position: fixed;
    top:0; left:0;
    width:100%;
    height:100%;
    background: rgba(11,15,23,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:1000;
}

.glass-splash {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding:40px 50px;
    border-radius:16px;
    text-align:center;
    display:flex;
    flex-direction:column;
    gap:24px;
    align-items:center;
}

.glass-splash img {
    width:180px;
}

.loader-bar {
    width:200px;
    height:6px;
    background: rgba(255,255,255,0.15);
    border-radius:4px;
    overflow:hidden;
}

.loader-progress {
    height:100%;
    width:0%;
    background:#3CD2F9;
    border-radius:4px;
    transition: width 0.1s linear;
}

/* MAIN SPLASH */
#splash {
    position: fixed;
    top:0; left:0;
    width:100%;
    height:100%;
    background: rgba(11,15,23,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    z-index:999;
}

#splash img { width:190px; margin-bottom:28px; opacity:0; transform:translateY(20px); }
#splash h2 {
    font-family:'Orbitron',sans-serif;
    font-size:24px;
    color:#ffffff;
    letter-spacing:2px;
    opacity:0;
    text-align:center;
}

/* RESPONSIVE */
@media(max-width:600px){
    .glass-splash { padding:30px 24px; }
    .glass-splash img { width:140px; }
    .loader-bar { width:140px; height:5px; }
    #splash h2 { font-size:18px; }
}
