:root {
            --primary-blue: #0066cc;
            --primary-white: #ffffff;
            --secondary-gray: #f8f9fa;
            --accent-gold: #ffcc00;
            --text-dark: #333333;
            --text-light: #666666;
            --border-color: #dee2e6;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.4rem;
            background: linear-gradient(90deg, var(--primary-blue), #1a75ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1634643353735-60d4d5c81d0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: var(--primary-white);
            padding: 120px 0;
            margin-bottom: 60px;
        }
        .prediction-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            overflow: hidden;
        }
        .prediction-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .live-badge {
            animation: pulse 2s infinite;
            border-radius: 20px;
            padding: 5px 15px;
            font-size: 0.85rem;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1;
        }
        .match-score {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--text-dark);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .analysis-section {
            background-color: var(--secondary-gray);
            border-radius: 15px;
            padding: 40px;
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary-blue);
        }
        .timeline-item:after {
            content: '';
            position: absolute;
            left: 5px;
            top: 17px;
            width: 2px;
            height: calc(100% + 13px);
            background-color: var(--border-color);
        }
        .timeline-item:last-child:after {
            display: none;
        }
        .flink {
            display: inline-block;
            background: var(--secondary-gray);
            padding: 12px 24px;
            border-radius: 8px;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 5px;
            border: 1px solid var(--border-color);
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            border-color: var(--primary-blue);
        }
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: var(--primary-blue);
        }
        .seo-content {
            line-height: 1.9;
            font-size: 1.05rem;
        }
        .seo-content h3 {
            margin-top: 40px;
            color: var(--primary-blue);
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 10px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .match-score {
                font-size: 2.5rem;
            }
            .stat-number {
                font-size: 2rem;
            }
            .analysis-section {
                padding: 25px;
            }
        }
        .prediction-meter {
            height: 12px;
            border-radius: 6px;
            background: #e9ecef;
            overflow: hidden;
            margin: 15px 0;
        }
        .prediction-fill {
            height: 100%;
            border-radius: 6px;
            background: linear-gradient(90deg, #28a745, #7cfc00);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), #1a75ff);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }
