/* Account-promo overlay. Root translates (rise); the cloud is rotated -45deg
   inside so the dismiss button stays upright. Root is click-through except the
   cloud and the x. */
#nomn-promo {
  position: fixed;
  z-index: 9999;
  transform-origin: center center;
  transition: transform var(--rise, 8750ms) cubic-bezier(.22,.61,.36,1), opacity 1s;
  opacity: 0;
  pointer-events: none;
}
.nomn-promo-rot { transform: rotate(-45deg); cursor: pointer; pointer-events: auto; }
.nomn-promo-art {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9.5px;
  line-height: 1.08;
  color: #000;
  margin: 0;
  white-space: pre;
  user-select: none;
  text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 1px #fff;
}
.nomn-promo-x {
  position: absolute;
  top: -6px; right: -6px;
  width: 18px; height: 18px;
  padding: 0;
  font: 13px/16px "IBM Plex Mono", monospace;
  color: #000; background: #fff;
  border: 1px solid #000; border-radius: 50%;
  cursor: pointer; opacity: 0; transition: opacity .2s; pointer-events: auto;
}
#nomn-promo:hover .nomn-promo-x { opacity: 1; }
@media (prefers-reduced-motion: reduce) { #nomn-promo { transition: opacity .4s; } }
