:root {
            --primary-dark: #0a2e5c;
            --primary-blue: #1e4a8c;
            --accent-gold: #d4af37;
            --accent-red: #c8102e;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #6c757d;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.6rem;
            background: linear-gradient(90deg, var(--primary-dark), var(--accent-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 46, 92, 0.88), rgba(30, 74, 140, 0.85)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            position: relative;
        }
        .hero-section h1 {
            font-weight: 900;
            font-size: 3.2rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
            margin-bottom: 1.5rem;
        }
        .stat-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            padding: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid var(--accent-gold);
            height: 100%;
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        .prediction-badge {
            background: linear-gradient(135deg, var(--accent-red), #e63946);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-block;
            margin-bottom: 1rem;
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .live-score {
            background: linear-gradient(135deg, #2d3748, #4a5568);
            color: white;
            border-radius: 15px;
            padding: 1.5rem;
            font-family: monospace;
            font-size: 1.3rem;
            font-weight: 700;
            text-align: center;
            border: 3px solid var(--accent-gold);
            margin: 1.5rem 0;
        }
        .analysis-section {
            background-color: var(--light-bg);
            padding: 5rem 0;
        }
        .tab-content {
            background: white;
            border-radius: 0 0 15px 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .nav-tabs .nav-link {
            font-weight: 700;
            padding: 1rem 1.8rem;
            border: none;
            color: var(--text-light);
        }
        .nav-tabs .nav-link.active {
            background: var(--primary-blue);
            color: white;
            border-radius: 10px 10px 0 0;
        }
        .friendlink a.flink {
            display: inline-block;
            background: white;
            padding: 0.8rem 1.8rem;
            border-radius: 10px;
            margin: 0.5rem;
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            border-left: 4px solid var(--accent-gold);
        }
        .friendlink a.flink:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            color: var(--accent-red);
        }
        footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 3.5rem 0 1.5rem;
        }
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: white;
        }
        .schema-data {
            display: none;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2rem;
            }
            .hero-section {
                padding: 4rem 0;
            }
            .stat-card {
                margin-bottom: 1.5rem;
            }
        }
        .content-area {
            text-align: justify;
            hyphens: auto;
        }
        .content-area h3 {
            color: var(--primary-dark);
            border-left: 5px solid var(--accent-gold);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 1.5rem;
            border-left: 4px solid var(--accent-gold);
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
