:root {
            --primary-color: #0d47a1;
            --secondary-color: #d32f2f;
            --accent-color: #ff9800;
            --dark-bg: #1a237e;
            --light-bg: #f5f7ff;
            --text-dark: #212121;
            --text-light: #f5f5f5;
        }
        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(13, 71, 161, 0.9), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: var(--text-light);
            padding: 120px 0 80px;
            position: relative;
        }
        .nav-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(to right, #fff, #ffeb3b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .navbar {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            padding: 8px 0;
            background-color: rgba(26, 35, 126, 0.95) !important;
        }
        .nav-link {
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s;
            position: relative;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        .nav-link.active {
            color: var(--accent-color) !important;
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent-color);
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .stats-card {
            background: linear-gradient(135deg, var(--primary-color), #283593);
            color: white;
            padding: 25px;
            border-radius: 12px;
            height: 100%;
            transition: transform 0.3s;
        }
        .stats-card:hover {
            transform: scale(1.03);
        }
        .match-prediction {
            border-left: 5px solid var(--accent-color);
            background-color: var(--light-bg);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .live-badge {
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .table-hover tbody tr {
            transition: background-color 0.3s;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(13, 71, 161, 0.05);
        }
        .analysis-box {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            border-top: 4px solid var(--primary-color);
        }
        .footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding-top: 60px;
        }
        .footer a {
            color: #bbdefb;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--accent-color);
        }
        .friendlink {
            background-color: #f8f9fa;
            padding: 40px 0;
            border-top: 1px solid #dee2e6;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 10px 20px;
            margin: 5px 10px;
            border-radius: 8px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.05);
            color: var(--primary-color);
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid #e0e0e0;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        .contact-box {
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            border-radius: 12px;
            padding: 30px;
        }
        .btn-custom {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-custom:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(13, 71, 161, 0.2);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 50px;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .team-flag {
                width: 50px;
                height: 35px;
            }
        }
        .content-area {
            max-width: 1200px;
            margin: 0 auto;
        }
        article {
            margin-bottom: 40px;
        }
        h2, h3, h4 {
            color: var(--primary-color);
            margin-top: 1.5em;
            margin-bottom: 0.8em;
        }
        p {
            margin-bottom: 1.2em;
            text-align: justify;
        }
