:root {
            --primary-color: #0a3d62;
            --secondary-color: #079992;
            --accent-color: #fdcb6e;
            --dark-color: #2d3436;
            --light-color: #f5f6fa;
            --success-color: #00b894;
            --warning-color: #e17055;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        a {
            text-decoration: none;
            color: var(--secondary-color);
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--primary-color);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 600;
            padding: 0.5rem 1rem !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(7, 153, 146, 0.8)), url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2067&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            text-align: center;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-header {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 1rem 1.5rem;
            border-bottom: none;
        }
        .match-prediction-card {
            background: linear-gradient(135deg, #0a3d62, #079992);
            color: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(10, 61, 98, 0.3);
        }
        .team-logo {
            width: 100px;
            height: 100px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            font-size: 3rem;
            color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .team-name {
            font-weight: 700;
            font-size: 1.5rem;
            margin-top: 1rem;
            text-align: center;
        }
        .vs-text {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent-color);
            text-align: center;
            margin: 0 1rem;
        }
        .prediction-result {
            background-color: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 2rem;
        }
        .probability-bar {
            height: 20px;
            background-color: rgba(255,255,255,0.2);
            border-radius: 10px;
            overflow: hidden;
            margin: 1rem 0;
        }
        .probability-fill {
            height: 100%;
            border-radius: 10px;
            background-color: var(--accent-color);
            transition: width 1.5s ease-in-out;
        }
        .live-score {
            background-color: var(--warning-color);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            display: inline-block;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(225, 112, 85, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(225, 112, 85, 0); }
            100% { box-shadow: 0 0 0 0 rgba(225, 112, 85, 0); }
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .stat-card {
            background-color: white;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-weight: 600;
            color: var(--dark-color);
            font-size: 1rem;
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--secondary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
            padding-left: 2rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -1rem;
            top: 0.5rem;
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
            background-color: var(--secondary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #ddd;
        }
        .footer a:hover {
            color: white;
        }
        .copyright {
            background-color: rgba(0,0,0,0.2);
            padding: 1.5rem 0;
            margin-top: 3rem;
        }
        .friendlink-section {
            background-color: #f1f2f6;
            padding: 3rem 0;
        }
        .flink {
            display: inline-block;
            background-color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            margin: 0.5rem;
            color: var(--dark-color);
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .form-control {
            border-radius: 10px;
            padding: 0.8rem 1.2rem;
            border: 1px solid #ddd;
        }
        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(7, 153, 146, 0.25);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            border-radius: 10px;
            padding: 0.8rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #09507a;
            border-color: #09507a;
            transform: translateY(-3px);
        }
        .btn-secondary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            border-radius: 10px;
            padding: 0.8rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background-color: #06867e;
            border-color: #06867e;
            transform: translateY(-3px);
        }
        .img-fluid {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .table {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .table thead th {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem;
        }
        .table tbody tr:hover {
            background-color: rgba(7, 153, 146, 0.05);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .team-logo {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
            .vs-text {
                font-size: 2rem;
                margin: 1rem 0;
            }
        }
        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .section-padding {
                padding: 2rem 0;
            }
            .flink {
                display: block;
                text-align: center;
                margin: 0.5rem 0;
            }
        }
