        .gradient-bg {
            background: linear-gradient(135deg, #1a2a6c 0%, #2d388a 25%, #4a56c9 50%, #6a7ff5 100%);
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #4a56c9;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            background: #f8f9fa;
            border-radius: 6px;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        .flink:hover {
            background: #e9ecef;
            transform: translateY(-2px);
            border-color: #4a56c9;
        }
        .match-card {
            border-left: 4px solid #4a56c9;
        }
        .prediction-badge {
            background: linear-gradient(90deg, #4a56c9, #6a7ff5);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.875rem;
        }
        .stats-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            padding: 20px;
        }
        @media (max-width: 768px) {
            .mobile-stack {
                flex-direction: column;
            }
        }
