.nomes-lista {
  list-style: none;
  padding-left: 0;
}

.ffmania-nome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  margin-bottom: 10px;
  background: #0f0f0f;
  border-left: 4px solid #f49d16;
  border-radius: 8px;
  color: #ddd;
}

.ffmania-copy-btn {
  background: transparent;
  border: none;
  color: #f49d16;
  cursor: pointer;
  font-size: 16px;
}

.ffmania-copy-btn:hover {
  opacity: .7;
}

.copy-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.95);
  background: #0f0f0f;
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border-left: 5px solid #f49d16;
  box-shadow:
    0 20px 45px rgba(0,0,0,.5),
    0 0 0 1px rgba(244,157,22,.15);
  opacity: 0;
  transition: all .25s ease;
  z-index: 9999;
  pointer-events: none;
}

.copy-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.copy-icon {
  color: #22c55e;
  margin-right: 8px;
}