:root {
            --primary-dark: #0a2e5c;
            --primary-blue: #1e6bb8;
            --accent-red: #d62839;
            --accent-gold: #ffc107;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 46, 92, 0.85), rgba(10, 46, 92, 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: 8rem 0 5rem;
            position: relative;
        }
        .nav-shadow {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
            color: var(--primary-dark);
        }
        .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;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
        }
        .team-logo {
            width: 120px;
            height: 120px;
            object-fit: contain;
            filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
            transition: transform 0.5s ease;
        }
        .team-logo:hover {
            transform: scale(1.1);
        }
        .live-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: linear-gradient(45deg, #dc3545, #ff6b6b);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
            100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
        }
        .data-stat {
            background: linear-gradient(135deg, var(--light-bg), white);
            border-left: 5px solid var(--primary-blue);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .flink {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--light-bg);
            color: var(--primary-dark);
            padding: 12px 25px;
            margin: 8px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: white;
            color: var(--primary-blue);
            border-color: var(--primary-blue);
            transform: translateY(-3px);
        }
        .analysis-box {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-top: 6px solid var(--primary-blue);
        }
        footer {
            background: linear-gradient(to right, #0a1f3d, var(--primary-dark));
            color: #e0e0e0;
        }
        .footer-links a {
            color: #b0c4de;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .hero-section { padding: 6rem 0 3rem; }
            .team-logo { width: 90px; height: 90px; }
            .display-4 { font-size: 2.2rem; }
        }
        .seo-content {
            font-size: 1.05rem;
            text-align: justify;
            hyphens: auto;
        }
        .seo-content h3 {
            color: var(--primary-dark);
            margin-top: 2rem;
        }
