:root {
  color-scheme: dark light;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.4;
  background: #0f0f12;
  color: #e8e8ea;
  display: grid;
  min-height: 100svh;
  place-items: center;
}

.wrap { width: min(100%, 1100px); padding: 16px; }

h1 { margin: 8px 0 16px; font-size: 20px; opacity: .9; font-weight: 600; }

#stage {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #1a1a20;
  border: 1px solid #2a2a33;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

#meme {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.status { margin: 10px 2px; color: #9aa0a6; font-size: 14px; }

