/* Critical CSS - Inlined for performance */
        :root {
            --primary-color: #1d4ed8;
            --secondary-color: #0ea5e9;
            --accent-color: #f59e0b;
            --wiki-bg: #f8f9fa;
            --wiki-border: #a2a9b1;
            --wiki-sidebar: #f6f6f6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #202122;
            background-color: var(--wiki-bg);
        }
        
        .wiki-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .content-section {
            padding: 1.5rem;
            border-bottom: 1px solid var(--wiki-border);
        }
        
        h1, h2, h3, h4 {
            color: #000;
            font-weight: 400;
            border-bottom: 1px solid var(--wiki-border);
            padding-bottom: 0.25rem;
        }
        
        h1 {
            font-size: 1.8rem;
            border-bottom: 1px solid var(--wiki-border);
        }
        
        h2 {
            font-size: 1.5rem;
            margin-top: 1.5rem;
        }
        
        h3 {
            font-size: 1.2rem;
            margin-top: 1.2rem;
        }
        
        .infobox {
            background: var(--wiki-sidebar);
            border: 1px solid var(--wiki-border);
            padding: 1rem;
            margin: 1rem 0;
            float: right;
            width: 300px;
            margin-left: 1.5rem;
        }
        
        @media (max-width: 768px) {
            .infobox {
                float: none;
                width: 100%;
                margin-left: 0;
            }
            
            .hamburger-menu {
                display: block;
            }
            
            .nav-menu {
                display: none;
            }
            
            .nav-menu.active {
                display: flex;
                flex-direction: column;
            }
        }
        
        /* Mobile responsive adjustments */
        @media (max-width: 640px) {
            .content-section {
                padding: 1rem;
            }
            
            h1 {
                font-size: 1.5rem;
            }
            
            h2 {
                font-size: 1.3rem;
            }
            
            .btn {
                min-height: 44px;
                min-width: 44px;
                padding: 12px;
            }
        }
        
        /* Interaction elements */
        .btn {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--primary-color);
            color: white;
            border-radius: 4px;
            text-decoration: none;
            transition: background 0.2s;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }
        
        .btn:hover {
            background: #1e40af;
        }
        
        .interactive-element {
            min-height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* To top button */
        .to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 100;
            background: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .to-top.visible {
            opacity: 1;
        }
        
        /* Social share buttons */
        .social-share {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        
        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
        }
        
        .share-facebook { background: #3b5998; }
        .share-twitter { background: #1da1f2; }
        .share-reddit { background: #ff4500; }
        .share-whatsapp { background: #25d366; }
        
        /* Table styling */
        .wiki-table {
            border-collapse: collapse;
            width: 100%;
            margin: 1rem 0;
        }
        
        .wiki-table th, .wiki-table td {
            border: 1px solid var(--wiki-border);
            padding: 0.5rem;
            text-align: left;
        }
        
        .wiki-table th {
            background: var(--wiki-sidebar);
            font-weight: 600;
        }
        
        /* Comment section */
        .comment {
            border: 1px solid var(--wiki-border);
            padding: 1rem;
            margin: 1rem 0;
            background: white;
        }
        
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: #54595d;
        }
        
        /* Rating stars */
        .rating-stars {
            display: flex;
            direction: ltr;
        }
        
        .rating-stars input {
            display: none;
        }
        
        .rating-stars label {
            cursor: pointer;
            font-size: 1.5rem;
            color: #ddd;
            transition: color 0.2s;
        }
        
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #ffc107;
        }
        
        /* Lazy loading for images */
        img.lazy {
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        img.loaded {
            opacity: 1;
        }
        
        /* Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

