:root {
  /* Mawove Dark Palette */
  --background: #0a0a0c;
  --foreground: #ffffff;
  --primary: #7d53ff;
  --primary-foreground: #ffffff;
  --accent: #b6ff00;
  --accent-foreground: #000000;
  --surface: #161618;
  --muted: #27272a;
  --border: #3f3f46;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Outfit', 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animations */
@keyframes accordion-down {
  from { height: 0; }
  to { height: var(--radix-accordion-content-height); }
}

@keyframes accordion-up {
  from { height: var(--radix-accordion-content-height); }
  to { height: 0; }
}

.animate-accordion-down {
  animation: accordion-down 0.2s ease-out;
}
.animate-accordion-up {
  animation: accordion-up 0.2s ease-out;
}

/* Custom UI Animations */
@keyframes float {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-15px) scale(1.02); }
  100% { transform: translateY(0px) scale(1); }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float-slow {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.animate-float-slow {
  animation: float-slow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(182, 255, 0, 0.7); }
  50% { box-shadow: 0 0 25px 15px rgba(182, 255, 0, 0); }
}
.animate-pulse-glow {
  animation: pulse-glow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes wobble-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.03) rotate(-3deg); }
  50% { transform: scale(1) rotate(0deg); }
  75% { transform: scale(1.03) rotate(3deg); }
}
.animate-wobble-pulse {
  animation: wobble-pulse 6s ease-in-out infinite;
}

@keyframes active-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.15; }
}
.animate-active-pulse {
  animation: active-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
