/* src/styles.css */
:root {
  color-scheme: dark;
  --bg: #101114;
  --panel: #191b20;
  --panel-strong: #21242b;
  --line: #313640;
  --text: #f4f0e8;
  --muted: #aaa79f;
  --accent: #f3b24a;
  --focus: #8bd3ff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(215, 111, 48, 0.18),
      transparent 28rem),
    linear-gradient(
      135deg,
      #101114 0%,
      #171719 48%,
      #141c1d 100%);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
button,
input {
  font: inherit;
}

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