body {
    font-family: 'Poppins', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

.gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-accent {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.text-shadow {
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.animate-fadeInUp {
  animation: fadeInUp 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.6); }
  60% { box-shadow: 0 0 0 25px rgba(102, 126, 234, 0.0); }
  100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.0); }
}

.pulse-highlight {
  animation: pulseGlow 1200ms ease-out 1;
}

.cta-press {
  transform: translateY(0);
  transition: transform 200ms ease, filter 250ms ease;
}

.cta-press:active {
  transform: translateY(2px) scale(0.97);
  filter: brightness(0.95);
}

/* Glass morphism effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Neon glow effect */
.neon-glow {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5),
                0 0 40px rgba(102, 126, 234, 0.3),
                0 0 60px rgba(102, 126, 234, 0.2);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0f3460;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}
