@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #ab205f;
  }
}
.gradient-primary {
  background: linear-gradient(135deg, #ab205f 0%, #e8762e 50%, #f05459 100%);
}
.gradient-text {
  background: linear-gradient(135deg, #ab205f 0%, #e8762e 50%, #f05459 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-border {
  background: linear-gradient(135deg, #ab205f, #e8762e, #f05459);
  padding: 2px;
  border-radius: 1rem;
}
.gradient-border-inner {
  background: #1a1729;
  border-radius: calc(1rem - 2px);
}
.mesh-bg {
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(171, 32, 95, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(232, 118, 46, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 25%,
      rgba(240, 84, 89, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 25% 75%,
      rgba(171, 32, 95, 0.04) 0%,
      transparent 50%
    );
}
.glass-morphism {
  background: rgba(26, 23, 41, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.neo-card {
  background: linear-gradient(145deg, #1e1b2e, #16131f);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4),
    -10px -10px 20px rgba(255, 255, 255, 0.02);
}
.hover-lift {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(171, 32, 95, 0.2),
    0 0 0 1px rgba(171, 32, 95, 0.1);
}
.typing-demo {
  overflow: hidden;
  border-right: 0.15em solid #ab205f;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.15em;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.text-glow {
  text-shadow: 0 0 20px rgba(171, 32, 95, 0.5);
}
.perspective-card {
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.perspective-card:hover {
  transform: rotateY(10deg) rotateX(5deg);
}
.magnetic-hover {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.magnetic-hover:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ab205f, #e8762e, #f05459);
  transform-origin: left;
  z-index: 9999;
}
