/* Shiny Text Effect - Converted from React */

.shiny-text {
  display: inline-block;
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Easter Egg - Hidden Signature */
.hidden-signature {
  position: fixed;
  bottom: 10px;
  right: 20px;
  font-size: 0.7rem;
  opacity: 0.15;
  transition: opacity 0.3s ease;
  z-index: 9999;
  pointer-events: none;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hidden-signature:hover {
  opacity: 1;
}

/* Alternative: Footer signature */
.footer-signature {
  text-align: center;
  font-size: 0.65rem;
  opacity: 0.2;
  margin-top: 10px;
  transition: opacity 0.3s ease;
}

.footer-signature:hover {
  opacity: 0.8;
}
