#flying-saucer {
  position: fixed;
  bottom: 0;
  left: 0;
  transform: translate(-100%, 100%);
  transition: transform 0.5s ease-out, opacity 1s ease-out;
  display: none;
  z-index: 11000; /* Ensure it's above other elements */
}

/* Hidden link */
#hidden-link {
  text-decoration: none;
  /* display: none; */
  cursor: pointer;
  color: unset;
}

#hidden-link a, a:link, a:visited, a:active {
  text-decoration: none;
}

