:root {
            --primary-blue: #0d47a1;
            --secondary-red: #d32f2f;
            --neutral-gray: #2c3e50;
            --accent-light: #f8f9fa;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.8;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1551969014-7d2c4cddf0b6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
        }
        .match-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(13, 71, 161, 0.2);
        }
        .flag-icon {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border-radius: 50%;
            border: 3px solid var(--accent-light);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .prediction-badge {
            font-size: 1.1rem;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .stat-box {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            border-top: 4px solid var(--primary-blue);
        }
        .live-badge {
            animation: pulse 2s infinite;
            display: inline-block;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .friendlink a.flink {
            display: inline-block;
            background: var(--accent-light);
            padding: 0.75rem 1.5rem;
            margin: 0.5rem;
            border-radius: 8px;
            color: var(--neutral-gray);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .friendlink a.flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background: var(--neutral-gray);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--primary-blue);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary-red);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-red);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
                text-align: center;
            }
            .flag-icon {
                width: 60px;
                height: 60px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
