/* src/styles.css */
:root {
  --bg: #0b0f14;
  --panel: #111826;
  --edge: #233044;
  --text: #e6eefc;
  --muted: #9fb2cf;
  --accent: #4da3ff;
  --danger: #ff4d6d;
  --ok: #35d07f;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --gap: 14px;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
  background:
    radial-gradient(
      1200px 800px at 20% 0%,
      #121a29 0%,
      var(--bg) 55%) fixed;
  color: var(--text);
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
  overscroll-behavior: none;
}

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