:root {
            --primary: #0d47a1;
            --secondary: #b71c1c;
            --accent: #ffab00;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #2e7d32;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.85), rgba(183, 28, 28, 0.8)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 6rem 0;
            border-radius: 0 0 2rem 2rem;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
        }
        .badge-live {
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .fixture-card {
            border-left: 5px solid var(--primary);
            border-radius: 8px;
        }
        .analysis-box {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow);
            border-top: 6px solid var(--accent);
        }
        .footer {
            background: linear-gradient(135deg, var(--dark) 0%, #0a0a0a 100%);
            color: #ccc;
            padding-top: 3rem;
            margin-top: 4rem;
        }
        .flink a {
            color: #ddd;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            border: 1px solid #555;
            transition: all 0.3s;
            display: inline-block;
            margin: 0.3rem;
        }
        .flink a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }
        .table-responsive {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .btn-primary-custom {
            background: linear-gradient(90deg, var(--primary), #1e88e5);
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        .btn-primary-custom:hover {
            background: linear-gradient(90deg, #0b3d91, #1976d2);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        .mobile-adjust {
            padding-left: 1rem;
            padding-right: 1rem;
        }
        @media (min-width: 768px) {
            .mobile-adjust {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }
        .seo-content {
            line-height: 1.8;
            font-size: 1.05rem;
            text-align: justify;
        }
        .seo-content h3 {
            color: var(--primary);
            margin-top: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
