.hero-gradient {
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(220, 38, 38, 0.85) 100%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            background-color: #f3f4f6;
            border-radius: 6px;
            color: #4b5563;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: #1e40af;
            color: white;
            text-decoration: none;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .match-analysis {
            border-left: 4px solid #f59e0b;
            background-color: #fffbeb;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .tab-active {
            border-bottom: 3px solid #dc2626;
            font-weight: 600;
            color: #1e40af;
        }
