:root {
            --primary-color: #1a5fb4;
            --secondary-color: #e95420;
            --accent-color: #f2c94c;
            --dark-color: #2d3748;
            --light-color: #f8f9fa;
            --success-color: #38a169;
            --danger-color: #e53e3e;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -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-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .match-prediction-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s;
        }
        .match-prediction-card:hover {
            transform: translateY(-5px);
        }
        .team-flag {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 4px solid white;
            object-fit: cover;
        }
        .vs-text {
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .stat-card {
            border-left: 4px solid var(--primary-color);
            padding: 15px;
            background: #f8f9fa;
            margin-bottom: 20px;
            transition: all 0.3s;
        }
        .stat-card:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }
        .live-badge {
            animation: pulse 1.5s infinite;
            border-radius: 20px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .analysis-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 60px 0;
        }
        .prediction-meter {
            height: 25px;
            border-radius: 12px;
            overflow: hidden;
            background: #e0e0e0;
            margin: 20px 0;
        }
        .meter-fill {
            height: 100%;
            border-radius: 12px;
            transition: width 1s ease-in-out;
        }
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }
        .friendlink a.flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background: #f1f1f1;
            border-radius: 5px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #ddd;
        }
        .friendlink a.flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .article-content {
            column-count: 2;
            column-gap: 40px;
            text-align: justify;
        }
        @media (max-width: 768px) {
            .article-content {
                column-count: 1;
            }
            .hero-section {
                padding: 80px 0;
            }
            .team-flag {
                width: 60px;
                height: 60px;
            }
        }
        .hover-shadow {
            transition: box-shadow 0.3s;
        }
        .hover-shadow:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .seo-rich-content {
            line-height: 1.8;
            font-size: 1.05rem;
        }
