:root{
--bg:#050505;
--bg2:#0d0d0d;
--card:rgba(255,255,255,.05);
--border:rgba(255,255,255,.08);
--text:#fff;
--sub:#a9a9a9;
--radius:24px;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
-webkit-tap-highlight-color:transparent;
}

html{
scroll-behavior:smooth;
}

body{
background:#000;
color:var(--text);
overflow-x:hidden;
min-height:100vh;
}

#bg{
position:fixed;
inset:0;
z-index:-4;
background:
radial-gradient(circle at top,#ffffff12 0%,transparent 35%),
radial-gradient(circle at bottom,#88888810 0%,transparent 40%),
linear-gradient(180deg,#000,#070707,#101010,#000);
}

#particles{
position:fixed;
inset:0;
width:100%;
height:100%;
pointer-events:none;
z-index:-3;
}

#spotlight{
position:fixed;
width:250px;
height:250px;
border-radius:50%;
background:radial-gradient(circle,#ffffff10,transparent 70%);
filter:blur(40px);
pointer-events:none;
left:-125px;
top:-125px;
z-index:-2;
transition:.08s linear;
}

#loader{
position:fixed;
inset:0;
background:#000;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
gap:24px;
z-index:999;
transition:.5s;
}

#loader h1{
font-size:42px;
font-weight:800;
letter-spacing:10px;
}

.loaderBar{
width:220px;
height:5px;
background:#1b1b1b;
border-radius:99px;
overflow:hidden;
}

.loaderBar div{
width:0;
height:100%;
background:white;
animation:load 2s forwards linear;
}

@keyframes load{
to{
width:100%;
}
}

#app{
width:100%;
display:flex;
justify-content:center;
padding:28px 18px 50px;
}

.container{
width:100%;
max-width:450px;
display:flex;
flex-direction:column;
gap:18px;
}

.hero{
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
padding:10px;
}

.online{
display:flex;
align-items:center;
gap:8px;
margin-bottom:18px;
color:var(--sub);
font-size:14px;
}

.online span{
width:10px;
height:10px;
border-radius:50%;
background:#fff;
box-shadow:0 0 15px white;
animation:pulse 1.5s infinite;
}

@keyframes pulse{
50%{
transform:scale(1.5);
opacity:.5;
}
}

#avatar{
width:120px;
height:120px;
border-radius:50%;
object-fit:cover;
border:3px solid rgba(255,255,255,.15);
box-shadow:
0 0 30px rgba(255,255,255,.1),
0 10px 30px rgba(0,0,0,.6);
transition:.35s;
}

#avatar:hover{
transform:scale(1.05) rotate(4deg);
}

#name{
margin-top:18px;
font-size:34px;
font-weight:700;
}

#typing{
margin-top:8px;
color:var(--sub);
min-height:24px;
}

#quote{
margin-top:18px;
color:#d3d3d3;
font-style:italic;
line-height:1.6;
max-width:330px;
}

.card{
background:var(--card);
border:1px solid var(--border);
backdrop-filter:blur(20px);
border-radius:var(--radius);
padding:22px;
box-shadow:
0 15px 40px rgba(0,0,0,.45),
0 0 20px rgba(255,255,255,.03);
opacity:0;
transform:translateY(30px);
animation:show .6s forwards;
}

.card:nth-child(2){animation-delay:.1s;}
.card:nth-child(3){animation-delay:.2s;}
.card:nth-child(4){animation-delay:.3s;}
.card:nth-child(5){animation-delay:.4s;}
.card:nth-child(6){animation-delay:.5s;}

@keyframes show{
to{
opacity:1;
transform:none;
}
}

.title{
display:flex;
align-items:center;
gap:10px;
font-size:17px;
font-weight:600;
margin-bottom:18px;
padding-bottom:10px;
border-bottom:1px solid rgba(255,255,255,.08);
}

.aboutItem{
display:flex;
justify-content:space-between;
padding:12px 0;
color:var(--sub);
}

.aboutItem b{
color:white;
font-weight:500;
}

.linkCard,
.gameCard,
.downloadCard{
display:flex;
align-items:center;
gap:15px;
padding:16px;
border-radius:18px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.06);
margin-top:14px;
transition:.25s;
}

.linkCard:hover,
.gameCard:hover,
.downloadCard:hover{
transform:translateY(-3px);
background:rgba(255,255,255,.08);
}

.linkCard{
text-decoration:none;
color:white;
}

.icon{
width:48px;
height:48px;
border-radius:14px;
display:flex;
justify-content:center;
align-items:center;
background:rgba(255,255,255,.08);
flex-shrink:0;
}

.info{
flex:1;
display:flex;
flex-direction:column;
}

.info b{
font-size:15px;
}

.info span{
margin-top:4px;
font-size:13px;
color:var(--sub);
}

.copyBtn,
.downloadBtn{
padding:8px 16px;
border:none;
border-radius:12px;
background:white;
color:black;
font-weight:600;
cursor:pointer;
}

.timeCard{
text-align:center;
}

#clock{
font-size:36px;
font-weight:700;
}

#date{
margin-top:8px;
color:var(--sub);
}

footer{
text-align:center;
color:#777;
padding:15px;
font-size:13px;
}

@media(max-width:450px){

#name{
font-size:29px;
}

#clock{
font-size:30px;
}

#avatar{
width:105px;
height:105px;
}

.card{
padding:18px;
}

}