:root {
            --primary-color: #0a3d62;
            --secondary-color: #1e90ff;
            --accent-color: #ff6b6b;
            --light-color: #f8f9fa;
            --dark-color: #2c3e50;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 6rem 0;
            text-align: center;
        }
        .hero-section h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .section-title {
            color: var(--primary-color);
            border-left: 5px solid var(--accent-color);
            padding-left: 15px;
            margin-bottom: 2rem;
            font-weight: 700;
        }
        .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .live-score {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255,107,107,0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255,107,107,0); }
            100% { box-shadow: 0 0 0 0 rgba(255,107,107,0); }
        }
        .team-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin: 0 15px;
        }
        .analysis-chart {
            height: 300px;
            background: #f8f9fa;
            border-radius: 10px;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            padding: 20px;
            margin-top: 20px;
        }
        .chart-bar {
            width: 60px;
            background: linear-gradient(to top, var(--secondary-color), #4a9eff);
            border-radius: 5px 5px 0 0;
            position: relative;
            text-align: center;
            color: white;
            font-weight: bold;
            padding-top: 10px;
        }
        .flink {
            display: inline-block;
            background: var(--light-color);
            padding: 10px 20px;
            margin: 5px 10px;
            border-radius: 50px;
            color: var(--dark-color);
            text-decoration: none;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: var(--secondary-color);
            color: white;
            border-color: var(--secondary-color);
            transform: scale(1.05);
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-link {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: var(--secondary-color);
        }
        .social-icon {
            font-size: 1.5rem;
            margin: 0 10px;
            color: #ddd;
            transition: color 0.3s, transform 0.3s;
        }
        .social-icon:hover {
            color: var(--secondary-color);
            transform: scale(1.2);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2rem;
            }
            .team-logo {
                width: 50px;
                height: 50px;
            }
        }
