:root {
            --primary-blue: #1a237e;
            --secondary-green: #00695c;
            --accent-red: #c62828;
            --light-bg: #f5f7fa;
            --dark-text: #2c3e50;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            background-color: #fff;
            line-height: 1.8;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.6rem;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(0, 105, 92, 0.8)), url('https://images.unsplash.com/photo-1639322537228-f710d846310a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            margin-bottom: 3rem;
        }
        .stats-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            height: 100%;
        }
        .stats-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-header-custom {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
            color: white;
            padding: 1.2rem;
            font-weight: 700;
        }
        .match-analysis {
            border-left: 5px solid var(--accent-red);
            background-color: var(--light-bg);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .live-badge {
            animation: pulse 2s infinite;
            display: inline-block;
            margin-left: 10px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        .table-hover tbody tr:hover {
            background-color: rgba(26, 35, 126, 0.05);
        }
        .friendlink a.flink {
            display: inline-block;
            background: var(--light-bg);
            padding: 0.6rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            color: var(--dark-text);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
            font-weight: 500;
        }
        .friendlink a.flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
            border-color: var(--primary-blue);
        }
        footer {
            background-color: #1c2331;
            color: #bbb;
            padding-top: 3rem;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .icon-list li {
            margin-bottom: 0.8rem;
        }
        .icon-list i {
            color: var(--secondary-green);
            width: 24px;
        }
        .img-fluid-rounded {
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
            font-weight: 800;
            color: var(--primary-blue);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-green));
            border-radius: 2px;
        }
        .text-center .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
                text-align: center;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .stats-card {
                margin-bottom: 1.5rem;
            }
        }
