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

body {
    background: #000;
    color: #fff;
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

#container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

#webgl-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#void-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8vw;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.8);
    z-index: 10;
    animation: voidPulse 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

#void-link {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5vw;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    z-index: 10;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

#void-link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

#void-link:visited {
    color: rgba(255, 255, 255, 0.6);
}

#void-link:active {
    color: rgba(255, 255, 255, 0.6);
}

@keyframes voidPulse {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

#tweet-ghosts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.tweet-ghost {
    position: absolute;
    width: 300px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.3);
    animation: ghostFloat 8s linear infinite;
    backdrop-filter: blur(2px);
    top: 0;
    left: 0;
}

.tweet-ghost::before {
    content: "V0ID";  
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.4);
}

.tweet-ghost::after {
    content: "PØSTING VØID TWEET ENDLESSLY..";
    display: block;
    margin-top: 8px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.2);
}

@keyframes ghostFloat {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(0deg);
    }
    10% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    90% {
        opacity: 0.1;
        transform: scale(1.1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) rotate(360deg);
    }
}

 