:root {
            --primary-blue: #0d47a1;
            --primary-light: #5472d3;
            --primary-dark: #002171;
            --accent-yellow: #ffd600;
            --accent-orange: #ff9800;
            --text-dark: #212121;
            --text-light: #757575;
            --bg-light: #f5f7fa;
            --border-color: #e0e0e0;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.8;
            background-color: #fff;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(84, 114, 211, 0.8)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
        }
        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border-top: 5px solid var(--accent-yellow);
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        .match-prediction {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 16px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }
        .team-flag {
            width: 120px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .live-badge {
            background: linear-gradient(90deg, #ff416c, #ff4b2b);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            display: inline-block;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .analysis-card {
            border-left: 4px solid var(--primary-blue);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .flink {
            background: var(--bg-light);
            padding: 1rem 2rem;
            border-radius: 8px;
            color: var(--primary-blue);
            text-decoration: none;
            display: inline-block;
            margin: 0.5rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            border-color: var(--accent-yellow);
            transform: scale(1.05);
        }
        .footer {
            background: var(--primary-dark);
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 5rem;
        }
        .footer a {
            color: #bbdefb;
            text-decoration: none;
        }
        .footer a:hover {
            color: var(--accent-yellow);
            text-decoration: underline;
        }
        .seo-content {
            background: var(--bg-light);
            padding: 4rem 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            font-size: 1.05rem;
        }
        .seo-content h3 {
            color: var(--primary-blue);
            border-bottom: 3px solid var(--accent-yellow);
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0 4rem;
                clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
            }
            .team-flag {
                width: 90px;
                height: 60px;
            }
            .match-prediction {
                padding: 2rem 1rem;
            }
        }
