:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: #101010;
  --surface-2: #151515;
  --border: rgba(255, 255, 255, 0.12);
  --ink: #f8f7f4;
  --muted: #9c9a9c;
  --primary: #e11d2e;
  --secondary: #f05b66;
  --accent: #ff7b83;
  --warning: #ffb454;
  --danger: #ef4444;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  --glow-primary: rgba(225, 29, 46, 0.22);
  --glow-secondary: rgba(240, 91, 102, 0.16);
  --glow-accent: rgba(255, 123, 131, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body.dashboard-body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html,
body.dashboard-body,
.app-shell,
.page-body,
.dashboard-content {
  background: #050505;
}

::selection {
  background: rgba(225, 29, 46, 0.42);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}
