:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --dark-color: #111827;
            --light-color: #f8fafc;
            --gray-color: #6b7280;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #0f172a 100%);
            color: white;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/>');
            background-size: cover;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
        }
        .match-card {
            border-left: 5px solid var(--secondary-color);
            transition: all 0.3s ease;
        }
        .match-card:hover {
            border-left-color: var(--accent-color);
        }
        .stats-box {
            background: linear-gradient(135deg, var(--primary-color), #2563eb);
            color: white;
            border-radius: 10px;
            padding: 2rem;
            height: 100%;
            transition: transform 0.3s ease;
        }
        .stats-box:hover {
            transform: scale(1.03);
        }
        .nav-tabs .nav-link {
            color: var(--gray-color);
            font-weight: 600;
            border: none;
        }
        .nav-tabs .nav-link.active {
            color: var(--secondary-color);
            border-bottom: 3px solid var(--secondary-color);
        }
        .flink {
            display: inline-block;
            background-color: #f1f5f9;
            color: #475569;
            padding: 0.5rem 1.2rem;
            margin: 0.3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
        }
        .footer {
            background-color: var(--dark-color);
            color: #cbd5e1;
        }
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .analysis-box {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-top: 4px solid var(--accent-color);
            height: 100%;
        }
        .team-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
            }
            .team-logo {
                width: 40px;
                height: 40px;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
        .table-hover tbody tr:hover {
            background-color: rgba(30, 58, 138, 0.05);
        }
        .prediction-meter {
            height: 10px;
            background-color: #e5e7eb;
            border-radius: 5px;
            overflow: hidden;
        }
        .prediction-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            border-radius: 5px;
        }
        .bg-gradient-primary {
            background: linear-gradient(135deg, var(--primary-color), #2563eb);
        }
        .breadcrumb {
            background-color: #f8fafc;
            border-radius: 0.375rem;
        }
