:root {
            --primary-color: #0d47a1;
            --secondary-color: #dc3545;
            --accent-color: #ffc107;
            --dark-bg: #1a237e;
            --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 {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.85), rgba(26, 35, 126, 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: var(--text-light);
            padding: 120px 0 80px;
        }
        .match-prediction-card {
            border: none;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }
        .match-prediction-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .prediction-badge {
            font-size: 1.1rem;
            padding: 8px 20px;
            border-radius: 50px;
        }
        .live-score {
            background: linear-gradient(90deg, #ff416c, #ff4b2b);
            color: white;
            border-radius: 12px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 65, 108, 0.7); }
            70% { box-shadow: 0 0 0 12px rgba(255, 65, 108, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 65, 108, 0); }
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
            border-left: 5px solid var(--primary-color);
        }
        .analysis-section {
            background: var(--light-bg);
            border-radius: 20px;
            padding: 40px;
        }
        .friendlink a.flink {
            display: inline-flex;
            align-items: center;
            background: white;
            padding: 12px 24px;
            border-radius: 10px;
            margin: 8px;
            text-decoration: none;
            color: var(--text-dark);
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
        }
        .friendlink a.flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
            border-color: var(--primary-color);
        }
        footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: var(--text-light);
        }
        .schema-hidden {
            display: none;
        }
        @media (max-width: 768px) {
            .hero-section { padding: 80px 0 50px; }
            .team-flag { width: 60px; height: 45px; }
            .stats-grid { grid-template-columns: 1fr; }
            .analysis-section { padding: 25px; }
        }
        .content-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        .text-justify {
            text-align: justify;
        }
