:root {
            --primary-color: #0a2e5c;
            --secondary-color: #da251d;
            --accent-color: #f0b400;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-color);
            line-height: 1.8;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 46, 92, 0.85), rgba(218, 37, 29, 0.8)), url('https://images.unsplash.com/photo-1574623452334-1e0ac2b3ccb4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            position: relative;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .card-hover {
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.1);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            border-color: var(--accent-color);
        }
        .match-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid var(--secondary-color);
            border-radius: 0 10px 10px 0;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background: var(--light-color);
            border-radius: 30px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: white;
            border-color: var(--accent-color);
            color: var(--secondary-color);
            transform: scale(1.05);
        }
        .data-stat {
            background: linear-gradient(45deg, var(--primary-color), #1e4a8b);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .live-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(218, 37, 29, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(218, 37, 29, 0); }
            100% { box-shadow: 0 0 0 0 rgba(218, 37, 29, 0); }
        }
        .analysis-box {
            border-left: 4px solid var(--accent-color);
            padding-left: 1.5rem;
            background: #fff9e6;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        footer {
            background: linear-gradient(135deg, var(--primary-color) 0%, #0a1f3d 100%);
            color: white;
        }
        .contact-info i {
            width: 30px;
            color: var(--accent-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
