* {
            box-sizing: border-box;
        }
        body {
            font-family: 'Noto Sans SC', sans-serif;
            line-height: 1.6;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #0ea5e9 100%);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .match-card {
            border-left: 4px solid #f59e0b;
        }
        .analysis-box {
            background: linear-gradient(to right bottom, #f8fafc, #f1f5f9);
            border-radius: 12px;
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 4px;
            background: #e2e8f0;
            border-radius: 6px;
            color: #475569;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .flink:hover {
            background: #3b82f6;
            color: white;
            transform: scale(1.05);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #f59e0b;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
