:root {
            --primary-color: #0d3b66;
            --secondary-color: #f4a261;
            --accent-color: #e76f51;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --success-color: #2a9d8f;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 59, 102, 0.85), rgba(13, 59, 102, 0.9)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            margin-bottom: 3rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
            text-align: center;
            color: var(--primary-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .stats-card {
            background: linear-gradient(135deg, var(--primary-color), #1d4f8a);
            color: white;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            height: 100%;
        }
        .match-card {
            border-left: 5px solid var(--accent-color);
            transition: all 0.3s;
        }
        .match-card:hover {
            border-left-width: 8px;
        }
        .btn-custom {
            background-color: var(--accent-color);
            color: white;
            border-radius: 30px;
            padding: 10px 30px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
        }
        .btn-custom:hover {
            background-color: #d65c3e;
            color: white;
            transform: scale(1.05);
        }
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding-top: 3rem;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-links a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        .flink {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.05);
            color: #ddd;
            padding: 8px 16px;
            margin: 5px 10px 5px 0;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .flink:hover {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            border-color: var(--secondary-color);
        }
        .live-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #dc3545;
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: bold;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .analysis-box {
            background-color: #f8f9fa;
            border-left: 4px solid var(--success-color);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin-bottom: 1.5rem;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(13, 59, 102, 0.05);
        }
        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(244, 162, 97, 0.25);
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--secondary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -2.3rem;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--primary-color);
            border: 3px solid var(--secondary-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
