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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            overflow-x: hidden;
            position: relative;
        }

        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -2;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
        }

        #particles-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .container {
            max-width: 400px;
            width: 100%;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .header {
            margin-bottom: 2.5rem;
        }

        .logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #00d4ff, #0f3460);
            border-radius: 20px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .logo:hover {
            transform: rotateY(180deg);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
        }

        h1 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #00d4ff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        .subtitle {
            font-size: 1rem;
            color: #b0b0b0;
            margin-bottom: 2rem;
        }

        .social-cards {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .social-card {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .social-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s ease;
        }

        .social-card:hover::before {
            left: 100%;
        }

        .social-card:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .whatsapp {
            background: rgba(37, 211, 102, 0.1);
            border-color: rgba(37, 211, 102, 0.3);
        }

        .whatsapp:hover {
            box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
            border-color: rgba(37, 211, 102, 0.5);
        }

        .discord {
            background: rgba(88, 101, 242, 0.1);
            border-color: rgba(88, 101, 242, 0.3);
        }

        .discord:hover {
            box-shadow: 0 20px 40px rgba(88, 101, 242, 0.3);
            border-color: rgba(88, 101, 242, 0.5);
        }

        .reddit {
            background: rgba(255, 69, 0, 0.1);
            border-color: rgba(255, 69, 0, 0.3);
        }

        .reddit:hover {
            box-shadow: 0 20px 40px rgba(255, 69, 0, 0.3);
            border-color: rgba(255, 69, 0, 0.5);
        }

        .links-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .link-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1rem 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .link-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .link-item:hover::before {
            left: 100%;
        }

        .link-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.3);
            color: #00d4ff;
        }

        .link-arrow {
            transition: transform 0.3s ease;
            font-size: 1.2rem;
        }

        .link-item:hover .link-arrow {
            transform: translateX(5px);
        }

        @keyframes titleGlow {
            0% {
                filter: brightness(1);
            }
            100% {
                filter: brightness(1.2);
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 1rem 0.5rem;
            }

            .container {
                max-width: 350px;
                padding: 0 0.5rem;
            }

            .header {
                margin-bottom: 2rem;
            }

            .logo {
                width: 70px;
                height: 70px;
                font-size: 1.5rem;
            }

            h1 {
                font-size: 1.7rem;
            }

            .subtitle {
                font-size: 0.9rem;
            }

            .social-cards {
                gap: 0.7rem;
                margin-bottom: 1.5rem;
            }

            .social-card {
                width: 55px;
                height: 55px;
            }

            .social-card svg {
                width: 24px;
                height: 24px;
            }

            .link-item {
                padding: 0.9rem 1.2rem;
                font-size: 0.95rem;
            }

            .links-container {
                gap: 0.8rem;
            }
        }

        @media (max-width: 360px) {
            .container {
                max-width: 320px;
            }

            h1 {
                font-size: 1.5rem;
            }

            .social-card {
                width: 50px;
                height: 50px;
            }

            .social-card svg {
                width: 22px;
                height: 22px;
            }

            .link-item {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }
        }

        @media (hover: none) and (pointer: coarse) {
            .social-card:active,
            .link-item:active {
                transform: scale(0.95);
            }
        }
