.hover-lift:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
        }
        .stat-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .flink {
            border-left: 3px solid #e53e3e;
            padding-left: 12px;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: #f7fafc;
            border-left-width: 6px;
        }
        .analysis-card {
            border-top: 4px solid #e53e3e;
        }
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }
        .mobile-menu.active {
            max-height: 500px;
        }
