html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Noto Sans SC', sans-serif;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #172554 100%);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        .flink {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 12px 20px;
            display: inline-flex;
            align-items: center;
            color: #334155;
            font-weight: 500;
            transition: all 0.3s;
        }
        .flink:hover {
            background: #e2e8f0;
            border-color: #cbd5e1;
            transform: translateY(-2px);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .article-content p {
            margin-bottom: 1.2em;
            line-height: 1.8;
        }
        .article-content h3 {
            font-weight: 700;
            font-size: 1.4rem;
            margin-top: 2em;
            margin-bottom: 0.8em;
            color: #1e293b;
        }
