.hero-gradient {
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 50%, #4a5568 100%);
        }
        .flink {
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 12px 20px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #4a5568;
            background: white;
        }
        .flink:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            border-color: #4299e1;
            color: #4299e1;
        }
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #f7fafc);
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .match-card {
            border-left: 4px solid #4299e1;
            background: #f8fafc;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        .article-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
