:root {
            --primary-color: #1a237e;
            --secondary-color: #d32f2f;
            --accent-color: #ff9800;
            --text-dark: #212121;
            --text-light: #757575;
            --background-light: #f5f5f5;
            --white: #ffffff;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #283593 100%);
            color: var(--white);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/>');
            background-size: cover;
        }
        .match-card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }
        .match-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.15);
        }
        .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        .team {
            text-align: center;
            flex: 1;
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 0.5rem;
        }
        .vs {
            font-weight: 900;
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin: 0 1.5rem;
        }
        .prediction-badge {
            display: inline-block;
            padding: 0.35rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.875rem;
        }
        .prediction-win {
            background-color: rgba(76, 175, 80, 0.15);
            color: #2e7d32;
        }
        .prediction-loss {
            background-color: rgba(244, 67, 54, 0.15);
            color: #d32f2f;
        }
        .prediction-draw {
            background-color: rgba(255, 152, 0, 0.15);
            color: #ef6c00;
        }
        .data-stat {
            background: var(--white);
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            height: 100%;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }
        .live-score {
            background: linear-gradient(45deg, #d32f2f, #f44336);
            color: white;
            border-radius: 10px;
            padding: 1rem;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
            100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
        }
        .analysis-card {
            border-left: 4px solid var(--accent-color);
            background-color: rgba(255, 152, 0, 0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin-bottom: 1.5rem;
        }
        .friendlink {
            background-color: var(--background-light);
            padding: 3rem 0;
        }
        .flink {
            display: inline-block;
            background: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            margin: 0.5rem;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
            border-color: var(--primary-color);
        }
        .footer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 3rem 0 1.5rem;
        }
        .footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--white);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 3rem 0;
            }
            .team-flag {
                width: 50px;
                height: 35px;
            }
            .vs {
                margin: 0 1rem;
                font-size: 1.25rem;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
        .article-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-content h3 {
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(26, 35, 126, 0.1);
        }
        .article-content p {
            margin-bottom: 1.5rem;
        }
