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

body{
background:#070b12;
color:white;
font-family:Inter,sans-serif;
overflow-x:hidden;
}

#snow-container{
position:fixed;
inset:0;
pointer-events:none;
z-index:-2;
}

.snow{
position:absolute;
background:white;
border-radius:50%;
opacity:.8;
animation:fall linear infinite;
}

@keyframes fall{
to{
transform:translateY(110vh);
}
}

#cursor-glow{
position:fixed;
width:250px;
height:250px;
border-radius:50%;
background:rgba(88,101,242,.15);
filter:blur(80px);
pointer-events:none;
transform:translate(-50%,-50%);
z-index:-1;
}

.login-screen{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
}

.login-card{
width:420px;
background:#111827;
border:1px solid #1f2937;
padding:30px;
border-radius:20px;
}

.login-card h1{
margin-bottom:10px;
}

.login-card p{
color:#9ca3af;
margin-bottom:20px;
}

.login-card input{
width:100%;
padding:14px;
background:#0f172a;
border:1px solid #1e293b;
color:white;
border-radius:12px;
}

.login-card button{
width:100%;
margin-top:15px;
padding:14px;
background:#5865f2;
border:none;
color:white;
border-radius:12px;
cursor:pointer;
}

.dashboard{
display:none;
padding:30px;
}

.topbar{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
}

.logo{
font-size:1.6rem;
font-weight:bold;
}

#logoutBtn{
padding:10px 18px;
background:#ef4444;
border:none;
color:white;
border-radius:10px;
cursor:pointer;
}

.status{
margin-bottom:25px;
font-weight:bold;
color:#4ade80;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-bottom:25px;
}

.card{
background:#111827;
border:1px solid #1f2937;
padding:20px;
border-radius:16px;
transition:.25s;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 0 25px rgba(88,101,242,.25);
}

.card span{
font-size:2rem;
font-weight:bold;
}

.panel{
margin-top:25px;
background:#111827;
border:1px solid #1f2937;
padding:25px;
border-radius:16px;
}

.panel h2{
margin-bottom:15px;
}

.bar{
margin-bottom:15px;
}

.progress{
height:10px;
background:#1f2937;
border-radius:999px;
overflow:hidden;
margin-top:5px;
}

.fill{
height:100%;
background:#5865f2;
}