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

body{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
font-family:Arial,sans-serif;
background:url('profile.png') center/cover no-repeat fixed;
padding:22px;
}

.overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.58);
backdrop-filter:blur(12px);
}

.card{
position:relative;
z-index:2;
width:390px;
max-width:92%;
background:rgba(255,255,255,.13);
backdrop-filter:blur(22px);
-webkit-backdrop-filter:blur(22px);
border:1px solid rgba(255,255,255,.18);
border-radius:32px;
padding:32px;
text-align:center;
color:white;
box-shadow:0 25px 70px rgba(0,0,0,.45);
animation:show .8s ease;
}

.profile{
width:145px;
height:145px;
object-fit:cover;
border-radius:50%;
border:4px solid white;
margin-bottom:16px;
box-shadow:0 12px 35px rgba(0,0,0,.4);
}

h1{
font-size:38px;
margin-bottom:10px;
background:linear-gradient(90deg,#fff,#00d4ff,#ff2d95);
-webkit-background-clip:text;
background-clip:text;
color:transparent;
}

p{opacity:.9;margin-bottom:25px}

.btn{
display:flex;
align-items:center;
justify-content:center;
gap:12px;
padding:15px;
margin:12px 0;
border-radius:16px;
text-decoration:none;
color:white;
font-weight:bold;
font-size:17px;
transition:.3s;
box-shadow:0 10px 25px rgba(0,0,0,.22);
}

.btn i{
font-size:22px;
width:24px;
}

.btn:hover{
transform:translateY(-5px) scale(1.04);
}

.snap{background:linear-gradient(135deg,#fffc00,#ffb300);color:#111}
.insta{background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045)}
.tiktok{background:linear-gradient(135deg,#00f2ea,#111,#ff0050)}
.facebook{background:linear-gradient(135deg,#1877f2,#004ecb)}
.discord{background:linear-gradient(135deg,#5865f2,#404eed,#23272a)}
.pagebtn{background:linear-gradient(135deg,#111827,#374151,#6b7280)}

.page-two{
min-height:650px;
display:flex;
flex-direction:column;
justify-content:center;
}

.about-subtitle{
margin-bottom:20px;
font-size:17px;
letter-spacing:.5px;
}

.info-list{
display:grid;
gap:14px;
margin-bottom:20px;
}

.info-item{
display:flex;
align-items:center;
gap:14px;
padding:17px;
border-radius:18px;
background:rgba(255,255,255,.11);
border:1px solid rgba(255,255,255,.18);
box-shadow:0 10px 25px rgba(0,0,0,.18);
transition:.3s;
text-align:left;
}

.info-item:hover{
transform:translateY(-4px);
background:rgba(255,255,255,.18);
}

.info-item i{
width:48px;
height:48px;
border-radius:15px;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
background:linear-gradient(135deg,#00d4ff,#7c3cff,#ff2d95);
box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.info-item span{
font-size:18px;
font-weight:bold;
}

@keyframes show{
from{opacity:0;transform:translateY(30px)}
to{opacity:1;transform:translateY(0)}
}

@media(max-width:480px){
.card{padding:25px 18px}
h1{font-size:32px}
.profile{width:125px;height:125px}
.page-two{min-height:600px}
.info-item span{font-size:16px}
}
