body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .flink a {
            color: #3b82f6;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 5px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }
        .flink a:hover {
            background: #1e40af;
            color: white;
            border-color: #1e40af;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #f59e0b;
            left: 50%;
            bottom: -5px;
            transition: all 0.3s;
        }
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
