@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');
        * { font-family: 'Noto Sans SC', sans-serif; }
        .hero-gradient { background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); }
        .card-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .card-hover:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
        .nav-link-hover::after { content: ''; display: block; width: 0; height: 2px; background: #3b82f6; transition: width 0.3s; }
        .nav-link-hover:hover::after { width: 100%; }
        .flink { transition: all 0.3s ease; border: 1px solid #e5e7eb; }
        .flink:hover { border-color: #3b82f6; background-color: #f8fafc; }
        .live-pulse { animation: pulse 2s infinite; }
        @keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.6; } 100% { opacity: 1; } }
        .table-striped tbody tr:nth-child(odd) { background-color: #f9fafb; }
        .article-content p { margin-bottom: 1.5rem; line-height: 1.8; }
        .section-divider { border-top: 3px solid #3b82f6; width: 80px; margin: 2rem auto; }
