body{
font-family:Arial;
margin:0;
background:#f5f5f5;
}

header{
background:#fff;
padding:20px;
text-align:center;
box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

#search{
width:90%;
max-width:500px;
padding:12px;
font-size:16px;
border:1px solid #ccc;
border-radius:6px;
margin-top:10px;
}

.emoji-group{
padding:20px;
}

.emoji-title{
margin-bottom:15px;
}

.emoji-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(80px,1fr));
gap:20px;
}

.emoji{
font-size:34px;
padding:15px;
background:#fff;
border-radius:8px;
text-align:center;
cursor:pointer;
transition:0.2s;
}

.emoji:hover{
background:#eee;
}

.copy-msg{
position:fixed;
bottom:30px;
left:50%;
transform:translateX(-50%);
background:#000;
color:#fff;
padding:10px 20px;
border-radius:6px;
font-size:14px;
z-index:9999;
}