        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

        body {
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0a0a0f;
            overflow: hidden;
            position: relative;
        }

        /* Animated gradient background */
        .bg-gradient {
            position: fixed;
            inset: 0;
            z-index: 0;
            background: 
                radial-gradient(ellipse 80% 60% at 50% -20%, rgba(120, 50, 255, 0.15), transparent),
                radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255, 0, 100, 0.08), transparent),
                radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 150, 255, 0.08), transparent);
            animation: bgPulse 8s ease-in-out infinite alternate;
        }

        @keyframes bgPulse {
            0% { opacity: 0.7; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.1); }
        }

        /* Floating particles */
        .particles {
            position: fixed;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float linear infinite;
        }

        @keyframes float {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-10vh) scale(1); opacity: 0; }
        }

        /* Grid lines */
        .grid-overlay {
            position: fixed;
            inset: 0;
            z-index: 1;
            background-image: 
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

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

        /* Lock icon */
        .lock-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 16px;
            background: linear-gradient(135deg, #7c3aed, #ec4899);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
            animation: iconFloat 3s ease-in-out infinite;
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        .logo {
            font-size: 32px;
            font-weight: 900;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 6px;
        }

        .subtitle {
            color: rgba(255, 255, 255, 0.4);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 40px;
        }

        /* Buttons */
        .buttons {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .btn {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 18px 24px;
            border: none;
            border-radius: 16px;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .btn .icon {
            font-size: 20px;
            flex-shrink: 0;
        }

        .btn .arrow {
            position: absolute;
            right: 20px;
            font-size: 14px;
            opacity: 0;
            transform: translateX(-8px);
            transition: all 0.3s ease;
            color: inherit;
        }

        .btn:hover .arrow {
            opacity: 0.7;
            transform: translateX(0);
        }

        /* Button 1 - TOP SITES - Purple */
        .btn-sites {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.05));
            color: #c4b5fd;
        }
        .btn-sites:hover {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(124, 58, 237, 0.15));
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(124, 58, 237, 0.25);
        }

        /* Button 2 - TOP UNDRESSER - Pink */
        .btn-undress {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05));
            color: #f9a8d4;
        }
        .btn-undress:hover {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.4), rgba(236, 72, 153, 0.15));
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(236, 72, 153, 0.25);
        }

        /* Button 3 - TOP TELEGRAM - Blue */
        .btn-telegram {
            background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(56, 189, 248, 0.05));
            color: #7dd3fc;
        }
        .btn-telegram:hover {
            background: linear-gradient(135deg, rgba(56, 189, 248, 0.4), rgba(56, 189, 248, 0.15));
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(56, 189, 248, 0.25);
        }

        /* Button 4 - PRIVAT CHAT - Gold */
        .btn-chat {
            background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(250, 204, 21, 0.05));
            color: #fde68a;
        }
        .btn-chat:hover {
            background: linear-gradient(135deg, rgba(250, 204, 21, 0.4), rgba(250, 204, 21, 0.15));
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(250, 204, 21, 0.25);
        }

        /* Button 5 - Free Channel - Green */
        .btn-free {
            background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(74, 222, 128, 0.05));
            color: #86efac;
        }
        .btn-free:hover {
            background: linear-gradient(135deg, rgba(74, 222, 128, 0.4), rgba(74, 222, 128, 0.15));
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(74, 222, 128, 0.25);
        }

        .btn .badge {
            font-size: 9px;
            font-weight: 800;
            padding: 2px 7px;
            border-radius: 6px;
            letter-spacing: 1px;
            text-transform: uppercase;
            flex-shrink: 0;
        }

        .badge-hot {
            background: rgba(239, 68, 68, 0.3);
            color: #fca5a5;
        }

        .badge-new {
            background: rgba(74, 222, 128, 0.3);
            color: #86efac;
        }

        .badge-vip {
            background: rgba(250, 204, 21, 0.3);
            color: #fde68a;
        }

        .badge-free {
            background: rgba(56, 189, 248, 0.3);
            color: #7dd3fc;
        }

        /* Footer */
        .footer {
            margin-top: 36px;
            color: rgba(255, 255, 255, 0.15);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
        }

        /* Entrance animation */
        .container {
            animation: fadeInUp 0.8s ease-out;
        }

        .btn {
            opacity: 0;
            animation: slideIn 0.5s ease-out forwards;
        }

        .btn:nth-child(1) { animation-delay: 0.2s; }
        .btn:nth-child(2) { animation-delay: 0.35s; }
        .btn:nth-child(3) { animation-delay: 0.5s; }
        .btn:nth-child(4) { animation-delay: 0.65s; }
        .btn:nth-child(5) { animation-delay: 0.8s; }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Glow cursor effect */
        .cursor-glow {
            position: fixed;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.08), transparent 70%);
            pointer-events: none;
            z-index: 2;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s;
        }

        /* Pulse dot on VIP button */
        .pulse-dot {
            width: 8px;
            height: 8px;
            background: #facc15;
            border-radius: 50%;
            position: relative;
            flex-shrink: 0;
        }

        .pulse-dot::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            border: 2px solid rgba(250, 204, 21, 0.4);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.8); opacity: 0; }
        }

        /* Mobile */
        @media (max-width: 480px) {
            .logo { font-size: 26px; }
            .btn { padding: 16px 20px; font-size: 14px; }
        }