body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: white;
}

#vanta-canvas {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}

#content {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem 4rem;
    pointer-events: none;
    /* Let clicks pass through empty spaces if needed, but we'll enable on children */
}



.logo {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    /* Fog Effect Inside Text */
    background: linear-gradient(90deg, #ff00ff, #ff88ff, #ff00ff);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: fogFlow 3s linear infinite;
}

@keyframes fogFlow {
    to {
        background-position: 200% center;
    }
}