* {
            font-family: 'Noto Sans SC', sans-serif;
        }
        .nav-shadow {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
        }
        .card-hover:hover {
            transform: translateY(-8px);
            transition: transform 0.3s ease;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 4px;
            background: #f8fafc;
            border-radius: 6px;
            border: 1px solid #e2e8f0;
            color: #475569;
            text-decoration: none;
            transition: all 0.3s;
        }
        .flink:hover {
            background: #3b82f6;
            color: white;
            border-color: #3b82f6;
        }
        .article-content p {
            margin-bottom: 1.2em;
            line-height: 1.8;
            color: #334155;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .schema-org {
            display: none;
        }
