* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: #FAFAF7;
  overflow: hidden;
  font-family: "IBM Plex Mono", "Courier New", Courier, monospace;
  color: #000;
}

.header {
  position: fixed;
  top: 40px;
  left: 40px;
  font-family: "IBM Plex Mono", "Courier New", Courier, monospace;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  text-transform: uppercase;
  z-index: 10;
}

.header-line {
  margin: 0;
}

.header-line + .header-line {
  margin-top: 0.6em;
}

.stage {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr {
  position: fixed;
  bottom: 40px;
  left: 40px;
  display: block;
  width: 120px;
  height: 120px;
  z-index: 10;
  cursor: pointer;
}

.qr img {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  pointer-events: none;
}

.work-with-me {
  display: none;
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 10;
  font-family: "IBM Plex Mono", "Courier New", Courier, monospace;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}

.image-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
}

#slide {
  display: block;
  max-height: 70vh;
  max-width: 90vw;
  width: auto;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.overlay[data-category="ai"] {
  background: rgba(217, 0, 0, 0.25);
}

.overlay[data-category="real"] {
  background: rgba(14, 138, 46, 0.25);
}

.label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 24px;
  white-space: nowrap;
}

.label[data-category="ai"] {
  background: #D90000;
}

.label[data-category="real"] {
  background: #0E8A2E;
}

.empty-message {
  font-family: "IBM Plex Mono", "Courier New", Courier, monospace;
  font-size: 14px;
  text-align: center;
  max-width: 60ch;
  padding: 0 20px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .header {
    top: 20px;
    left: 20px;
  }
  .work-with-me {
    top: 20px;
    right: 20px;
    display: inline-block;
  }
  .label {
    font-size: 48px;
    padding: 18px 36px;
  }
  .qr {
    display: none;
  }
  .stage {
    inset: 140px 0 40px 0;
  }
  #slide {
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 200px);
  }
}
