:root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #16a34a;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(135deg, rgba(30,58,138,0.9) 0%, rgba(220,38,38,0.85) 100%), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            padding: 120px 0 80px;
            color: white;
            position: relative;
        }
        .match-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border-top: 5px solid var(--secondary);
            transition: transform 0.3s ease;
        }
        .match-card:hover {
            transform: translateY(-10px);
        }
        .team-flag {
            width: 80px;
            height: 50px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .vs-badge {
            background: var(--accent);
            color: white;
            font-weight: bold;
            padding: 8px 20px;
            border-radius: 50px;
        }
        .live-badge {
            background: linear-gradient(90deg, #ef4444, #dc2626);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stat-card {
            background: var(--light);
            border-left: 4px solid var(--primary);
            padding: 20px;
            border-radius: 8px;
            height: 100%;
        }
        .analysis-section {
            background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
            padding: 80px 0;
        }
        .prediction-meter {
            height: 25px;
            background: #e2e8f0;
            border-radius: 50px;
            overflow: hidden;
            margin: 20px 0;
        }
        .prediction-fill {
            height: 100%;
            border-radius: 50px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        .footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            margin: 5px 10px 5px 0;
            border-radius: 8px;
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .flink:hover {
            background: rgba(255,255,255,0.2);
            color: white;
            transform: translateY(-3px);
            border-color: var(--accent);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            border-left: 3px solid var(--primary);
            margin-left: 15px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 100px 0 50px; }
            .display-4 { font-size: 2.5rem; }
            .team-flag { width: 60px; height: 40px; }
        }
