/* Critical CSS - Inlined for performance */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .wiki-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }
        
        .nav-active {
            border-bottom: 3px solid #1e8c45;
            font-weight: 600;
        }
        
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }
        
        .section-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .section-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #1e8c45 0%, #2d6d32 100%);
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 140, 69, 0.4);
        }
        
        .highlight {
            background: linear-gradient(120deg, #ffd70020 0%, #ffd70020 100%);
            border-left: 4px solid #ffd700;
        }
        
        @media (max-width: 768px) {
            .mobile-hidden {
                display: none;
            }
            
            .mobile-menu {
                transition: all 0.3s ease;
            }
        }
        
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        /* Print styles */
        @media print {
            .no-print {
                display: none;
            }
        }
        
        /* Accessibility improvements */
        :focus {
            outline: 3px solid #1e8c45;
            outline-offset: 2px;
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #1e8c45;
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #2d6d32;
        }

