:root {
            --primary-color: #0a3d62;
            --secondary-color: #1e90ff;
            --accent-color: #ff6b6b;
            --light-color: #f8f9fa;
            --dark-color: #2c3e50;
            --success-color: #28a745;
            --warning-color: #ffc107;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.8;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .navbar {
            background-color: rgba(10, 61, 98, 0.95);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 0.8rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: white !important;
            display: flex;
            align-items: center;
        }
        .navbar-brand i {
            color: var(--accent-color);
            margin-right: 10px;
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: white !important;
            background-color: rgba(30, 144, 255, 0.2);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(30, 144, 255, 0.8)), 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 100px;
            margin-bottom: 60px;
            text-align: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }
        .hero-subtitle {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            opacity: 0.95;
        }
        .btn-hero {
            background-color: var(--accent-color);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            box-shadow: 0 6px 15px rgba(255, 107, 107, 0.4);
        }
        .btn-hero:hover {
            background-color: #ff4757;
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(255, 107, 107, 0.6);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        .card-feature {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            margin-bottom: 30px;
        }
        .card-feature:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .card-feature .card-icon {
            font-size: 3.5rem;
            color: var(--secondary-color);
            margin: 25px 0 15px;
        }
        .card-feature .card-title {
            color: var(--primary-color);
        }
        .stats-counter {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
            margin: 80px 0;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent-color);
        }
        .analysis-table {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .table thead th {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1.2rem;
        }
        .table tbody tr {
            transition: all 0.3s;
        }
        .table tbody tr:hover {
            background-color: rgba(30, 144, 255, 0.05);
            transform: scale(1.005);
        }
        .live-badge {
            background-color: #ff4757;
            color: white;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .team-flag {
            width: 40px;
            height: 25px;
            object-fit: cover;
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            margin-right: 10px;
        }
        .match-card {
            border-left: 5px solid var(--secondary-color);
            border-radius: 10px;
            transition: all 0.3s;
        }
        .match-card:hover {
            border-left-color: var(--accent-color);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        .footer {
            background-color: var(--dark-color);
            color: #ccc;
            padding: 70px 0 30px;
            margin-top: 80px;
        }
        .footer a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
        }
        .footer-title {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
            display: inline-block;
        }
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 50px;
            text-align: center;
            font-size: 0.9rem;
            color: #999;
        }
        .friendlink {
            background-color: #f8f9fa;
            padding: 60px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .flink {
            display: inline-block;
            background-color: white;
            color: var(--primary-color);
            padding: 12px 25px;
            margin: 8px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
            border: 1px solid #eaeaea;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(10, 61, 98, 0.2);
            text-decoration: none;
        }
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        .contact-info i {
            color: var(--secondary-color);
            margin-right: 12px;
            margin-top: 5px;
        }
        .seo-content {
            background-color: #f8f9fa;
            padding: 50px 30px;
            border-radius: 15px;
            margin: 50px 0;
            font-size: 1.05rem;
            line-height: 1.9;
        }
        .seo-content h3 {
            color: var(--dark-color);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            margin-top: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 25px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -33px;
            top: 8px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: var(--accent-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--accent-color);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .navbar-brand {
                font-size: 1.4rem;
            }
        }
