.hero-gradient {
            background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 50%, #06b6d4 100%);
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #3b82f6;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .flink {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            background: #f8fafc;
            border-radius: 50px;
            margin: 5px;
            transition: all 0.3s;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            background: #3b82f6;
            color: white;
            transform: scale(1.05);
        }
        .stat-number {
            font-size: 3rem;
            background: linear-gradient(90deg, #1d4ed8, #0ea5e9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .article-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: #4b5563;
        }
        .footer-links a {
            position: relative;
            padding-left: 1.5rem;
        }
        .footer-links a::before {
            content: "▶";
            position: absolute;
            left: 0;
            color: #60a5fa;
            font-size: 0.8rem;
        }
