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

body {
    background-color: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Animated Grid Canvas */
#grid-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Profile Container */
.profile {
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

/* Name */
.name {
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 0.25rem;
}

/* Handle */
.handle {
    font-size: 1.4rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 3rem;
}

/* Social Links Container */
.social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Icon Links */
.icon-link {
    display: flex;
    transition: transform 0.25s ease;
}

.icon-link:hover {
    transform: translateY(-2px);
}

.icon-link img {
    width: 28px;
    height: 28px;
    filter: invert(1);
    opacity: 0.7;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.icon-link:hover img {
    opacity: 1;
    filter: invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .name {
        font-size: 3rem;
    }
    .handle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    .social-links {
        gap: 0.5rem;
    }
    .icon-link img {
        width: 24px;
        height: 24px;
    }
}