:root {
            --primary-color: #0d47a1;
            --secondary-color: #e65100;
            --accent-color: #1a237e;
            --light-color: #e3f2fd;
            --dark-color: #0a2a5a;
            --success-color: #2e7d32;
            --warning-color: #f57c00;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-color) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.85), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            margin-bottom: 60px;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            margin-bottom: 25px;
        }
        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 35px;
            max-width: 800px;
        }
        .btn-primary-custom {
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border: none;
            color: white;
            padding: 12px 35px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(13, 71, 161, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(13, 71, 161, 0.4);
            color: white;
        }
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 800;
            color: var(--dark-color);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        .card-custom {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            height: 100%;
        }
        .card-custom:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-custom .card-header {
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            color: white;
            font-weight: 700;
            padding: 20px;
            border-bottom: none;
        }
        .live-score {
            background-color: #fff;
            border-left: 5px solid var(--secondary-color);
            padding: 20px;
            margin-bottom: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .team-flag {
            width: 50px;
            height: auto;
            border-radius: 3px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .score-display {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark-color);
            margin: 0 15px;
        }
        .analysis-badge {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        .badge-win {
            background-color: rgba(46, 125, 50, 0.15);
            color: var(--success-color);
        }
        .badge-loss {
            background-color: rgba(244, 67, 54, 0.15);
            color: #f44336;
        }
        .badge-draw {
            background-color: rgba(255, 193, 7, 0.15);
            color: #ff9800;
        }
        .probability-bar {
            height: 25px;
            border-radius: 15px;
            overflow: hidden;
            background-color: #e0e0e0;
            margin: 15px 0;
        }
        .probability-fill {
            height: 100%;
            border-radius: 15px;
            transition: width 1.5s ease;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .stats-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .flink {
            display: inline-block;
            background-color: white;
            padding: 10px 20px;
            border-radius: 10px;
            margin: 5px 10px;
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid #eee;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .flink:hover {
            background-color: var(--light-color);
            color: var(--primary-color);
            transform: translateY(-3px);
            text-decoration: none;
            border-color: var(--primary-color);
        }
        .friendlink {
            background-color: #f1f8ff;
            padding: 60px 0;
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }
        footer a {
            color: #bbdefb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .footer-title {
            color: white;
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #bbdefb;
            font-size: 0.9rem;
        }
        .schema-item {
            display: none;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section p {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .stats-number {
                font-size: 2rem;
            }
        }
