:root {
  color-scheme: dark;
  --bg: #171514;
  --panel: rgba(31, 29, 28, 0.78);
  --panel-strong: rgba(38, 36, 35, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8f2ec;
  --muted: #b8ada5;
  --soft: rgba(255, 255, 255, 0.07);
  --accent: #d38a53;
  --paytch: #f96854;
  --row: 84px;
  --page-scale: 1;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}



* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  touch-action: manipulation;
  background: var(--bg);
  color: var(--text);
}

button,
input {
  font: inherit;
}
