:root {
            --primary-color: #1a237e;
            --secondary-color: #0d47a1;
            --accent-color: #ff6f00;
            --light-color: #f5f7fa;
            --dark-color: #263238;
            --success-color: #4caf50;
            --warning-color: #ff9800;
            --danger-color: #f44336;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.7;
            color: var(--dark-color);
            background-color: #f8f9fa;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            padding: 0.5rem 1.2rem;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        .navbar-nav .nav-link:hover {
            background-color: rgba(26, 35, 126, 0.1);
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/>');
            background-size: 80px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 2.5rem;
            color: var(--primary-color);
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .match-prediction-card {
            border-top: 5px solid var(--accent-color);
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .vs-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin: 0 1.5rem;
        }
        .prediction-badge {
            font-size: 0.9rem;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-weight: 600;
        }
        .live-score {
            background-color: var(--danger-color);
            color: white;
            animation: pulse 2s infinite;
            border-radius: 4px;
            padding: 0.2rem 0.8rem;
            font-weight: 700;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stats-table th {
            background-color: var(--primary-color);
            color: white;
            border: none;
        }
        .stats-table td {
            border-color: #e0e0e0;
        }
        .analysis-box {
            background-color: white;
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .footer {
            background-color: var(--dark-color);
            color: #ccc;
            padding: 3rem 0 1.5rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .contact-info i {
            width: 30px;
            color: var(--accent-color);
        }
        .friendlink {
            background-color: var(--light-color);
            padding: 3rem 0;
        }
        .flink {
            display: inline-block;
            background-color: white;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 6px;
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            border-color: var(--primary-color);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .back-to-top.show {
            opacity: 1;
        }
        .back-to-top:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            margin-bottom: 2rem;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--primary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 1.5rem;
            padding-left: 20px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--accent-color);
            border: 3px solid var(--primary-color);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .navbar-nav .nav-link {
                padding: 0.5rem 0.8rem;
            }
        }
