:root {
            --primary-color: #0a3d62;
            --secondary-color: #1e88e5;
            --accent-color: #ff6b6b;
            --light-color: #f8f9fa;
            --dark-color: #2d3436;
            --success-color: #00b894;
            --warning-color: #fdcb6e;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.8;
            color: var(--dark-color);
        }
        .header-bg {
            background: linear-gradient(rgba(10, 61, 98, 0.9), rgba(10, 61, 98, 0.95)), url('https://images.unsplash.com/photo-1560272564-c83b66b1ad12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }
        .navbar {
            background-color: rgba(10, 61, 98, 0.95);
            transition: all 0.3s ease;
            padding: 15px 0;
        }
        .navbar.scrolled {
            padding: 10px 0;
            background-color: rgba(10, 61, 98, 0.98);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s;
        }
        .nav-link:hover {
            color: var(--warning-color) !important;
            transform: translateY(-2px);
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
            margin-bottom: 20px;
        }
        .section-title {
            position: relative;
            margin-bottom: 50px;
            padding-bottom: 15px;
            font-weight: 700;
            color: var(--primary-color);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
        }
        .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-header {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 15px 20px;
            border-bottom: none;
        }
        .match-card {
            border-left: 5px solid var(--accent-color);
        }
        .team-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin: 0 auto;
        }
        .live-badge {
            background-color: var(--accent-color);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .data-table {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .data-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            border: none;
        }
        .data-table td {
            vertical-align: middle;
        }
        .analysis-box {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            border-left: 4px solid var(--secondary-color);
            margin-bottom: 20px;
        }
        .prediction-meter {
            height: 25px;
            background-color: #e9ecef;
            border-radius: 12px;
            overflow: hidden;
            margin: 15px 0;
        }
        .prediction-fill {
            height: 100%;
            border-radius: 12px;
            transition: width 1s ease;
        }
        .norway-fill {
            background-color: #c8102e; 
        }
        .france-fill {
            background-color: #0055a4; 
        }
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--warning-color);
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px 8px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 5px;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        .flink:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: #0d47a1;
            border-color: #0d47a1;
            transform: translateY(-3px);
        }
        .contact-info i {
            width: 30px;
            color: var(--secondary-color);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .stats-number {
                font-size: 2rem;
            }
        }
        .seo-content {
            line-height: 1.8;
            font-size: 1.05rem;
        }
        .seo-content h3 {
            color: var(--primary-color);
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
        }
