@charset "UTF-8";

/* src/styles.scss */
:root {
  --bg: #05070d;
  --bg-soft: #070b14;
  --surface: #0b101d;
  --surface-2: #0e1526;
  --surface-hover: #111a2e;
  --border: #1a2333;
  --border-soft: #131b2b;
  --text: #e8ecf5;
  --text-secondary: #8b94a8;
  --text-muted: #5b6478;
  --accent: #3b82f6;
  --accent-bright: #4da3ff;
  --green: #34d399;
  --orange: #fbbf24;
  --radius: 14px;
  --radius-sm: 10px;
  --font-display:
    "Poppins",
    system-ui,
    -apple-system,
    sans-serif;
  --font-body:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #1c2436;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #263149;
}
.card {
  background:
    linear-gradient(
      180deg,
      #0c1220 0%,
      #0a0f1c 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.overline {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

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