@import "https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@400;500;600;700&display=swap";
/* [project]/src/components/LeftNav.module.css [app-client] (css) */
.LeftNav-module__oHtu7a__nav {
  background: var(--surface-deep);
  border-right: 1px solid var(--border);
  z-index: 50;
  flex-direction: column;
  align-items: flex-start;
  width: 60px;
  height: 100vh;
  padding: 0;
  transition: width .25s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  box-shadow: 2px 0 20px #00d4ff14;
}

.LeftNav-module__oHtu7a__nav:hover {
  width: 200px;
}

.LeftNav-module__oHtu7a__logo {
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 64px;
  padding: 20px 18px;
  display: flex;
  overflow: hidden;
}

.LeftNav-module__oHtu7a__logoIcon {
  color: var(--cyan);
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
}

.LeftNav-module__oHtu7a__logoText {
  color: var(--cyan);
  letter-spacing: .15em;
  opacity: 0;
  font-family: Orbitron, sans-serif;
  font-size: .7rem;
  font-weight: 700;
  transition: opacity .2s;
}

.LeftNav-module__oHtu7a__nav:hover .LeftNav-module__oHtu7a__logoText {
  opacity: 1;
}

.LeftNav-module__oHtu7a__links {
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 12px 0;
  display: flex;
}

.LeftNav-module__oHtu7a__link {
  width: 100%;
  color: var(--muted);
  white-space: nowrap;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  transition: color .15s, background .15s;
  display: flex;
  overflow: hidden;
}

.LeftNav-module__oHtu7a__link:hover {
  color: var(--text);
  background: #00d4ff0f;
}

.LeftNav-module__oHtu7a__linkActive {
  color: var(--cyan);
  border-right: 2px solid var(--cyan);
  background: #00d4ff1a;
}

.LeftNav-module__oHtu7a__icon {
  text-align: center;
  flex-shrink: 0;
  width: 24px;
  font-size: 1.1rem;
  line-height: 1;
}

.LeftNav-module__oHtu7a__label {
  letter-spacing: .1em;
  opacity: 0;
  font-family: Orbitron, sans-serif;
  font-size: .6rem;
  font-weight: 600;
  transition: opacity .2s;
}

.LeftNav-module__oHtu7a__nav:hover .LeftNav-module__oHtu7a__label {
  opacity: 1;
}

/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg: #1a1a2e;
  --surface: #16213e;
  --surface-deep: #0d0d1f;
  --cyan: #00d4ff;
  --orange: #ff6b35;
  --green: #22c55e;
  --red: #ef4444;
  --text: #e2e8f0;
  --muted: #64748b;
  --border: #00d4ff33;
}

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

html, body {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  max-width: 100vw;
  height: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: linear-gradient(#00d4ff0a 1px, #0000 1px), linear-gradient(90deg, #00d4ff0a 1px, #0000 1px);
  background-size: 40px 40px;
  font-family: Rajdhani, sans-serif;
  line-height: 1.5;
}

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

ul, ol {
  list-style: none;
}

/*# sourceMappingURL=src_0xc_hig._.css.map*/