.gradient-bg {
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 50%, #0d47a1 100%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .fixture-card {
            border-left: 4px solid #e53e3e;
        }
        .fade-in {
            animation: fadeIn 0.8s ease-in;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .flink {
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .flink:hover {
            background-color: rgba(255,255,255,0.1);
            transform: scale(1.05);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        .tab-active {
            border-bottom: 3px solid #e53e3e;
            color: #e53e3e;
            font-weight: 600;
        }
        .stat-bar {
            height: 8px;
            border-radius: 4px;
            background: linear-gradient(90deg, #e53e3e, #ff7e5f);
        }
        .match-card {
            background: linear-gradient(145deg, #ffffff, #f7fafc);
            border: 1px solid #e2e8f0;
        }
        @media (max-width: 768px) {
            .mobile-stack {
                flex-direction: column;
            }
            .mobile-text-center {
                text-align: center;
            }
        }
