:root {
  --stage-bg: #0b0b0d;
  --stage-fg: #f6f3ec;
  --brand-primary: #e63946;
  --brand-accent: #f6f3ec;
  --card: #17171c;
  --muted: #9aa0a6;
  --radius: 22px;
  --safe: 5vmin;
  --font-heading: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  width: 100vw; height: 100vh;
  background: var(--stage-bg); color: var(--stage-fg);
  font-family: var(--font-body);
  overflow: hidden; cursor: none;
  -webkit-font-smoothing: antialiased;
}

#stage {
  position: fixed; inset: 0;
  padding: var(--safe);
}

.slide {
  position: absolute; inset: var(--safe);
  opacity: 0;
  transition: opacity 700ms ease;
  will-change: opacity;
}
.slide.visible { opacity: 1; }

.status {
  position: fixed;
  right: calc(var(--safe) + 1vmin);
  bottom: calc(var(--safe) + 1vmin);
  padding: 0.6vmin 1.4vmin;
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.85);
  color: white;
  font-size: clamp(14px, 1.4vmin, 22px);
  font-weight: 600;
  letter-spacing: 0.02em;
}
