@import "https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-family: Golos Text, Segoe UI, system-ui, sans-serif;
  line-height: 1.5;
}

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

button {
  cursor: pointer;
  font: inherit;
}

input, textarea, select {
  font: inherit;
}

:root {
  --navy: #0f1623;
  --navy-mid: #1a2338;
  --navy-light: #243049;
  --accent: #4f7cff;
  --accent-dim: #3a5ecc;
  --accent-glow: #4f7cff26;
  --danger: #e05252;
  --success: #3dbd7d;
  --warning: #f5a623;
  --muted: #8896b3;
  --bg: #0b1120;
  --bg-card: #111827;
  --bg-hover: #1c2640;
  --border: #1e2d45;
  --border-light: #253453;
  --text: #e8edf5;
  --text-secondary: #8896b3;
  --text-muted: #4e607a;
  --sidebar-w: 220px;
  --header-h: 56px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px #0006;
  --shadow-md: 0 4px 16px #00000080;
  --shadow-accent: 0 0 0 3px var(--accent-glow);
}

h1 {
  letter-spacing: -.02em;
  font-size: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
}

code, .mono {
  font-family: JetBrains Mono, monospace;
  font-size: .85em;
}

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

::-webkit-scrollbar-track {
  background: var(--bg);
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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