:root {
            --primary-blue: #1e3a8a;
            --secondary-blue: #3b82f6;
            --accent-red: #dc2626;
            --light-bg: #f8fafc;
            --dark-text: #1e293b;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(59, 130, 246, 0.8)), 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: 100px 0;
        }
        .match-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .prediction-badge {
            background: linear-gradient(45deg, var(--accent-red), #f59e0b);
            color: white;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 25px;
            display: inline-block;
        }
        .live-badge {
            background: var(--accent-red);
            color: white;
            animation: pulse 2s infinite;
            border-radius: 4px;
            padding: 2px 10px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stat-card {
            background: var(--light-bg);
            border-left: 4px solid var(--secondary-blue);
            padding: 20px;
            border-radius: 8px;
            height: 100%;
        }
        .analysis-section {
            background: var(--light-bg);
            padding: 80px 0;
        }
        .form-guide {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 5px;
        }
        .form-win { background: #10b981; }
        .form-draw { background: #f59e0b; }
        .form-loss { background: #ef4444; }
        .friendlink a.flink {
            display: inline-block;
            background: white;
            padding: 10px 20px;
            border-radius: 8px;
            margin: 5px;
            color: var(--dark-text);
            text-decoration: none;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        .friendlink a.flink:hover {
            background: var(--secondary-blue);
            color: white;
            border-color: var(--secondary-blue);
            transform: translateY(-3px);
        }
        .footer {
            background: var(--primary-blue);
            color: white;
            padding: 60px 0 30px;
        }
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section { padding: 60px 0; }
            .team-flag { width: 50px; height: 35px; }
            .display-4 { font-size: 2.2rem; }
        }
        .article-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        .article-content h3 {
            color: var(--primary-blue);
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        .data-table th {
            background-color: var(--primary-blue);
            color: white;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            border-left: 5px solid var(--secondary-blue);
            padding: 25px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
        }
