/**
 * Visual Enhancements
 * Premium visual effects and animations for Orbvop
 * Designed with modern aesthetics, particle effects, and micro-interactions
 */

/* ========================================
   CSS Variables - Extended Color Palette
   ======================================== */
:root {
  /* Extended color palette */
  --orbvop-cyan: #06b6d4;
  --orbvop-cyan-glow: rgba(6, 182, 212, 0.5);
  --orbvop-amber: #f59e0b;
  --orbvop-amber-glow: rgba(245, 158, 11, 0.5);
  --orbvop-rose: #f43f5e;
  --orbvop-rose-glow: rgba(244, 63, 94, 0.5);
  --orbvop-emerald: #10b981;
  --orbvop-emerald-glow: rgba(16, 185, 129, 0.5);
  
  /* Glow intensities */
  --glow-sm: 0 0 20px;
  --glow-md: 0 0 40px;
  --glow-lg: 0 0 60px;
  --glow-xl: 0 0 100px;
  
  /* Animation timings */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-sine: cubic-bezier(0.37, 0, 0.63, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Depth layers */
  --z-background: -10;
  --z-ambient: -5;
  --z-base: 0;
  --z-content: 10;
  --z-overlay: 50;
  --z-modal: 100;
  --z-tooltip: 200;
}

/* ========================================
   Dynamic Background Effects
   ======================================== */

/* Aurora Borealis Effect */
.aurora-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: var(--z-ambient);
}

.aurora-bg::before,
.aurora-bg::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.15), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(168, 85, 247, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 45% at 50% 80%, rgba(236, 72, 153, 0.08), transparent 50%);
  animation: auroraFlow 20s ease-in-out infinite;
}

.aurora-bg::after {
  animation-delay: -10s;
  animation-duration: 25s;
  opacity: 0.7;
}

@keyframes auroraFlow {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(2%, 2%) rotate(2deg);
  }
  66% {
    transform: translate(-1%, 3%) rotate(-1deg);
  }
}

/* Nebula Effect */
.nebula-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-ambient);
  background:
    radial-gradient(600px 400px at 10% 20%, rgba(99, 102, 241, 0.2) 0%, transparent 60%),
    radial-gradient(500px 350px at 90% 10%, rgba(168, 85, 247, 0.15) 0%, transparent 55%),
    radial-gradient(450px 300px at 80% 80%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
    radial-gradient(400px 280px at 20% 90%, rgba(6, 182, 212, 0.1) 0%, transparent 45%);
  filter: blur(60px);
  animation: nebulaPulse 15s ease-in-out infinite;
}

@keyframes nebulaPulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* ========================================
   Advanced Particle Effects
   ======================================== */

/* Floating Orbs */
.floating-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: var(--z-ambient);
}

.floating-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat var(--duration, 20s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.floating-orbs .orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.6), rgba(168, 85, 247, 0.4));
  top: 10%;
  left: 10%;
  --duration: 25s;
}

.floating-orbs .orb-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.5), rgba(168, 85, 247, 0.3));
  top: 60%;
  right: 15%;
  --duration: 30s;
  --delay: -5s;
}

.floating-orbs .orb-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.5), rgba(99, 102, 241, 0.3));
  bottom: 20%;
  left: 30%;
  --duration: 22s;
  --delay: -10s;
}

.floating-orbs .orb-4 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.4), rgba(236, 72, 153, 0.3));
  top: 30%;
  right: 30%;
  --duration: 28s;
  --delay: -15s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(20px, 30px) scale(1.02);
  }
}

/* ========================================
   Light Sweep & Scan Effects
   ======================================== */

/* Diagonal Light Sweep */
.light-sweep {
  position: relative;
  overflow: hidden;
}

.light-sweep::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 55%,
    transparent 60%
  );
  animation: lightSweep 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lightSweep {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}

/* Horizontal Scan Line */
.scan-line {
  position: relative;
}

.scan-line::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(99, 102, 241, 0.5), 
    rgba(168, 85, 247, 0.5), 
    rgba(99, 102, 241, 0.5), 
    transparent
  );
  animation: scanLine 4s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes scanLine {
  0%, 100% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* ========================================
   Glow Effects
   ======================================== */

/* Primary Glow */
.glow-primary-soft {
  box-shadow: 
    0 0 20px rgba(99, 102, 241, 0.3),
    0 0 40px rgba(99, 102, 241, 0.2),
    0 0 60px rgba(99, 102, 241, 0.1);
}

.glow-primary-strong {
  box-shadow: 
    0 0 30px rgba(99, 102, 241, 0.5),
    0 0 60px rgba(99, 102, 241, 0.3),
    0 0 90px rgba(99, 102, 241, 0.2),
    inset 0 0 30px rgba(99, 102, 241, 0.1);
}

/* Multi-color Glow */
.glow-rainbow {
  animation: rainbowGlow 4s ease-in-out infinite;
}

@keyframes rainbowGlow {
  0%, 100% {
    box-shadow: 
      0 0 30px rgba(99, 102, 241, 0.4),
      0 0 60px rgba(99, 102, 241, 0.2);
  }
  33% {
    box-shadow: 
      0 0 30px rgba(168, 85, 247, 0.4),
      0 0 60px rgba(168, 85, 247, 0.2);
  }
  66% {
    box-shadow: 
      0 0 30px rgba(236, 72, 153, 0.4),
      0 0 60px rgba(236, 72, 153, 0.2);
  }
}

/* Pulsing Glow */
.glow-pulse {
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
  }
}

