@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@500;700&display=swap');

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

:root {
    --accent: #ffffff;
    --accent-glow: rgba(255, 255, 255, 0.2);
    --bg-dark: #050505;
    --card-bg: rgba(10, 10, 10, 0.6);
}

html,body{
    height:100%;
    overflow:hidden;
    font-family:'Inter',sans-serif;
    background: var(--bg-dark);
    color:#f0f0f0;
    -webkit-font-smoothing:antialiased;
}

#bg-video{
    position:fixed;
    top:0;left:0;
    width:100%;height:100%;
    object-fit:cover;
    z-index:0;
    filter:brightness(0.5) saturate(0.8);
}

#video-overlay{
    position:fixed;
    top:0;left:0;
    width:100%;height:100%;
    z-index:1;
    pointer-events:none;
    background:
        radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.8) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
}

#splash{
    position:fixed;
    top:0;left:0;
    width:100%;height:100%;
    z-index:100;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,0.95);
    cursor:pointer;
}

#splash-box{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
    position:relative;
}

.splash-glow{
    position:absolute;
    width:300px;height:300px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    top:50%;left:50%;
    transform:translate(-50%,-50%);
    animation:pulseGlow 4s ease-in-out infinite;
    pointer-events:none;
}

@keyframes pulseGlow{
    0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.3}
    50%{transform:translate(-50%,-50%) scale(1.2);opacity:0.7}
}

.splash-emoji{
    font-size:64px;
    animation:float 3s ease-in-out infinite;
    filter:drop-shadow(0 0 15px rgba(255,255,255,0.2));
}

@keyframes float{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-15px)}
}

.splash-name{
    font-family:'Space Grotesk',sans-serif;
    font-size:2.5rem;
    font-weight:700;
    letter-spacing: 0.1em;
    color:#fff;
    text-transform: uppercase;
}

.splash-line{
    width:80px;height:1px;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,0.4),transparent);
}

#btn-enter{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
    padding:18px 50px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:2px;
    color:#fff;
    cursor:pointer;
    transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family:inherit;
    backdrop-filter: blur(5px);
}
#btn-enter:hover{
    background:rgba(255,255,255,0.08);
    border-color:rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    box-shadow:0 0 30px rgba(255,255,255,0.05);
}
#btn-enter:active{
    transform:scale(0.95);
}
#btn-enter span{
    font-family:'Space Grotesk',sans-serif;
    font-size:0.9rem;
    font-weight:700;
    letter-spacing:0.3em;
}
#btn-enter small{
    font-size:0.6rem;
    color:rgba(255,255,255,0.4);
    letter-spacing:0.1em;
    text-transform: uppercase;
}

#content{
    position:fixed;
    top:0;left:0;
    width:100%;height:100%;
    z-index:10;
    display:flex;
    align-items:center;
    justify-content:center;
}

#card{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:24px;
    padding:60px 50px;
    background: var(--card-bg);
    backdrop-filter:blur(30px);
    -webkit-backdrop-filter:blur(30px);
    border:1px solid rgba(255,255,255,0.05);
    box-shadow:0 50px 100px rgba(0,0,0,0.8);
    position:relative;
    min-width:320px;
    max-width:400px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#card:hover{
    border-color:rgba(255,255,255,0.1);
    background: rgba(15, 15, 15, 0.7);
}

#avatar-wrap{
    position:relative;
    width:120px;height:120px;
}
.avatar-border{
    position:absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333, #fff, #333);
    animation: rotate 10s linear infinite;
    opacity: 0.3;
}
@keyframes rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }

#avatar{
    position:relative;
    width:100%;height:100%;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #000;
    z-index:1;
    filter: grayscale(0.2);
    transition: filter 0.5s ease;
}
#card:hover #avatar { filter: grayscale(0); }

#username{
    font-family:'Space Grotesk',sans-serif;
    font-size:1.8rem;
    font-weight:700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display:flex;
    align-items:center;
    gap:10px;
}
.verified{
    font-size:0.9rem;
    color: #fff;
    opacity: 0.8;
}

#status{
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 20px;
    background:rgba(255,255,255,0.02);
    border-radius:2px;
    border:1px solid rgba(255,255,255,0.05);
    font-size:0.85rem;
    color:rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
}
.dot-green{
    width:8px;height:8px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 0 10px rgba(255,255,255,0.5);
    animation:blink 1.5s ease infinite;
}

#bio{
    font-size:0.8rem;
    color:rgba(255,255,255,0.3);
    letter-spacing:0.1em;
    text-transform: uppercase;
}

#socials{
    display:flex;
    gap:15px;
}
.soc{
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;height:48px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.05);
    color:rgba(255,255,255,0.4);
    text-decoration:none;
    transition:all 0.4s ease;
}
.soc:hover{
    color:#fff;
    border-color:rgba(255,255,255,0.3);
    background:rgba(255,255,255,0.08);
    transform:translateY(-5px);
}
.soc svg{ transition: transform 0.3s ease; }
.soc:hover svg{ transform:scale(1.2); }

#deco{
    display:flex;
    align-items:center;
    gap:15px;
    opacity:0.1;
    font-size:0.5rem;
}
#deco span{
    width:60px;height:1px;
    background: #fff;
}

@media(max-width:480px){
    #card{ width:90%; padding: 40px 20px; }
    .splash-name{ font-size:1.8rem; }
}
