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

        body {
            overflow: hidden;
        }

        .container {
            position: relative;
            width: 100%;
            height: 100vh;
            height: 100dvh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: black;
        }

        #particleCanvas {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            touch-action: none;
        }
       

        .footer {
            position: absolute;
            bottom: 100px;
            text-align: center;
            z-index: 10;
        }

        .footer-text {
            font-family: monospace;
            color: #ffffff;
            font-size: 14px;
        }

        .invite-link {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .invite-link:hover {
            color: #c4ff00;
        }

        @media (max-width: 768px) {
            .footer-text {
                font-size: 12px;
            }

            .nav-links {
                gap: 20px;
                font-size: 12px;
            }

            .side-link {
                font-size: 12px;
            }
        }

        @media (min-width: 768px) {
            .footer-text {
                font-size: 14px;
            }
        }
