*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(135deg,#00103a,#002d88,#000d33);

color:white;

overflow:hidden;
}

.time{

position:absolute;

top:25px;

left:30px;

font-size:17px;

font-weight:500;

opacity:.9;
}

.container{

text-align:center;

max-width:500px;

width:90%;
}

.profile{

width:150px;

height:150px;

border-radius:50%;

object-fit:cover;

border:5px solid white;

box-shadow:0 0 35px rgba(255,255,255,.25);

margin-bottom:25px;
}

h1{

font-size:55px;

font-weight:700;
}

.subtitle{

margin:12px 0 30px;

opacity:.8;

font-size:18px;
}

.card{

background:rgba(255,255,255,.08);

backdrop-filter:blur(15px);

padding:35px;

border-radius:28px;

box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.status{

display:flex;

justify-content:center;

align-items:center;

gap:10px;

font-size:22px;

margin-bottom:25px;
}

.dot{

width:14px;

height:14px;

background:#00ff66;

border-radius:50%;

box-shadow:0 0 18px #00ff66;
}

.btn{

display:inline-block;

padding:16px 35px;

background:linear-gradient(135deg,#2563eb,#3b82f6);

border-radius:50px;

color:white;

text-decoration:none;

font-weight:600;

transition:.3s;
}

.btn:hover{

transform:translateY(-3px);

box-shadow:0 10px 30px rgba(37,99,235,.45);
}

.socials{

margin:35px 0;

display:flex;

justify-content:center;

gap:25px;
}

.socials a{

color:white;

font-size:32px;

transition:.3s;
}

.socials a:hover{

transform:scale(1.2);

color:#60a5fa;
}

.footer{

opacity:.7;
}