:root {
            --primary-color: #1a365d;
            --secondary-color: #d4af37;
            --accent-color: #c53030;
            --light-color: #f8f9fa;
            --dark-color: #2d3748;
            --success-color: #38a169;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #f5f7fa;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--secondary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: var(--transition);
            padding: 0.5rem 1rem !important;
            border-radius: 4px;
        }
        .nav-link:hover {
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.8)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            margin-bottom: 3rem;
        }
        .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
        }
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
            position: relative;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            overflow: hidden;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        .card-header {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            border-bottom: none;
            padding: 1rem 1.25rem;
        }
        .prediction-badge {
            display: inline-block;
            padding: 0.35rem 0.75rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .badge-win {
            background-color: rgba(56, 161, 105, 0.15);
            color: var(--success-color);
        }
        .badge-loss {
            background-color: rgba(197, 48, 48, 0.15);
            color: var(--accent-color);
        }
        .badge-draw {
            background-color: rgba(212, 175, 55, 0.15);
            color: #b8860b;
        }
        .match-card {
            border-left: 4px solid var(--secondary-color);
        }
        .live-indicator {
            display: inline-block;
            width: 10px;
            height: 10px;
            background-color: #f56565;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
            margin-right: 5px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .stats-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(26, 54, 93, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        .contact-info li {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
        }
        .contact-info i {
            color: var(--secondary-color);
            margin-right: 10px;
            margin-top: 5px;
            flex-shrink: 0;
        }
        .friendlink a.flink {
            display: inline-block;
            background-color: white;
            padding: 0.5rem 1.2rem;
            margin: 0.3rem;
            border-radius: 50px;
            color: #555;
            text-decoration: none;
            border: 1px solid #e2e8f0;
            transition: var(--transition);
            font-size: 0.9rem;
        }
        .friendlink a.flink:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }
        footer {
            background-color: var(--primary-color);
            color: white;
        }
        footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        footer a:hover {
            color: var(--secondary-color);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            font-size: 0.9rem;
        }
        .analysis-chart {
            height: 250px;
            background: linear-gradient(to right, var(--secondary-color) 65%, #e2e8f0 35%);
            border-radius: 8px;
            position: relative;
            margin: 1.5rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.2rem;
        }
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.6rem 1.8rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: #142850;
            border-color: #142850;
            transform: translateY(-2px);
        }
        .btn-secondary-custom {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: #333;
            padding: 0.6rem 1.8rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-secondary-custom:hover {
            background-color: #c19b2a;
            border-color: #c19b2a;
            color: #333;
            transform: translateY(-2px);
        }
        .table-custom {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .table-custom thead th {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem;
        }
        .table-custom tbody td {
            padding: 1rem;
            vertical-align: middle;
            border-color: #f1f5f9;
        }
        .table-custom tbody tr:hover {
            background-color: rgba(26, 54, 93, 0.03);
        }
        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
        }
        .breadcrumb {
            background-color: rgba(26, 54, 93, 0.05);
            border-radius: 50px;
            padding: 0.5rem 1rem;
        }
        .breadcrumb-item.active {
            color: var(--primary-color);
            font-weight: 500;
        }
        .progress-custom {
            height: 8px;
            border-radius: 4px;
            margin: 0.5rem 0;
        }
        .progress-custom .progress-bar {
            background-color: var(--secondary-color);
        }
