/* Critical CSS - Inlined for performance */
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Lato, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #202122;
            background-color: #f6f6f6;
        }
        
        .wiki-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        .wiki-header {
            background: linear-gradient(135deg, #1e8e3e 0%, #0d652d 100%);
            color: white;
            padding: 1rem 0;
        }
        
        .wiki-nav a {
            transition: background-color 0.2s;
        }
        
        .wiki-nav a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        
        .section-card {
            border: 1px solid #a7d7f9;
            border-radius: 3px;
            background-color: #f8f9fa;
            margin-bottom: 1.5rem;
        }
        
        .section-title {
            background-color: #1e8e3e;
            color: white;
            padding: 0.5rem 1rem;
            border-bottom: 1px solid #a7d7f9;
        }
        
        .content-box {
            padding: 1rem;
        }
        
        .btn-primary {
            background-color: #1e8e3e;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 3px;
            transition: background-color 0.2s;
        }
        
        .btn-primary:hover {
            background-color: #0d652d;
        }
        
        .table-of-contents {
            background-color: #f8f9fa;
            border: 1px solid #a7d7f9;
            padding: 1rem;
            border-radius: 3px;
        }
        
        .toc-list {
            column-count: 2;
            column-gap: 2rem;
        }
        
        .game-feature {
            border-left: 4px solid #1e8e3e;
            padding-left: 1rem;
            margin: 1.5rem 0;
        }
        
        .character-card {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 1rem;
            margin: 1rem 0;
            background: white;
        }
        
        .skill-bar {
            height: 8px;
            background-color: #e0e0e0;
            border-radius: 4px;
            margin: 5px 0;
            overflow: hidden;
        }
        
        .skill-fill {
            height: 100%;
            background-color: #1e8e3e;
        }
        
        .faq-item {
            border-bottom: 1px solid #eee;
            padding: 1rem 0;
        }
        
        .update-log {
            background-color: #e6f4ea;
            border-left: 4px solid #1e8e3e;
            padding: 1rem;
            margin: 1rem 0;
        }
        
        .comment-box {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 1rem;
            margin: 1rem 0;
            background: white;
        }
        
        .rating-stars {
            color: #ffc107;
            font-size: 1.5rem;
        }
        
        .share-btn {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: #f0f0f0;
            transition: all 0.2s;
        }
        
        .share-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        /* Mobile menu */
        .mobile-menu {
            display: none;
        }
        
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            .desktop-nav {
                display: none;
            }
            
            .toc-list {
                column-count: 1;
            }
            
            .mobile-nav-active {
                display: block;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: white;
                z-index: 1000;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
        }
        
        /* Print styles */
        @media print {
            .no-print {
                display: none;
            }
            
            body {
                background: white;
                font-size: 12pt;
            }
            
            .wiki-container {
                box-shadow: none;
            }
        }
        
        /* Focus styles for accessibility */
        a:focus, button:focus, input:focus {
            outline: 2px solid #1e8e3e;
            outline-offset: 2px;
        }
        
        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: #1e8e3e;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1000;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        /* Head Soccer specific styles */
        .character-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 3px solid #1e8e3e;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-right: 1rem;
        }
        
        .match-type {
            background: linear-gradient(135deg, #1e8e3e 0%, #34a853 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            display: inline-block;
        }
        
        .tournament-badge {
            background-color: #fbbc04;
            color: #202122;
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.875rem;
            font-weight: bold;
            display: inline-block;
        }
        
        .coin-display {
            background-color: #fbbc04;
            color: #8a5c00;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
        }
        
        .special-move {
            border: 2px dashed #1e8e3e;
            background-color: #e6f4ea;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
        }

