/* Gooey/Liquid Text Morphing Animation */

.gooey-wrapper {
  display: block;
  text-align: center;
  transform: translateX(-50px);
}

#gooey-container {
  position: relative;
  display: inline-block;
  filter: url(#gooey-threshold) blur(0.6px);
  min-height: 1.2em;
  width: auto;
  text-align: center;
}

#gooey-text1,
#gooey-text2 {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: inline-block;
  font-weight: 700;
  user-select: none;
  white-space: nowrap;
  font-size: inherit;
  line-height: 1;
  background: linear-gradient(135deg, #0EA5E9 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  #gooey-container {
    filter: none;
  }

  #gooey-text2 {
    display: none;
  }
}
