.ghost-link {
  text-decoration: none;
  color: #fff;
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  transition: color 0.3s ease;
}

.ghost-link:hover {
  color: red;
}

.ghost {
  font-size: 30px;
  display: inline-block;
  animation: ghostFloat 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}

/* Animation de flottement */
@keyframes ghostFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

