* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    min-height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.scene {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    perspective: 1000px;
}

.grid {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: linear-gradient(90deg, rgba(147, 51, 234, 0.1) 1px, transparent 1px), linear-gradient(rgba(147, 51, 234, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotateX(60deg);
    animation: grid 20s linear infinite;
}

@keyframes grid {
    0% { transform: rotateX(60deg) translateY(0); }
    100% { transform: rotateX(60deg) translateY(40px); }
}

.container {
    max-width: 600px;
    width: 90%;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.profile {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 2px solid rgba(147, 51, 234, 0.3);
    position: relative;
}

.profile-img::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at center, rgba(147, 51, 234, 0.4) 0%, transparent 70%);
    border-radius: 25px;
    z-index: -1;
    filter: blur(10px);
}

.name {
    font-size: 50px;
    font-weight: bold;
    background: linear-gradient(90deg, #a855f7 50%, #7c3aed 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: white;
    margin-bottom: 8px;
}

.bio {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(147, 51, 234, 0.2);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link:hover {
    transform: translateY(-2px);
    border-color: rgba(147, 51, 234, 0.4);
    background: rgba(147, 51, 234, 0.1);
}

.link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transition: 0.5s;
}

.link:hover::before {
    left: 100%;
}

.icon {
    width: 40px;
    height: 40px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icon svg {
    width: 20px;
    height: 20px;
    fill: #a855f7;
}

@media (max-width: 480px) {
    .container { width: 95%; }
    .profile-img { width: 100px; height: 100px; }
    .name { font-size: 24px; }
}
