/* GigaLegal Theme utilities - aligned with Chakra tokens */

:root {
  --xy-bg-primary: #0D0D0E;
  --xy-bg-card: #24262B;
  --xy-text-primary: #FFFFFF;
  --xy-text-secondary: #EDEDED;
  --xy-brand-primary: #42E3B4;
  --xy-border-default: rgba(255, 255, 255, 0.1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: var(--xy-bg-primary);
  color: var(--xy-text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

#root {
  min-height: 100vh;
  background-color: var(--xy-bg-primary);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes rotate-gradient {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.4;
    box-shadow: 0 0 20px rgba(66, 227, 180, 0.3);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 40px rgba(66, 227, 180, 0.5);
  }
}

@keyframes shimmer {
  from { background-position: -200% center; }
  to { background-position: 200% center; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scalePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes borderGlow {
  0%, 100% {
    border-color: rgba(66, 227, 180, 0.3);
    box-shadow: 0 0 10px rgba(66, 227, 180, 0.2);
  }
  50% {
    border-color: rgba(66, 227, 180, 0.6);
    box-shadow: 0 0 20px rgba(66, 227, 180, 0.4);
  }
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(66, 227, 180, 0.3); }
  50% { text-shadow: 0 0 20px rgba(66, 227, 180, 0.5); }
}

.animate-float { animation: float 6s ease-in-out infinite; will-change: transform; }
.animate-pulse-glow { animation: pulseGlow 4s ease-in-out infinite; will-change: opacity, box-shadow; }
.animate-shimmer { background-size: 200% auto; animation: shimmer 3s linear infinite; }
.animate-spin-slow { animation: spin 20s linear infinite; will-change: transform; }
.animate-scale-pulse { animation: scalePulse 2s ease-in-out infinite; will-change: transform; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease-out; will-change: opacity, transform; }
.animate-gradient-shift { background-size: 200% 200%; animation: gradientShift 5s ease infinite; }
.animate-border-glow { animation: borderGlow 3s ease-in-out infinite; }
.animate-text-glow { animation: textGlow 2s ease-in-out infinite; }

.card-hover {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-4px);
}


/*# sourceMappingURL=main.137496c5.css.map*/