:root {
            --primary-blue: #0d2b56;
            --accent-red: #c8102e;
            --light-gray: #f8f9fa;
            --dark-gray: #212529;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-blue) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 43, 86, 0.85), rgba(13, 43, 86, 0.9)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 0;
        }
        .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: 70px;
            height: 4px;
            background: var(--accent-red);
        }
        .card-hover {
            transition: var(--transition);
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .match-card {
            border-left: 5px solid var(--accent-red);
            background: linear-gradient(to right, #fff, #f8f9fa);
        }
        .live-badge {
            animation: pulse 2s infinite;
            font-size: 0.8rem;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .team-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }
        .data-stat {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .btn-primary-custom {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            color: white;
            padding: 10px 25px;
            font-weight: 600;
        }
        .btn-primary-custom:hover {
            background-color: var(--accent-red);
            border-color: var(--accent-red);
        }
        footer {
            background-color: var(--primary-blue);
            color: white;
        }
        .friendlink a.flink {
            color: var(--dark-gray);
            text-decoration: none;
            padding: 8px 15px;
            background: var(--light-gray);
            border-radius: 4px;
            transition: var(--transition);
            display: inline-block;
            margin: 5px;
        }
        .friendlink a.flink:hover {
            background: var(--accent-red);
            color: white;
        }
        .analysis-box {
            border-left: 4px solid var(--primary-blue);
            background-color: #f0f7ff;
            padding: 20px;
            margin-bottom: 20px;
        }
        .table-custom {
            background: white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .table-custom thead {
            background-color: var(--primary-blue);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .data-stat {
                font-size: 1.8rem;
            }
        }
