* {
            scroll-behavior: smooth;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .match-card {
            transition: all 0.3s ease;
        }
        .match-card:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        .flink {
            border: 1px solid #e5e7eb;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .flink:hover {
            background-color: #f3f4f6;
            border-color: #3b82f6;
        }
        .analysis-tab {
            cursor: pointer;
            transition: all 0.3s;
        }
        .analysis-tab.active {
            border-bottom: 3px solid #1e40af;
            color: #1e40af;
            font-weight: 600;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
