:root {
            --primary-blue: #0d2d5c;
            --secondary-gold: #d4af37;
            --accent-red: #c8102e;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.8;
            overflow-x: hidden;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 45, 92, 0.9), rgba(13, 45, 92, 0.7)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 8rem 0;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-blue) !important;
            font-size: 1.5rem;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-gray) !important;
            margin: 0 0.5rem;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent-red) !important;
        }
        .nav-link:hover:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 10%;
            width: 80%;
            height: 2px;
            background-color: var(--accent-red);
            transition: all 0.3s;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            color: var(--primary-blue);
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-gold);
            border-radius: 2px;
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .live-score-board {
            background: linear-gradient(135deg, var(--primary-blue), #1a4396);
            color: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(13, 45, 92, 0.3);
            margin-bottom: 3rem;
        }
        .team-flag {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border-radius: 50%;
            background-color: white;
            padding: 5px;
            box-shadow: 0 0 10px rgba(0,0,0,0.2);
        }
        .score-display {
            font-size: 4rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            color: var(--secondary-gold);
            line-height: 1;
        }
        .stat-box {
            background-color: var(--light-gray);
            border-left: 5px solid var(--accent-red);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin-bottom: 1.5rem;
            height: 100%;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: block;
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--secondary-gold);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
            padding-left: 1.5rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -10px;
            top: 8px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--accent-red);
            border: 4px solid white;
            box-shadow: 0 0 0 3px var(--secondary-gold);
        }
        .analysis-tag {
            display: inline-block;
            background-color: #e9ecef;
            color: var(--dark-gray);
            padding: 0.3rem 1rem;
            border-radius: 50px;
            margin: 0.3rem;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .analysis-tag:hover {
            background-color: var(--accent-red);
            color: white;
            transform: scale(1.05);
        }
        .footer {
            background-color: var(--primary-blue);
            color: #ccc;
            padding-top: 3rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .friendlink {
            background-color: #f8f9fa;
            padding: 3rem 0;
        }
        .flink {
            display: inline-block;
            background-color: white;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            color: var(--dark-gray);
            text-decoration: none !important;
            transition: all 0.3s;
            font-weight: 500;
        }
        .flink:hover {
            background-color: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
            transform: translateY(-3px);
        }
        .btn-custom {
            background-color: var(--accent-red);
            color: white;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
        }
        .btn-custom:hover {
            background-color: #a00d26;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(200, 16, 46, 0.4);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .score-display {
                font-size: 3rem;
            }
            .team-flag {
                width: 60px;
                height: 60px;
            }
        }
