.hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .stat-card {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .flink {
            @apply inline-block px-4 py-2 m-2 bg-white rounded-lg shadow-sm border border-gray-200 hover:border-primary hover:shadow-md transition-all duration-300;
        }
        .analysis-chart {
            height: 300px;
            background: linear-gradient(90deg, #3b82f6 60%, #ef4444 40%);
        }
        .tab-active {
            @apply border-b-2 border-primary font-bold text-primary;
        }
        .match-card {
            background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
        }
