  .easter-egg-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 54px;
            height: 54px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
            z-index: 1000;
        }
        
        .easter-egg-btn:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .easter-egg-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.2s ease;
        }
        
        .easter-egg-modal.show {
            display: flex;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .easter-egg-content {
            background: rgba(30, 30, 30, 0.98);
            backdrop-filter: blur(40px) saturate(180%);
            -webkit-backdrop-filter: blur(40px) saturate(180%);
            padding: 40px 32px;
            border-radius: 20px;
            text-align: center;
            max-width: 420px;
            width: 90%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            animation: slideUp 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        }
        
        .easter-egg-icon {
            font-size: 56px;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--indigo), var(--purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .easter-egg-content h2 {
            margin: 0 0 16px 0;
            font-size: 24px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.95);
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        .easter-egg-content p {
            margin: 0 0 32px 0;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
        }
        
        .easter-egg-content strong {
            display: inline-block;
            background: rgba(124, 58, 237, 0.15);
            color: rgba(167, 139, 250, 1);
            padding: 3px 10px;
            border-radius: 6px;
            font-weight: 600;
            font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
            font-size: 14px;
            border: 1px solid rgba(124, 58, 237, 0.25);
        }
        
        .easter-egg-close {
            background: linear-gradient(135deg, var(--indigo), var(--purple));
            color: white;
            border: none;
            padding: 14px 36px;
            border-radius: 12px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
            transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
            box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
        }
        
        .easter-egg-close:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4);
        }
        
        .easter-egg-close:active {
            transform: translateY(0);
        }
        
   