:root { color-scheme: dark; }
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100svh;
  overflow: hidden;
  background: #080909;
  color: #f6f2e9;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}
.poster {
  min-height: 100svh;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  place-items: center;
  padding: clamp(1.2rem, 3vw, 3rem);
  background:
    radial-gradient(circle at 67% 43%, rgba(213, 255, 0, .18), transparent 26rem),
    repeating-linear-gradient(-30deg, transparent 0 7px, rgba(255,255,255,.018) 8px 9px);
}
.eyebrow, .footer {
  margin: 0;
  z-index: 1;
  letter-spacing: .22em;
  font: 700 clamp(.65rem, 1.2vw, .9rem)/1.1 Arial, sans-serif;
}
.eyebrow { color: #d7ff00; }
.footer { color: #8d908b; letter-spacing: .1em; }
h1 {
  position: absolute;
  z-index: 0;
  top: 50%; left: 50%;
  transform: translate(-50%, -53%);
  margin: 0;
  white-space: nowrap;
  font-size: min(37vw, 34rem);
  line-height: .7;
  letter-spacing: -.08em;
  color: #f6f2e9;
  opacity: .12;
  user-select: none;
}
h1 span { color: #d7ff00; }
.hand {
  z-index: 1;
  display: block;
  width: min(47vw, 33rem);
  max-height: 70svh;
  object-fit: contain;
  filter: drop-shadow(0 1.8rem 2.5rem rgba(0,0,0,.72));
}
@media (max-width: 600px) {
  h1 { font-size: 47vw; }
  .hand { width: min(86vw, 28rem); max-height: 66svh; }
}
