/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Base ──────────────────────────────────────────────────────────────────── */
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a0c;
}

#root {
  position: absolute;
  inset: 0;
}

/* ── Loading overlay ───────────────────────────────────────────────────────── */
#app-loading {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0b0e;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: #666;
  font-size: 14px;
}
