body {
            font-family: 'Noto Sans SC', sans-serif;
            overflow-x: hidden;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #0a3d62 0%, #1e90ff 100%);
        }
        .stats-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stats-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            background-color: #f8f9fa;
            border-radius: 6px;
            color: #0a3d62;
            text-decoration: none;
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: #0a3d62;
            color: white;
            border-color: #0a3d62;
        }
        .match-card {
            border-left: 5px solid #1e90ff;
        }
        .analysis-section {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .live-pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
