:root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #38b2ac;
            --light-color: #f7fafc;
            --dark-color: #2d3748;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Noto Sans SC', sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
        }
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
            position: relative;
        }
        .navbar-nav .nav-link:hover {
            color: white !important;
        }
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            left: 50%;
            bottom: 0;
            transition: all 0.3s ease;
        }
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        .hero {
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.8)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            position: relative;
        }
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            overflow: hidden;
            margin-bottom: 1.5rem;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        .card-header {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            border-bottom: none;
            padding: 1.2rem 1.5rem;
        }
        .card-body {
            padding: 1.8rem;
        }
        .live-score {
            background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
            color: white;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
        }
        .live-score h3 {
            color: white;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 0.8rem;
            display: inline-block;
        }
        .team-flag {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 1rem;
        }
        .score-display {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .data-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin-bottom: 1.5rem;
        }
        .data-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem;
            text-align: center;
            font-weight: 600;
        }
        .data-table td {
            padding: 1rem;
            border-bottom: 1px solid #e2e8f0;
            text-align: center;
        }
        .data-table tr:hover {
            background-color: rgba(56, 178, 172, 0.05);
        }
        .analysis-article {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 2.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        .analysis-article h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--accent-color);
        }
        .friendlink {
            background-color: #edf2f7;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .flink {
            display: inline-block;
            background-color: white;
            color: var(--primary-color);
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }
        footer {
            background-color: var(--dark-color);
            color: rgba(255, 255, 255, 0.85);
            padding: 3rem 0 1.5rem;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin-bottom: 0.8rem;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero {
                padding: 4rem 0;
            }
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .analysis-article {
                padding: 1.5rem;
            }
            .score-display {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .card-body {
                padding: 1.2rem;
            }
        }
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background-color: var(--secondary-color);
            bottom: -10px;
            left: 0;
        }
        .text-primary-custom {
            color: var(--primary-color) !important;
        }
        .bg-light-custom {
            background-color: var(--light-color) !important;
        }
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: #152642;
            border-color: #152642;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            display: block;
            margin-bottom: 0.5rem;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-fadeInUp {
            animation: fadeInUp 0.8s ease-out;
        }
        .prediction-chart {
            height: 200px;
            width: 100%;
            margin: 1.5rem 0;
            position: relative;
        }
        .chart-bar {
            display: inline-block;
            vertical-align: bottom;
            margin: 0 10px;
            text-align: center;
            position: relative;
        }
        .chart-value {
            height: 0;
            background-color: var(--accent-color);
            width: 40px;
            border-radius: 4px 4px 0 0;
            transition: height 1s ease-out;
        }
        .chart-label {
            margin-top: 10px;
            font-weight: 600;
            color: var(--dark-color);
        }
        .chart-percentage {
            position: absolute;
            top: -25px;
            left: 0;
            width: 100%;
            font-weight: 700;
            color: var(--primary-color);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            margin-bottom: 2rem;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 1.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -37px;
            top: 5px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
        .timeline-date {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
