:root {
            --primary-dark: #0a2e5c;
            --primary-blue: #1e4d8c;
            --accent-gold: #d4af37;
            --accent-green: #2ecc71;
            --light-bg: #f8f9fa;
            --dark-text: #333333;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
        }
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(to right, #fff, var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
            text-align: center;
            color: var(--primary-dark);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-gold);
            border-radius: 2px;
        }
        .card-hover {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .live-badge {
            position: absolute;
            top: 15px;
            right: -10px;
            background-color: #e74c3c;
            color: white;
            padding: 5px 15px;
            border-radius: 20px 4px 4px 20px;
            font-size: 0.8rem;
            font-weight: bold;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
            100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
        }
        .data-stat {
            border-left: 4px solid var(--accent-green);
            padding-left: 1rem;
            margin-bottom: 1.5rem;
        }
        .friendlink a.flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px;
            background-color: var(--light-bg);
            border-radius: 30px;
            color: var(--primary-blue);
            text-decoration: none;
            border: 1px solid #dee2e6;
            transition: all 0.3s;
        }
        .friendlink a.flink:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }
        footer a {
            text-decoration: none;
            color: #ccc;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .fixture-table tbody tr:hover {
            background-color: rgba(30, 77, 140, 0.05);
        }
        .analysis-box {
            border-radius: 10px;
            background: linear-gradient(to bottom right, #f8f9fa, #e9ecef);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            .hero-heading {
                font-size: 2rem;
            }
            .analysis-box {
                padding: 1.5rem;
            }
        }
