:root {
            --primary-dark: #0a2e5c;
            --primary-blue: #1e4d8c;
            --secondary-gold: #d4af37;
            --accent-red: #c8102e;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-dark) !important;
        }
        .navbar-brand span {
            color: var(--accent-red);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            color: white;
            padding: 6rem 0 4rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/>');
            background-size: cover;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary-gold);
        }
        .text-center .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: var(--transition);
            border: none;
            box-shadow: var(--shadow);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }
        .team-flag {
            width: 60px;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }
        .live-badge {
            animation: pulse 2s infinite;
            border-radius: 50px;
            padding: 0.25rem 1rem;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(200, 16, 46, 0); }
            100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); }
        }
        .data-stat {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            border-left: 5px solid var(--primary-blue);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            background: var(--light-bg);
            border-radius: 50px;
            color: var(--primary-dark);
            text-decoration: none;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .flink:hover {
            background: white;
            border-color: var(--secondary-gold);
            color: var(--primary-dark);
            transform: scale(1.05);
        }
        .footer {
            background: var(--primary-dark);
            color: rgba(255,255,255,0.85);
            padding-top: 3rem;
        }
        .footer a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: var(--secondary-gold);
            padding-left: 5px;
        }
        .btn-custom {
            background: linear-gradient(to right, var(--primary-blue), var(--primary-dark));
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-custom:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(30, 77, 140, 0.3);
        }
        .analysis-box {
            border-left: 4px solid var(--secondary-gold);
            background-color: #fffdf6;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin-bottom: 1.5rem;
        }
        .sticky-sidebar {
            position: sticky;
            top: 100px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0 2rem;
                text-align: center;
            }
            .section-title {
                font-size: 1.75rem;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
        .table-custom {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .table-custom thead th {
            background: var(--primary-dark);
            color: white;
            border: none;
            padding: 1rem;
        }
        .table-custom tbody tr:hover {
            background-color: rgba(30, 77, 140, 0.05);
        }
        .progress-custom {
            height: 10px;
            border-radius: 5px;
        }
        .progress-custom .progress-bar {
            background: linear-gradient(to right, var(--primary-blue), var(--accent-red));
        }
