.hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .gradient-bg {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
        }
        .stat-card {
            border-left: 4px solid #f59e0b;
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 4px;
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            color: #475569;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: #1e40af;
            color: white;
            border-color: #1e40af;
        }
        .live-pulse {
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        .article-content p {
            margin-bottom: 1.5em;
            line-height: 1.8;
        }
