:root {
            --primary-color: #1a3a8f;
            --secondary-color: #f0b400;
            --accent-color: #008450;
        }
        body {
            font-family: 'Noto Sans SC', 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 58, 143, 0.9), rgba(26, 58, 143, 0.7)), url('https://images.unsplash.com/photo-1594744803329-e58b31de8bf5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 8rem 0;
            position: relative;
        }
        .match-highlight {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-left: 6px solid var(--secondary-color);
        }
        .flag-icon {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .prediction-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-top: 4px solid var(--primary-color);
            height: 100%;
        }
        .prediction-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
        }
        .live-badge {
            animation: pulse 2s infinite;
            border-radius: 50px;
            padding: 0.3rem 1.2rem;
            font-weight: 600;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .data-point {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .data-point i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .analysis-section {
            background-color: #f8f9fa;
            border-radius: 20px;
            padding: 3rem;
        }
        .friendlink a.flink {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            margin: 0.5rem;
            background: white;
            border-radius: 50px;
            color: var(--primary-color);
            text-decoration: none;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .friendlink a.flink:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: scale(1.05);
        }
        footer {
            background-color: #1c2331;
            color: #b0b7c3;
        }
        .footer-link a {
            color: #b0b7c3;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-link a:hover {
            color: white;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .hero-section { padding: 4rem 0; }
            .match-highlight { padding: 2rem 1rem; }
            .display-4 { font-size: 2.2rem; }
        }
        .article-content {
            line-height: 1.8;
            font-size: 1.1rem;
            color: #444;
        }
        .article-content h3 {
            color: var(--primary-color);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        .article-content p {
            margin-bottom: 1.5rem;
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
            border-left: 3px solid var(--secondary-color);
            margin: 2rem 0;
        }
        .timeline-item {
            margin-bottom: 2rem;
            position: relative;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 0.5rem;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--accent-color);
        }
