:root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #2d3748;
            --light-bg: #f7fafc;
            --text-primary: #2d3748;
            --text-secondary: #4a5568;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
        }
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, #fff 0%, #cbd5e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(45, 55, 72, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
        }
        .prediction-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid var(--secondary-color);
            overflow: hidden;
        }
        .prediction-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .flag-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #e2e8f0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .vs-text {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .probability-bar {
            height: 25px;
            border-radius: 12px;
            overflow: hidden;
            background: #e2e8f0;
        }
        .probability-fill {
            height: 100%;
            border-radius: 12px;
            transition: width 1s ease;
        }
        .live-badge {
            animation: pulse 2s infinite;
            border-radius: 20px;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(229, 62, 62, 0); }
            100% { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0); }
        }
        .stats-card {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            border-radius: 8px;
        }
        .article-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        .article-card:hover {
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .article-card img {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .article-card:hover img {
            transform: scale(1.05);
        }
        .footer {
            background: var(--primary-color);
            color: #cbd5e0;
            padding-top: 60px;
        }
        .friendlink a.flink {
            display: inline-block;
            background: white;
            padding: 8px 20px;
            margin: 5px 10px;
            border-radius: 25px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #cbd5e0;
        }
        .friendlink a.flink:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
            border-color: var(--secondary-color);
        }
        .contact-info i {
            width: 40px;
            color: var(--secondary-color);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--primary-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 20px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -33px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary-color);
            border: 3px solid var(--secondary-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .navbar-brand {
                font-size: 1.2rem;
            }
            .flag-icon {
                width: 60px;
                height: 60px;
            }
            .vs-text {
                font-size: 1.5rem;
            }
        }
