:root {
            --primary-blue: #1a3e72;
            --secondary-orange: #f97316;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.8;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-blue) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 62, 114, 0.9), rgba(26, 62, 114, 0.8)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 6rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary-orange);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary-orange);
            line-height: 1;
        }
        .btn-custom {
            background-color: var(--secondary-orange);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-custom:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }
        .live-badge {
            animation: pulse 2s infinite;
            border-radius: 50px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .fixture-card {
            border-left: 5px solid var(--secondary-orange);
        }
        footer {
            background-color: var(--primary-blue);
            color: #e9ecef;
        }
        .friendlink a.flink {
            color: var(--secondary-orange);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border: 1px solid #dee2e6;
            border-radius: 5px;
            margin: 0.25rem;
            display: inline-block;
            transition: all 0.3s;
        }
        .friendlink a.flink:hover {
            background-color: var(--secondary-orange);
            color: white;
            border-color: var(--secondary-orange);
        }
        .analysis-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        .contact-info li {
            margin-bottom: 1rem;
        }
        .contact-info i {
            color: var(--secondary-orange);
            width: 2rem;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
