:root {
            --primary-blue: #1a3a8f;
            --secondary-red: #d22630;
            --accent-gold: #f8c300;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, #2a4db3 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent-gold) 0%, #ffd700 100%);
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
        }
        .navbar {
            background: var(--gradient-primary);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 0.8rem 0;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
        }
        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-gold) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: var(--gradient-primary) url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            background-blend-mode: overlay;
            color: white;
            padding: 6rem 0;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-gold);
            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 12px 24px rgba(0,0,0,0.15);
        }
        .live-score {
            background: linear-gradient(45deg, #d22630, #ff4757);
            color: white;
            border-radius: 12px;
            padding: 1.5rem;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(210, 38, 48, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(210, 38, 48, 0); }
            100% { box-shadow: 0 0 0 0 rgba(210, 38, 48, 0); }
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }
        .prediction-badge {
            background: var(--gradient-accent);
            color: #000;
            font-weight: 700;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            display: inline-block;
            margin: 1rem 0;
        }
        .footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--accent-gold);
        }
        .friendlink a.flink {
            display: inline-block;
            background: var(--light-bg);
            padding: 0.5rem 1.2rem;
            border-radius: 6px;
            margin: 0.3rem;
            color: var(--primary-blue);
            border: 1px solid #dee2e6;
            transition: all 0.3s;
            text-decoration: none;
        }
        .friendlink a.flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
        }
        .data-table th {
            background: var(--light-bg);
            font-weight: 600;
            border-top: none;
        }
        .analysis-highlight {
            border-left: 4px solid var(--accent-gold);
            background: rgba(248, 195, 0, 0.05);
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .stats-number { font-size: 2rem; }
        }
