:root {
            --primary-blue: #0d47a1;
            --secondary-blue: #1976d2;
            --accent-red: #d32f2f;
            --accent-gold: #ffb300;
            --dark-bg: #121212;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #f8f9fa;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.8;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.85), rgba(25, 118, 210, 0.9)), url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }
        .stat-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border-top: 5px solid var(--primary-blue);
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .live-match {
            background: linear-gradient(135deg, #1a237e, #0d47a1);
            color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(13, 71, 161, 0.3);
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .analysis-section {
            background: var(--light-bg);
            padding: 80px 0;
        }
        .prediction-box {
            background: white;
            border-radius: 15px;
            padding: 30px;
            border-left: 8px solid var(--accent-red);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .flink {
            background: white;
            padding: 15px 25px;
            border-radius: 10px;
            display: block;
            text-align: center;
            color: var(--primary-blue);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .flink:hover {
            border-color: var(--primary-blue);
            transform: translateY(-5px);
            color: var(--accent-red);
        }
        .friendlink {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            padding: 60px 0;
        }
        footer {
            background: var(--dark-bg);
            color: var(--text-light);
        }
        .contact-info a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s;
        }
        .contact-info a:hover {
            color: white;
            text-decoration: underline;
        }
        .h2, .h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        .match-table th {
            background-color: var(--primary-blue);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .stat-card {
                margin-bottom: 20px;
            }
            .team-flag {
                width: 60px;
                height: 45px;
            }
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            border-left: 3px solid var(--secondary-blue);
            margin-left: 15px;
        }
        .timeline-item {
            margin-bottom: 30px;
            position: relative;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary-blue);
        }
