:root {
            --primary-color: #1a5fb4;
            --secondary-color: #ffcc00;
            --accent-color: #e95420;
            --dark-color: #2c3e50;
            --light-color: #f8f9fa;
            --success-color: #38b44a;
            --danger-color: #e95420;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, rgba(26, 95, 180, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 120px 0 80px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--dark-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        .section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .match-card {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            border-left: 5px solid var(--primary-color);
        }
        .team-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }
        .live-badge {
            background-color: var(--danger-color);
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stat-card {
            background-color: var(--primary-color);
            color: white;
            border-radius: 10px;
            padding: 25px 20px;
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .analysis-box {
            background-color: #f9f9f9;
            border-left: 5px solid var(--secondary-color);
            padding: 25px;
            border-radius: 0 10px 10px 0;
            margin-bottom: 30px;
        }
        .prediction-meter {
            height: 25px;
            background-color: #e9ecef;
            border-radius: 12px;
            overflow: hidden;
            margin: 15px 0;
        }
        .prediction-fill {
            height: 100%;
            border-radius: 12px;
            background: linear-gradient(90deg, var(--success-color), var(--secondary-color));
            transition: width 1.5s ease;
        }
        .contact-info {
            list-style: none;
            padding-left: 0;
        }
        .contact-info li {
            margin-bottom: 15px;
            padding-left: 40px;
            position: relative;
        }
        .contact-info i {
            position: absolute;
            left: 0;
            top: 0;
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        .flink {
            background-color: #f8f9fa;
            padding: 15px 25px;
            border-radius: 8px;
            color: var(--dark-color);
            text-decoration: none;
            display: inline-block;
            margin: 5px;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--secondary-color);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 40px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .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;
            text-decoration: none;
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            z-index: 1000;
        }
        .back-to-top.visible {
            opacity: 1;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            color: white;
            background-color: var(--accent-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 60px;
            }
            .team-logo {
                width: 60px;
                height: 60px;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
