/* src/styles.scss */
:root {
  --bg: #0a0a0f;
  --bg-subtle: #0f0f16;
  --surface: #14141c;
  --surface-elevated: #1a1a24;
  --surface-hover: rgba(255, 255, 255, 0.03);
  --border: #2a2a36;
  --border-subtle: #22222c;
  --text: #f0f0f4;
  --text-secondary: #a1a1aa;
  --muted: #71717a;
  --accent: #a78bfa;
  --accent-dim: rgba(167, 139, 250, 0.15);
  --glow-accent: 0 0 24px rgba(167, 139, 250, 0.15);
  --success: #22c55e;
  --error: #ef4444;
  --warn: #f59e0b;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  line-height: 1.5;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  color: var(--text);
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover {
  color: #c4b5fd;
  text-decoration: underline;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
