/* src/styles.scss */
:root {
  color-scheme: dark;
  --surface: #0f1115;
  --surface-raised: #171a21;
  --border: #2a2f3a;
  --text: #f2f4f8;
  --text-muted: #a8b0be;
  --accent: #5b8cff;
  --accent-strong: #4372e6;
  --accent-contrast: #0b0d12;
  --radius: 10px;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
}
body {
  background: var(--surface);
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.55;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

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