/* Hack the Gibson web host: full-viewport black stage. */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000;
  overflow: hidden;
}

#gibson {
  display: block;
  width: 100vw;
  height: 100vh;
  background: #000;
}

#status {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 80vw;
  padding: 12px 20px;
  font-family: "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #48e8ff;
  border: 1px solid rgba(72, 232, 255, 0.25);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.6);
  white-space: pre-wrap;
}

#status:empty {
  display: none;
}

#repo {
  position: fixed;
  right: 10px;
  bottom: 8px;
  font-family: "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  color: rgba(72, 232, 255, 0.45);
  text-decoration: none;
  letter-spacing: 0.04em;
}

#repo:hover {
  color: rgba(72, 232, 255, 0.9);
}

/* The Buy Me a Coffee widget injects a `position: static` anchor where its script sits, which
   would fall below the full-viewport canvas. Pin the wrapper instead, opposite the repo link,
   and scale it down so it reads as a footer control rather than an interstitial. */
#support {
  position: fixed;
  left: 10px;
  bottom: 8px;
  z-index: 2;
  transform: scale(0.62);
  transform-origin: bottom left;
  opacity: 0.82;
  transition: opacity 120ms ease-in-out;
}

#support:hover {
  opacity: 1;
}
