body {
  font-family: "Inter", sans-serif;
}

.gradient-text {
  background: linear-gradient(45deg, #54a7ff, #228b22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.morph-gradient {
  background: linear-gradient(45deg, #54a7ff, #228b22);
  background-size: 300% 300%;
  animation: morphGradient 6s ease-in-out infinite;
}

@keyframes morphGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.glass-effect {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
