*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
overflow:hidden;
background:#000;
}

#bg-video{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.55);
backdrop-filter:blur(3px);
z-index:-1;
}

.container{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:20px;
}

.card{
width:100%;
max-width:460px;
padding:30px;
border-radius:30px;
background:rgba(255,255,255,.08);
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,.1);
box-shadow:0 0 40px rgba(255,0,80,.3);
text-align:center;
animation:fadeIn .8s ease;
}

@keyframes fadeIn{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.avatar{
width:130px;
height:130px;
border-radius:50%;
object-fit:cover;
border:4px solid rgba(255,255,255,.25);
box-shadow:0 0 30px rgba(255,0,80,.6);
}

.live{
font-size:30px;
font-weight:700;
color:#fff;
margin-top:15px;
}

.subtitle{
color:#ddd;
margin-top:8px;
margin-bottom:20px;
}

.online{
display:inline-block;
padding:8px 14px;
border-radius:20px;
background:#16a34a;
color:white;
font-size:13px;
margin-bottom:20px;
}

.btn{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
text-decoration:none;
padding:16px;
margin-bottom:12px;
border-radius:15px;
font-weight:700;
transition:.3s;
color:white;
}

.btn:hover{
transform:translateY(-3px);
}

.instagram{
background:linear-gradient(45deg,#833AB4,#FD1D1D,#FCAF45);
}

.tiktok{
background:#000;
}

.snapchat{
background:#FFFC00;
color:#000;
}

.telegram{
background:#229ED9;
}

.vip{
background:linear-gradient(45deg,#ff0055,#7c3aed);
}

.counter{
margin-top:20px;
color:#fff;
font-size:14px;
}

.footer{
margin-top:15px;
font-size:12px;
color:#bbb;
}