.hero-gradient {
            background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 50%, #1e3a8a 100%);
        }
        .stat-card:hover {
            transform: translateY(-8px);
            transition: transform 0.3s ease-in-out;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .match-card {
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        .match-card:hover {
            border-left-color: #f59e0b;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .analysis-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border-top: 3px solid #10b981;
        }
        .flink {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            background-color: #f8fafc;
            border-radius: 0.5rem;
            margin: 0.25rem;
            transition: all 0.2s ease;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            background-color: #e2e8f0;
            transform: translateY(-2px);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        .tab-active {
            border-bottom: 3px solid #f59e0b;
            color: #1d4ed8;
            font-weight: 600;
        }
