@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";

/* src/styles.css */
:root {
  --glass-bg: rgba(20, 18, 22, 0.6);
  --glass-sidebar: rgba(10, 8, 12, 0.4);
  --glass-panel: rgba(255, 255, 255, 0.03);
  --glass-panel-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-focus: rgba(255, 255, 255, 0.2);
  --text-main: rgba(255, 255, 255, 0.95);
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-dark: rgba(255, 255, 255, 0.3);
  --accent: #8b5cf6;
  --accent-light: rgba(139, 92, 246, 0.2);
  --font-main:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  width: 100%;
}
body {
  background-color: #110e13;
  background-image:
    radial-gradient(
      circle at 15% 30%,
      rgba(220, 90, 60, 0.35) 0%,
      transparent 45%),
    radial-gradient(
      circle at 85% 20%,
      rgba(60, 120, 220, 0.3) 0%,
      transparent 50%),
    radial-gradient(
      circle at 50% 80%,
      rgba(120, 60, 180, 0.25) 0%,
      transparent 60%);
  color: var(--text-main);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}
button,
input,
textarea {
  font-family: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

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