:root {
            --primary-color: #1a5fb4;
            --secondary-color: #e53935;
            --accent-color: #f8c300;
            --dark-color: #1a1d28;
            --light-color: #f8f9fa;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 31, 40, 0.85), rgba(26, 31, 40, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0 6rem;
            margin-top: 76px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
            text-align: center;
            color: var(--dark-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .match-card {
            background: linear-gradient(135deg, #1a5fb4 0%, #2a7de1 100%);
            color: white;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        .match-card:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 40px rgba(26, 95, 180, 0.2);
        }
        .stat-badge {
            background: var(--accent-color);
            color: var(--dark-color);
            font-weight: 600;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
        }
        .live-indicator {
            animation: pulse 1.5s infinite;
            background: var(--secondary-color);
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .analysis-box {
            border-left: 5px solid var(--primary-color);
            background: #f8f9ff;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .friendlink a.flink {
            display: inline-block;
            background: #f8f9fa;
            padding: 0.6rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            text-decoration: none;
            color: #495057;
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
        }
        .friendlink a.flink:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }
        footer {
            background: var(--dark-color);
            color: #adb5bd;
        }
        footer a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: white;
        }
        .seo-content {
            background: #f8f9fa;
            padding: 3rem 0;
            border-top: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0 3rem;
                text-align: center;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
        .img-fluid {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .contact-info i {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }
