@import "https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css";
/* [project]/apps/web/src/app/globals.css [app-client] (css) */
:root {
  --color-primary: #6c5ce7;
  --color-primary-light: #8b7cf0;
  --color-primary-dark: #5a4bd6;
  --color-secondary: #00d2d3;
  --color-secondary-light: #33dde0;
  --color-bg: #1a1b2e;
  --color-bg-deep: #141525;
  --color-surface: #242540;
  --color-surface-light: #2d2e4a;
  --color-surface-hover: #33345a;
  --color-text: #e8e8f0;
  --color-text-secondary: #b0b1c8;
  --color-muted: #6b6d8a;
  --color-border: #2e2f4a;
  --color-danger: #ff6b6b;
  --color-success: #2ed573;
  --color-warning: #ffa502;
  --font-heading: "Geist", "Pretendard", sans-serif;
  --font-body: "Pretendard", "Geist", sans-serif;
  --font-mono: "JetBrains Mono", "Pretendard", monospace;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-14: 14px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 50%;
  --nav-width: 56px;
  --sidebar-width: 260px;
  --detail-width: 360px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .4);
  --shadow-glow-primary: 0 0 12px rgba(108, 92, 231, .4);
  --shadow-glow-secondary: 0 0 10px rgba(0, 210, 211, .5);
  --transition-fast: .15s ease;
  --transition-normal: .25s ease;
  --transition-slow: .35s ease;
}

*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  line-height: 1.5;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: var(--color-muted);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-secondary);
}

input, textarea, button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 4px rgba(0, 210, 211, .4);
  }

  50% {
    box-shadow: 0 0 10px rgba(0, 210, 211, .8);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes typingDot {
  0%, 60%, 100% {
    opacity: .3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@keyframes levelRingRotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/*# sourceMappingURL=apps_web_src_app_globals_ea8a3ee7.css.map*/