.emoji-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.emoji {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;
  /* EMOJİLER BÜYÜDÜ */
  height: 56px;
  /* KUTU NET */
  border-radius: 8px;

  border: 1px solid rgba(0, 0, 0, 0.15);
  /* KUTU BELİRGİN */
  background: rgba(0, 0, 0, 0.03);

  cursor: pointer;
  user-select: none;

  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.emoji:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(1.08);
}

.emoji.copied {
  background: rgba(0, 150, 136, 0.25);
  box-shadow: 0 0 0 2px rgba(0, 150, 136, 0.35);
  position: relative;
}

.emoji.copied::after {
  content: "Copied!";
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);

  background: rgba(0, 150, 136, 0.95);
  color: white;

  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;

  pointer-events: none;

  animation: fadeInOut 0.9s ease-in-out;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
  }

  20% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  80% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-4px);
  }
}