*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:25px;
    overflow:hidden;
    font-family:'Montserrat',sans-serif;
    background:
    linear-gradient(135deg,#0f172a,#1e293b,#0f172a);
    background-size:300% 300%;
    animation:bgMove 12s ease infinite;
    color:white;
}
.splash-container{
    width:100%;
    max-width:520px;
    text-align:center;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:45px 35px;
    box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}
.logo{
    font-size:clamp(70px,10vw,95px);
    margin-bottom:18px;
    animation:float 2.5s ease-in-out infinite;
}
h1{
    font-size:clamp(34px,6vw,46px);
    letter-spacing:4px;
    font-weight:700;
    margin-bottom:12px;
}
p{
    color:#cbd5e1;
    font-size:clamp(15px,2vw,18px);
    margin-bottom:35px;
}
.status-box{
    min-height:65px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:18px;
    border-radius:16px;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.08);
    margin-bottom:22px;
    font-size:15px;
}
.progress{
    width:100%;
    height:12px;
    background:rgba(255,255,255,.10);
    border-radius:30px;
    overflow:hidden;
}
.progress-bar{
    width:0;
    height:100%;
    border-radius:30px;
    background:linear-gradient(
        90deg,
        #06b6d4,
        #3b82f6
    );
    transition:.6s;
}
small{
    display:block;
    margin-top:25px;
    color:#94a3b8;
    font-size:13px;
    letter-spacing:.5px;
}
/* ==========================
   TABLET
========================== */
@media (max-width:768px){
.splash-container{
    padding:35px 25px;
}
.status-box{
    min-height:60px;
}
}
/* ==========================
   HP
========================== */
@media (max-width:576px){
body{
    padding:15px;
}
.splash-container{
    padding:30px 20px;
    border-radius:20px;
}
.logo{
    margin-bottom:15px;
}
h1{
    letter-spacing:2px;
}
p{
    margin-bottom:25px;
}
.status-box{
    padding:15px;
    font-size:14px;
}
small{
    font-size:12px;
}
}
/* ==========================
   HP KECIL
========================== */
@media (max-width:360px){
.splash-container{
    padding:25px 18px;
}
.logo{
    font-size:65px;
}
h1{
    font-size:30px;
}
p{
    font-size:14px;
}
.status-box{
    font-size:13px;
}
small{
    font-size:11px;
}
}
@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}
@keyframes bgMove{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}