html {
            scroll-behavior: smooth;
        }
        .hero-gradient {
            background: linear-gradient(135deg, rgba(29, 78, 216, 0.9) 0%, rgba(220, 38, 38, 0.85) 100%);
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #dc2626;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .flink {
            background: linear-gradient(to right, #f8fafc, #e2e8f0);
            border-left: 4px solid #1d4ed8;
            padding: 12px 20px;
            border-radius: 0 8px 8px 0;
            display: inline-block;
            margin: 5px;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: linear-gradient(to right, #e2e8f0, #cbd5e1);
            transform: scale(1.02);
        }
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #f1f5f9);
            border-radius: 12px;
            box-shadow: 5px 5px 15px #d1d9e6, -5px -5px 15px #ffffff;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .analysis-icon {
            background: linear-gradient(135deg, #1d4ed8, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .footer-links a {
            position: relative;
            padding-left: 20px;
        }
        .footer-links a::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #dc2626;
            font-size: 0.8em;
        }
