body {
    margin: 0;
    overflow: hidden;
    background: #000;
}

#bevy-container {
    position: fixed;
    inset: 0;
    z-index: 0;
}

#bevy-canvas {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in;
}

.content {
    position: relative;
    z-index: 10;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 4rem 2rem;
}

.banner {
    font-family: 'JetBrains Mono', monospace;
    font-size: 100px;
}

.glow {
    font-family: 'JetBrains Mono', monospace;
    animation: glow 6s linear infinite;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #00d4ff, 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff;
    }
    25% {
        text-shadow: 0 0 5px #0066ff, 0 0 10px #0066ff, 0 0 20px #0066ff, 0 0 40px #0066ff, 0 0 80px #0066ff;
    }
    100% {
        text-shadow: 0 0 5px #00d4ff, 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff;
    }
}

.socials { display: flex; flex-direction: column; gap: 50px; }

.social-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    background: none;
    text-decoration: none;
    color: white;
    transition: background 0.15s, border-color 0.15s;
}

.social-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
}

.social-name {
    font-size: 15px;
    font-weight: 500;
    font-family: "JetBrains Mono", monospace;
    animation: name-glow 2s ease-in-out infinite alternate;
}

@keyframes name-glow {
    0% {
        color: white;
        text-shadow: none;
    }
    100% {
        color: var(--accent);
        text-shadow: 0 0 8px var(--accent), 0 0 20px var(--accent);
    }
}

.social-handle { font-size: 13px; opacity: 0.5; font-family: "JetBrains Mono", monospace}
.arrow { margin-left: auto; opacity: 0.4; font-family: "JetBrains Mono", monospace}