
        :root {
            --primary: #0ea5e9;
            --primary-dark: #0284c7;
            --secondary: #10b981;
            --accent: #f472b6;
            --warning: #f59e0b;
            --danger: #ef4444;
            --bg: #020617;
            --bg-card: rgba(30, 41, 59, 0.7);
            --bg-hover: rgba(51, 65, 85, 0.8);
            --text: #f1f5f9;
            --text-muted: #94a3b8;
            --border: rgba(148, 163, 184, 0.1);
            --gradient-1: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
            --gradient-2: linear-gradient(135deg, #f472b6 0%, #8b5cf6 100%);
            --gradient-3: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
            --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.3);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(at 0% 0%, rgba(14, 165, 233, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.15) 0px, transparent 50%);
            background-attachment: fixed;
        }
        
        /* Animated background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }
        
        .bg-animation .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 20s infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.3; }
            90% { opacity: 0.3; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            padding: 3rem 0 2rem;
            text-align: center;
            position: relative;
        }
        
        .logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1rem;
            animation: glow 3s ease-in-out infinite;
        }
        
        @keyframes glow {
            0%, 100% { filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.5)); }
            50% { filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.8)); }
        }
        
        .logo-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: var(--shadow-glow);
        }
        
        h1 {
            font-size: clamp(1.8rem, 5vw, 3rem);
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }
        
        .subtitle {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(14, 165, 233, 0.15);
            border: 1px solid rgba(14, 165, 233, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary);
            margin-top: 1rem;
            backdrop-filter: blur(10px);
        }
        
        /* Stats Bar */
        .stats-bar {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .stat-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--shadow-glow);
        }
        
        .stat-value {
            font-size: 2rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .stat-label {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 0.25rem;
        }
        
        /* Proxy Section */
        .section {
            margin: 3rem 0;
        }
        
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .section-title::before {
            content: '';
            width: 4px;
            height: 32px;
            background: var(--gradient-1);
            border-radius: 2px;
        }
        
        /* Proxy Cards */
        .proxy-grid {
            display: grid;
            gap: 1.5rem;
        }
        
        .proxy-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 2rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .proxy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .proxy-card:hover {
            transform: translateY(-5px);
            border-color: rgba(14, 165, 233, 0.3);
            box-shadow: var(--shadow), var(--shadow-glow);
        }
        
        .proxy-card:hover::before {
            transform: scaleX(1);
        }
        
        .proxy-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .proxy-number {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 600;
        }
        
        .proxy-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(16, 185, 129, 0.15);
            color: var(--secondary);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .proxy-status::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--secondary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }
        
        .proxy-details {
            display: grid;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .proxy-field {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(15, 23, 42, 0.6);
            padding: 1rem 1.25rem;
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: all 0.2s ease;
        }
        
        .proxy-field:hover {
            border-color: var(--primary);
            background: rgba(15, 23, 42, 0.8);
        }
        
        .field-icon {
            width: 40px;
            height: 40px;
            background: rgba(14, 165, 233, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        
        .field-content {
            flex: 1;
            min-width: 0;
        }
        
        .field-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 2px;
        }
        
        .field-value {
            font-family: 'SF Mono', 'Fira Code', monospace;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            word-break: break-all;
        }
        
        .copy-btn {
            background: rgba(14, 165, 233, 0.15);
            border: 1px solid rgba(14, 165, 233, 0.3);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 12px;
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        
        .copy-btn:hover {
            background: rgba(14, 165, 233, 0.25);
            transform: scale(1.05);
        }
        
        .copy-btn.copied {
            background: rgba(16, 185, 129, 0.25);
            border-color: rgba(16, 185, 129, 0.4);
            color: var(--secondary);
        }
        
        .connect-btn {
            width: 100%;
            background: var(--gradient-1);
            border: none;
            color: #020617;
            padding: 1.25rem;
            border-radius: 16px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
        }
        
        .connect-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
        }
        
        .connect-btn:active {
            transform: translateY(-1px);
        }
        
        /* Banners Section */
        .banners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .banner {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }
        
        .banner:hover::before {
            opacity: 0.05;
        }
        
        .banner:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: var(--banner-color);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px var(--banner-glow);
        }
        
        .banner-content {
            position: relative;
            z-index: 1;
        }
        
        .banner-icon {
            width: 64px;
            height: 64px;
            background: var(--banner-bg);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 1.25rem;
            border: 2px solid var(--banner-color);
        }
        
        .banner-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text);
        }
        
        .banner-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 1.25rem;
            line-height: 1.6;
        }
        
        .banner-tag {
            display: inline-block;
            background: var(--banner-tag-bg);
            color: var(--banner-color);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .banner-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--banner-bg);
            color: var(--banner-color);
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.2s ease;
            border: 2px solid var(--banner-color);
        }
        
        .banner:hover .banner-btn {
            background: var(--banner-color);
            color: var(--bg);
            transform: scale(1.05);
        }
        
        /* Banner Variants */
        .banner-telegram {
            --banner-color: #0088cc;
            --banner-bg: rgba(0, 136, 204, 0.15);
            --banner-tag-bg: rgba(0, 136, 204, 0.2);
            --banner-glow: rgba(0, 136, 204, 0.3);
        }
        
        .banner-bot {
            --banner-color: #10b981;
            --banner-bg: rgba(16, 185, 129, 0.15);
            --banner-tag-bg: rgba(16, 185, 129, 0.2);
            --banner-glow: rgba(16, 185, 129, 0.3);
        }
        
        .banner-ai {
            --banner-color: #f472b6;
            --banner-bg: rgba(244, 114, 182, 0.15);
            --banner-tag-bg: rgba(244, 114, 182, 0.2);
            --banner-glow: rgba(244, 114, 182, 0.3);
        }
        
        .banner-check {
            --banner-color: #f59e0b;
            --banner-bg: rgba(245, 158, 11, 0.15);
            --banner-tag-bg: rgba(245, 158, 11, 0.2);
            --banner-glow: rgba(245, 158, 11, 0.3);
        }
        
        .age-18 {
            display: inline-block;
            background: var(--danger);
            color: white;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 800;
            margin-left: 8px;
            vertical-align: middle;
        }
        
        /* Footer */
        footer {
            margin-top: 4rem;
            padding: 3rem 0;
            border-top: 1px solid var(--border);
            text-align: center;
            color: var(--text-muted);
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .footer-seo {
            max-width: 800px;
            margin: 2rem auto 0;
            padding: 2rem;
            background: rgba(15, 23, 42, 0.5);
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.8;
        }
        
        .footer-seo h2 {
            color: var(--text);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        /* Mobile Optimization */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            header {
                padding: 2rem 0 1.5rem;
            }
            
            .proxy-card {
                padding: 1.5rem;
            }
            
            .proxy-field {
                flex-wrap: wrap;
            }
            
            .copy-btn {
                width: 100%;
                justify-content: center;
                margin-top: 0.5rem;
            }
            
            .banners-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-bar {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            color: var(--text);
            padding: 1rem 2rem;
            border-radius: 16px;
            box-shadow: var(--shadow);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        
        .toast-icon {
            width: 32px;
            height: 32px;
            background: rgba(16, 185, 129, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
        }
        
        /* Speed optimization */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* Print styles */
        @media print {
            .no-print { display: none; }
            body { background: white; color: black; }
        }
    
