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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #1a1a1a;
}

#networkCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    touch-action: none; /* Prevent scrolling on touch devices */
}

.container {
    width: 100%;
    max-width: 680px;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    pointer-events: none !important; /* Force pointer-events none */
}

.profile {
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 16px;
}

.profile-image {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile h1 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 10px;
}

.profile p {
    color: #999;
    font-size: 16px;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.link-button {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    pointer-events: auto;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: #ffffff;
    font-size: 28px;
    transition: transform 0.2s;
    opacity: 0.8;
    pointer-events: auto;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 1;
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .profile h1 {
        font-size: 20px;
    }

    .profile p {
        font-size: 14px;
    }
} 