* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url('https://i.pinimg.com/originals/f1/63/11/f16311fd0c32786525f471c685bc516e.gif') no-repeat center center/cover;
    filter: brightness(0.4) blur(5px);
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.05;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
}

#enter-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.8s ease;
}

.enter-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.card {
    width: 400px;
    padding: 40px 20px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffee, #ffffaa, transparent);
    box-shadow: 0 0 20px #ffffaa;
}

.avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.status-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 170, 0.6);
    animation: spin 10s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

.username {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.radiant-text {
    background: linear-gradient(to right, #fff, #ffffaa, #aaffff, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% auto;
    animation: textShine 3s linear infinite;
}

@keyframes textShine {
    to { background-position: 200% center; }
}

.rank-badge {
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.4);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #ff69b4;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.2);
}

.bio {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 30px;
    height: 1.2em;
}

.links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icon {
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.social-icon:hover {
    color: #ffffaa;
    transform: translateY(-3px);
    text-shadow: 0 0 15px #ffffaa;
}

.social-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-family: 'JetBrains Mono';
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
    pointer-events: none;
}

.social-icon:hover::after {
    opacity: 1;
}

.footer {
    margin-top: 30px;
    font-size: 0.7rem;
    color: #444;
    font-family: 'JetBrains Mono';
}

#notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.9);
    color: #ffffaa;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 170, 0.3);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10000;
}

#notification.show {
    opacity: 1;
}
