.hero-gradient {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #dc2626 100%);
        }
        .stats-card {
            transition: all 0.3s ease;
        }
        .stats-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        .match-card {
            background: linear-gradient(to right bottom, #ffffff, #f8fafc);
            border-left: 4px solid #dc2626;
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 4px 8px;
            background-color: #f3f4f6;
            border-radius: 6px;
            color: #374151;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }
        .flink:hover {
            background-color: #1e40af;
            color: white;
            border-color: #1e40af;
        }
        .live-pulse::after {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            margin-left: 6px;
            background-color: #dc2626;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.1); }
            100% { opacity: 1; transform: scale(1); }
        }
        .analysis-card {
            border-top: 3px solid #f59e0b;
        }
        .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%;
        }
