:root {
            --primary-blue: #00274d;
            --secondary-blue: #0056b3;
            --accent-gold: #ffcc00;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.8;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--accent-gold) !important;
            font-size: 1.4rem;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 39, 77, 0.85), rgba(0, 39, 77, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0 80px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--primary-blue);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-gold);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .analysis-icon {
            font-size: 2.5rem;
            color: var(--secondary-blue);
            margin-bottom: 20px;
        }
        .live-score {
            background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
            color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(255, 153, 0, 0.2);
        }
        .team-logo {
            height: 80px;
            width: auto;
            object-fit: contain;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background: var(--light-bg);
            border-radius: 30px;
            color: var(--secondary-blue);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--secondary-blue);
            color: white;
            transform: scale(1.05);
        }
        .footer {
            background: var(--primary-blue);
            color: #ddd;
            padding-top: 50px;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
        }
        .footer a:hover {
            color: var(--accent-gold);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 50px;
            }
            .team-logo {
                height: 60px;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
