:root {
            --primary: #0d47a1;
            --secondary: #b71c1c;
            --accent: #ffab00;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
        }
        .navbar {
            background: linear-gradient(135deg, var(--primary) 0%, #1565c0 100%);
            box-shadow: 0 4px 12px rgba(13, 71, 161, 0.15);
        }
        .hero {
            background: linear-gradient(rgba(0, 30, 70, 0.85), rgba(0, 30, 70, 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: 120px 0;
            margin-top: 76px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--primary);
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }
        .badge-live {
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .match-card {
            border-left: 5px solid var(--primary);
            background: white;
            border-radius: 8px;
        }
        .team-flag {
            width: 40px;
            height: 26px;
            object-fit: cover;
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .data-stat {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            border-radius: 12px;
            padding: 25px;
            height: 100%;
        }
        .flink {
            background: var(--light-bg);
            padding: 12px 20px;
            border-radius: 8px;
            color: var(--primary);
            text-decoration: none;
            display: inline-block;
            margin: 5px;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background: linear-gradient(135deg, #1a237e 0%, var(--primary) 100%);
            color: rgba(255,255,255,0.9);
        }
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .hero {
                padding: 80px 0;
                margin-top: 66px;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
        .analysis-box {
            border-left: 4px solid var(--accent);
            background: #fffdf6;
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .table-analytics th {
            background-color: var(--primary);
            color: white;
        }
