:root {
            --primary-blue: #0d3b66;
            --secondary-red: #c41e3a;
            --accent-gold: #f4b41a;
            --neutral-light: #f8f9fa;
            --neutral-dark: #212529;
            --swiss-red: #ff0000;
            --canada-red: #ff0000;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: var(--neutral-dark);
            line-height: 1.8;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--swiss-red), var(--accent-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 59, 102, 0.9), rgba(13, 59, 102, 0.7)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 8rem 0;
            position: relative;
        }
        .match-prediction-card {
            border-left: 5px solid var(--secondary-red);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .match-prediction-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .team-flag {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .live-badge {
            animation: pulse 2s infinite;
            border-radius: 20px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .stat-card {
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
        }
        .stat-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .analysis-section {
            background-color: var(--neutral-light);
            border-radius: 15px;
            padding: 3rem;
        }
        .friendlink a.flink {
            padding: 8px 20px;
            background: white;
            border-radius: 25px;
            color: var(--primary-blue);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
            display: inline-block;
            margin: 5px;
        }
        .friendlink a.flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background-color: var(--neutral-dark);
            color: white;
        }
        .fixture-table tr:hover {
            background-color: rgba(13, 59, 102, 0.05);
        }
        .odds-display {
            font-weight: bold;
            font-size: 1.2rem;
            color: var(--secondary-red);
        }
        .highlight-text {
            border-left: 4px solid var(--accent-gold);
            padding-left: 15px;
            font-style: italic;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
                text-align: center;
            }
            .team-flag {
                width: 60px;
                height: 60px;
            }
            .analysis-section {
                padding: 1.5rem;
            }
        }
