:root {
            --primary-blue: #001f3f;
            --accent-red: #e63946;
            --accent-white: #f8f9fa;
            --secondary-gold: #ffd166;
            --neutral-gray: #495057;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            background-color: #f8f9fa;
            line-height: 1.6;
        }
        .hero {
            background: linear-gradient(rgba(0, 31, 63, 0.85), rgba(0, 31, 63, 0.9)), 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;
            color: white;
            padding: 6rem 0;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .team-flag {
            width: 80px;
            height: 50px;
            object-fit: cover;
            border: 2px solid white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .match-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .match-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.12);
        }
        .live-badge {
            background-color: var(--accent-red);
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: block;
        }
        .stat-label {
            color: var(--neutral-gray);
            font-size: 0.95rem;
        }
        .analysis-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            padding: 2.5rem;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.2s;
        }
        .nav-link:hover {
            color: var(--secondary-gold) !important;
        }
        .footer {
            background-color: var(--primary-blue);
            color: var(--accent-white);
            padding-top: 3rem;
        }
        .footer a {
            color: #c0c0c0;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer a:hover {
            color: var(--secondary-gold);
        }
        .flink {
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            padding: 12px 20px;
            color: #ddd;
            display: inline-block;
            margin: 5px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .flink:hover {
            background: rgba(255,209,102,0.15);
            color: white;
            border-color: var(--secondary-gold);
            transform: scale(1.05);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-blue), var(--accent-red));
            border-radius: 2px;
        }
        .text-gradient {
            background: linear-gradient(to right, var(--primary-blue), var(--accent-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 2rem;
            }
            .analysis-section {
                padding: 1.5rem;
            }
        }
