:root {
  --bg: #101014;
  --surface: #1b1b22;
  --surface-2: #26262f;
  --text: #f4f4f6;
  --text-dim: #9797a3;
  --accent: #ffb020;
  --accent-2: #4dd0e1;
  --danger: #ff5a5f;
  --win: #52d67a;
  --radius: 14px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --tap-min: 56px;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

body {
  display: flex;
  flex-direction: column;
}

#app {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

button {
  font-family: inherit;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3 {
  margin: 0;
}
