:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #070910;
  color: #eef6ff;
  font-family: Arial, Helvetica, sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

.feverscape-stage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #070910;
}

.fs-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.fs-static-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}

.fs-static-image {
  object-fit: fill;
}

.fs-loop-video,
.fs-loop-replay {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.fs-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  pointer-events: none;
}

.fs-label:after {
  content: " [R] Randomize | [E] Editor | [C] Recolor | [H] Hide UX";
  opacity: .5;
}
