Skip to content
document.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('.emoji-item').forEach(item => {
item.addEventListener('click', function() {
const emoji = this.dataset.emoji;
navigator.clipboard.writeText(emoji).then(() => {
this.style.backgroundColor = '#e3f2fd';
setTimeout(() => {
this.style.backgroundColor = '';
}, 500);
});
});
});
});