.hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .gradient-bg {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
        }
        .border-gradient {
            border: 2px solid transparent;
            background-clip: padding-box, border-box;
            background-origin: padding-box, border-box;
            background-image: linear-gradient(white, white), linear-gradient(135deg, #1e40af, #dc2626);
        }
        .flink {
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f9fafb;
        }
        .flink:hover {
            background-color: #eff6ff;
            border-color: #3b82f6;
            transform: scale(1.05);
        }
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #f3f4f6);
            border-radius: 1rem;
            box-shadow: 5px 5px 15px #d1d5db, -5px -5px 15px #ffffff;
        }
        .tab-active {
            border-bottom: 3px solid #1e40af;
            color: #1e40af;
            font-weight: 700;
        }
        .news-card {
            border-left: 4px solid #1e40af;
            transition: all 0.3s ease;
        }
        .news-card:hover {
            border-left-color: #dc2626;
            background-color: #f8fafc;
        }
        .match-predict {
            background: linear-gradient(90deg, #1e40af 0%, #1e3a8a 50%, #dc2626 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }
        @media (max-width: 768px) {
            .mobile-stack {
                flex-direction: column;
            }
        }
