@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');
        html {
            scroll-behavior: smooth;
        }
        .flink {
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        .flink:hover {
            border-left-color: #e53e3e;
            transform: translateX(5px);
            background-color: #f7fafc;
        }
        .stats-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stats-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .match-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid #e53e3e;
        }
        .analysis-section {
            background: linear-gradient(rgba(26, 54, 93, 0.05), rgba(26, 54, 93, 0.05));
        }
        @media (max-width: 768px) {
            .mobile-stack {
                flex-direction: column;
            }
        }