/* ========================================
   Border Effects
   ======================================== */

/* Animated Gradient Border */
.border-gradient-animated {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.95));
  border-radius: 16px;
}

body.app-theme-light .border-gradient-animated {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
}

.border-gradient-animated::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899, #6366f1);
  background-size: 300% 100%;
  animation: gradientRotate 4s linear infinite;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* Shimmer Border */
.border-shimmer {
  position: relative;
  overflow: hidden;
}

.border-shimmer::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, 
    rgba(99, 102, 241, 0.3),
    rgba(168, 85, 247, 0.5),
    rgba(236, 72, 153, 0.3),
    rgba(99, 102, 241, 0.3)
  );
  background-size: 200% 100%;
  animation: shimmerBorder 3s linear infinite;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes shimmerBorder {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ========================================
   Button Enhancements
   ======================================== */

/* Premium Button */
.btn-premium {
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out-expo);
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 10px 30px rgba(99, 102, 241, 0.3),
    0 0 0 1px rgba(99, 102, 241, 0.2);
}

.btn-premium:active {
  transform: translateY(0) scale(0.98);
}

/* Magnetic Button Effect */
.btn-magnetic {
  transition: transform 0.3s var(--ease-out-expo);
}

/* Ripple Button */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ========================================
   Card Enhancements
   ======================================== */

/* 3D Tilt Card */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.3s var(--ease-out-expo);
}

.card-3d:hover {
  transform: perspective(1000px) rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg)) translateZ(20px);
}

/* Glass Card with Enhanced Effects */
.card-glass-premium {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s var(--ease-out-expo);
}

.card-glass-premium:hover {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0.08) 100%
  );
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(99, 102, 241, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

/* Card with Spotlight Effect */
.card-spotlight {
  position: relative;
  overflow: hidden;
}

.card-spotlight::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card-spotlight:hover::before {
  opacity: 1;
}

/* ========================================
   Text Effects
   ======================================== */

/* Gradient Text with Animation */
.text-gradient-animated {
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899, #6366f1);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGradientShift 4s ease infinite;
}

@keyframes textGradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Shimmer Text */
.text-shimmer {
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.4) 0%, 
    rgba(255, 255, 255, 0.8) 50%, 
    rgba(255, 255, 255, 0.4) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Glitch Text Effect */
.text-glitch {
  position: relative;
}

.text-glitch::before,
.text-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.text-glitch::before {
  animation: glitch1 2s infinite linear alternate-reverse;
  color: #6366f1;
  z-index: -1;
}

.text-glitch::after {
  animation: glitch2 3s infinite linear alternate-reverse;
  color: #ec4899;
  z-index: -2;
}

@keyframes glitch1 {
  0%, 100% {
    clip-path: inset(0 0 95% 0);
    transform: translate(-2px, -2px);
  }
  20% {
    clip-path: inset(30% 0 50% 0);
    transform: translate(2px, 2px);
  }
  40% {
    clip-path: inset(80% 0 5% 0);
    transform: translate(-2px, 2px);
  }
  60% {
    clip-path: inset(10% 0 70% 0);
    transform: translate(2px, -2px);
  }
  80% {
    clip-path: inset(50% 0 30% 0);
    transform: translate(-2px, 2px);
  }
}

@keyframes glitch2 {
  0%, 100% {
    clip-path: inset(80% 0 5% 0);
    transform: translate(2px, 2px);
  }
  20% {
    clip-path: inset(10% 0 70% 0);
    transform: translate(-2px, -2px);
  }
  40% {
    clip-path: inset(30% 0 50% 0);
    transform: translate(2px, -2px);
  }
  60% {
    clip-path: inset(0 0 95% 0);
    transform: translate(-2px, 2px);
  }
  80% {
    clip-path: inset(50% 0 30% 0);
    transform: translate(2px, -2px);
  }
}

/* ========================================
   Loading & Progress Effects
   ======================================== */

/* Premium Progress Bar */
.progress-premium {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.progress-premium .progress-bar {
  position: relative;
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
  background-size: 200% 100%;
  border-radius: inherit;
  animation: progressGradient 2s linear infinite;
  transition: width 0.3s ease;
}

.progress-premium .progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: progressShine 1.5s ease-in-out infinite;
}

@keyframes progressGradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes progressShine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Spinner with Gradient */
.spinner-gradient {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, #6366f1, #a855f7, transparent);
  animation: spin 1s linear infinite;
  mask: radial-gradient(circle, transparent 60%, black 61%);
  -webkit-mask: radial-gradient(circle, transparent 60%, black 61%);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   Input Field Enhancements
   ======================================== */

/* Premium Input */
.input-premium {
  position: relative;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s var(--ease-out-expo);
}

.input-premium:focus-within {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 
    0 0 0 3px rgba(99, 102, 241, 0.1),
    0 10px 30px rgba(99, 102, 241, 0.1);
  background: rgba(15, 23, 42, 0.8);
}

body.app-theme-light .input-premium {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.12);
}

body.app-theme-light .input-premium:focus-within {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

/* Input with Glow on Focus */
.input-glow:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 
    0 0 20px rgba(99, 102, 241, 0.3),
    0 0 40px rgba(99, 102, 241, 0.1);
}

/* ========================================
   Scroll & Reveal Animations
   ======================================== */

/* Fade Up Reveal */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease-out-expo);
}

