body {
  font-family: "Inter", sans-serif;
}
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.typing-cursor::after {
  content: "|";
  animation: blink 1s infinite;
}
@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
.particle {
  position: absolute;
  background: #6366f1;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}
.skill-card:hover {
  transform: translateY(-5px) scale(1.02);
}
.project-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card:hover {
  transform: translateY(-8px);
}
