        .cursor {
            position: fixed;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ffffff;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.15s cubic-bezier(0.215, 0.610, 0.355, 1);
            will-change: transform;
        }
        
        .cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.5);
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                        opacity 0.3s ease,
                        border-color 0.3s ease;
            will-change: transform;
        }
        
        .cursor-active {
            transform: scale(1.5);
            background: #ff3e3e;
        }
        
        .cursor-follower-active {
            transform: scale(1.2);
            border-color: rgba(255, 62, 62, 0.7);
            opacity: 0.7;
        }
        
        .cursor-hidden {
            opacity: 0;
        }
        
        .cursor-follower-hidden {
            opacity: 0;
        }
        
        .cursor-text {
            transform: scale(1.3);
            background: #ffd700;
        }
        
        .cursor-follower-text {
            transform: scale(0.8);
            border-color: rgba(255, 215, 0, 0.7);
        }
        
        .cursor-click {
            transform: scale(0.5);
            background: #00ff88;
        }
        
        .cursor-follower-click {
            transform: scale(1.5);
            border-color: rgba(0, 255, 136, 0.7);
        }
        
        @media (max-width: 768px) {
            .cursor, .cursor-follower {
                display: none;
            }
            
            body {
                cursor: auto;
            }
        }

        .floating-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        
        .floating-btn {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 28px;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(30, 58, 138, 0.4);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1001;
        }
        
        .floating-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.6);
        }
        
        .floating-menu {
            position: absolute;
            bottom: 85px;
            right: 0;
            width: 200px;
            background: rgba(30, 41, 59, 0.95);
            border-radius: 15px;
            padding: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .floating-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .menu-item {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            margin-bottom: 10px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
            color: #e0e1dd;
            text-decoration: none;
        }
        
        .menu-item:last-child {
            margin-bottom: 0;
        }
        
        .menu-item:hover {
            background: rgba(30, 64, 175, 0.3);
        }
        
        .menu-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            font-size: 18px;
        }
        
        .call-icon {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
        }
        
        .message-icon {
            background: rgba(59, 130, 246, 0.2);
            color: #3b82f6;
        }
        
        .video-icon {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
        }
        
        .menu-text {
            font-weight: 500;
            font-size: 16px;
        }
        
        .menu-description {
            font-size: 12px;
            color: #94a3b8;
            margin-top: 2px;
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        
        .feature-card {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            padding: 25px;
            width: 230px;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #3b82f6;
        }
        
        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #e0e1dd;
        }
        
        .feature-desc {
            color: #94a3b8;
            line-height: 1.5;
        }
        
        @media (max-width: 600px) {
            .floating-container {
                bottom: 20px;
                right: 20px;
            }
            
            .floating-btn {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .floating-menu {
                width: 180px;
                right: -10px;
            }
            
            h1 {
                font-size: 2rem;
            }
        }