.reveal-fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Scale Reveal */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s var(--ease-out-expo);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
}

.stagger-children.revealed > * {
  animation: staggerFadeUp 0.5s var(--ease-out-expo) forwards;
}

.stagger-children.revealed > *:nth-child(1) { animation-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(3) { animation-delay: 0.15s; }
.stagger-children.revealed > *:nth-child(4) { animation-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(5) { animation-delay: 0.25s; }
.stagger-children.revealed > *:nth-child(6) { animation-delay: 0.3s; }

@keyframes staggerFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Hover Effects
   ======================================== */

/* Lift Effect */
.hover-lift {
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Glow on Hover */
.hover-glow-primary:hover {
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
}

/* Scale on Hover */
.hover-scale {
  transition: transform 0.3s var(--ease-out-expo);
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* ========================================
   Special Effects
   ======================================== */

/* Star Field Background */
.star-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.star-field .star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  opacity: var(--opacity, 0.5);
  animation: twinkle var(--duration, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
  0%, 100% {
    opacity: var(--opacity, 0.5);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Floating Particles */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: var(--size, 4px);
  height: var(--size, 4px);
  background: var(--color, rgba(99, 102, 241, 0.6));
  border-radius: 50%;
  animation: particleFloat var(--duration, 10s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: var(--opacity, 0.6);
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(var(--move-x, 20px), var(--move-y, -30px)) rotate(90deg);
  }
  50% {
    transform: translate(calc(var(--move-x, 20px) * -0.5), calc(var(--move-y, -30px) * 0.5)) rotate(180deg);
  }
  75% {
    transform: translate(calc(var(--move-x, 20px) * 0.5), calc(var(--move-y, -30px) * -0.5)) rotate(270deg);
  }
}

/* ========================================
   Dark Theme Specific
   ======================================== */

body.app-theme-dark .enhanced-glow {
  box-shadow: 
    0 0 30px rgba(99, 102, 241, 0.2),
    0 0 60px rgba(99, 102, 241, 0.1),
    0 0 90px rgba(168, 85, 247, 0.05);
}

body.app-theme-dark .text-glow {
  text-shadow: 
    0 0 10px rgba(99, 102, 241, 0.5),
    0 0 20px rgba(99, 102, 241, 0.3),
    0 0 30px rgba(99, 102, 241, 0.1);
}

body.app-theme-light .enhanced-glow {
  box-shadow: 
    0 0 24px rgba(99, 102, 241, 0.12),
    0 0 48px rgba(99, 102, 241, 0.06);
}

body.app-theme-light .text-glow {
  text-shadow: 
    0 0 8px rgba(99, 102, 241, 0.35),
    0 0 16px rgba(99, 102, 241, 0.2);
}

/* ========================================
   Accessibility
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  .aurora-bg::before,
  .aurora-bg::after,
  .nebula-bg,
  .floating-orbs .orb,
  .light-sweep::before,
  .scan-line::after,
  .glow-pulse,
  .glow-rainbow,
  .border-gradient-animated::before,
  .border-shimmer::before,
  .text-gradient-animated,
  .text-shimmer,
  .text-glitch::before,
  .text-glitch::after,
  .progress-premium .progress-bar,
  .progress-premium .progress-bar::after,
  .spinner-gradient,
  .star-field .star,
  .particle {
    animation: none !important;
  }
  
  .card-3d:hover,
  .hover-lift:hover,
  .hover-scale:hover {
    transform: none;
  }
}
