/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --background: #05060d;
  --foreground: #cfd4e3;
}

html {
  height: 100%;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: JetBrains Mono, Fira Code, Menlo, monospace;
}

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

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

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

::-webkit-scrollbar-track {
  background: #05070d;
}

::-webkit-scrollbar-thumb {
  background: #1b2234;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2a3144;
}

@keyframes fx-pulse-dot {
  0%, 100% {
    box-shadow: 0 0 4px var(--dot-color, #0f8), 0 0 8px var(--dot-color, #0f8);
    opacity: 1;
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 10px var(--dot-color, #0f8), 0 0 20px var(--dot-color, #0f8);
    opacity: .85;
    transform: scale(1.45);
  }
}

@keyframes fx-shimmer {
  0% {
    background-position: -120% 0;
  }

  100% {
    background-position: 220% 0;
  }
}

@keyframes fx-scanline {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  10% {
    opacity: .55;
  }

  90% {
    opacity: .55;
  }

  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

@keyframes fx-blink {
  0%, 100% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  62% {
    opacity: .25;
  }

  68% {
    opacity: 1;
  }
}

@keyframes fx-flicker {
  0%, 100% {
    opacity: .92;
  }

  4% {
    opacity: .4;
  }

  6% {
    opacity: .92;
  }

  18% {
    opacity: .65;
  }

  20% {
    opacity: .92;
  }
}

.fx-dot {
  animation: 1.6s ease-in-out infinite fx-pulse-dot;
  display: inline-block;
}

.fx-blink {
  animation: 2.8s step-end infinite fx-blink;
}

.fx-flicker {
  animation: 4s ease-in-out infinite fx-flicker;
}

.fx-shimmer {
  position: relative;
  overflow: hidden;
}

.fx-shimmer:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, #0000 0% 30%, #ffffff73 50%, #0000 70% 100%) 0 0 / 220% 100%;
  animation: 2.4s linear infinite fx-shimmer;
  position: absolute;
  inset: 0;
}

.fx-corners:before, .fx-corners:after {
  content: "";
  border-color: var(--corner-color, #00e5ff);
  pointer-events: none;
  border-style: solid;
  width: 8px;
  height: 8px;
  position: absolute;
}

.fx-corners:before {
  border-width: 1px 0 0 1px;
  top: -1px;
  left: -1px;
}

.fx-corners:after {
  border-width: 0 1px 1px 0;
  bottom: -1px;
  right: -1px;
}

.fx-tabular {
  font-variant-numeric: tabular-nums;
}

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