body {
  font-family: 'Inter', sans-serif;
}

.fade-in {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeIn 1s cubic-bezier(0.22,1,0.36,1) forwards;
}

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
  0% { background-position:0% 50%; }
  50% { background-position:100% 50%; }
  100% { background-position:0% 50%; }
}

.gradient-text {
  background: linear-gradient(270deg,#ff0080,#7928ca,#ff0080);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.05);
}

.email-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ec4899;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.email-btn::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 14px;
  background-color: white;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
}

.email-btn::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 7px solid white;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-9px);
  z-index: 2;
}

.email-btn:hover {
  transform: translateY(-2px) scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in, .gradient-text, .email-btn {
    animation: none;
    transform: none;
    opacity: 1;
  }
}
