:root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #38b2ac;
            --text-dark: #2d3748;
            --text-light: #718096;
            --bg-light: #f7fafc;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYwMiI+PHBhdGggZD0iTTAgMGgxMDAwdjEwMDBIMHoiLz48cGF0aCBkPSJNNTAgNTAwYzAtMjQ4IDIwMi00NTAgNDUwLTQ1MHM0NTAgMjAyIDQ1MCA0NTAtMjAyIDQ1MC00NTAgNDUwLTQ1MC0yMDItNDUwLTQ1MHoiLz48L2c+PC9zdmc+') no-repeat;
            background-size: cover;
            opacity: 0.05;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            border: 1px solid #e2e8f0;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            border-color: var(--accent-color);
        }
        .feature-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 3rem;
            position: relative;
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .live-match-card {
            background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
            color: white;
            border-radius: 16px;
            overflow: hidden;
            transition: var(--transition);
        }
        .live-match-card:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .live-badge {
            background: var(--secondary-color);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .team-logo {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary-color);
            margin: 0 auto;
        }
        .team-name {
            font-weight: 700;
            font-size: 1.5rem;
            margin-top: 1rem;
        }
        .match-score {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .prediction-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            border-left: 5px solid var(--accent-color);
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        .prediction-percentage {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .stat-item {
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
        }
        .stat-item:hover {
            background: #e2e8f0;
            transform: translateY(-5px);
        }
        .stat-value {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        .stat-label {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        .analysis-content {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-top: 2rem;
        }
        .flink {
            display: inline-block;
            background: var(--bg-light);
            color: var(--text-dark);
            padding: 12px 24px;
            border-radius: 8px;
            margin: 8px;
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #cbd5e0;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .contact-info {
            background: #2d3748;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
        }
        .btn-primary-custom {
            background: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background: #c53030;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(229, 62, 62, 0.2);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            margin-top: 2rem;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--accent-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
            padding-left: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
        .breadcrumb-custom {
            background: transparent;
            padding: 0;
        }
        .breadcrumb-custom .breadcrumb-item.active {
            color: var(--secondary-color);
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            padding: 8px 15px;
            margin: 0 5px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .navbar-nav .nav-link:hover {
            background: rgba(26, 54, 93, 0.1);
            color: var(--primary-color);
        }
        .navbar-nav .nav-link.active {
            background: var(--primary-color);
            color: white;
        }
        @media (max-width: 992px) {
            .navbar-nav {
                padding: 1rem 0;
            }
            .navbar-nav .nav-link {
                margin: 5px 0;
            }
        }
        .content-section {
            padding: 100px 0;
        }
        .content-section:nth-child(even) {
            background: var(--bg-light);
        }
        .match-highlight {
            background: linear-gradient(135deg, #f6f6f6 0%, #ffffff 100%);
            border-radius: 16px;
            padding: 2rem;
            border: 2px solid #e2e8f0;
        }
        .player-card {
            text-align: center;
            padding: 1.5rem;
            border-radius: 12px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .player-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .player-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary-color);
        }
        .seo-content {
            line-height: 1.8;
            font-size: 1.1rem;
            color: var(--text-dark);
        }
        .seo-content h3 {
            color: var(--primary-color);
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        .seo-content p {
            margin-bottom: 1.5rem;
        }
        .seo-content ul {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .seo-content li {
            margin-bottom: 0.5rem;
        }
