/* ── Terminal typewriter chyron — prints from cursor, scrolls left ── */
#chyron-minimal {
  position: fixed;
  top: 36px;
  right: calc(12px + 1ch);
  font: 500 1.4rem/1 'Courier New', Courier, monospace;
  color: rgba(74, 222, 128, 0.88);
  text-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
}

/* ── Black Hole Endgame ── */
@keyframes bh-pulse { 0%,100%{box-shadow:0 0 20px #00ff88,0 0 40px #00ff8840} 50%{box-shadow:0 0 40px #00ff88,0 0 80px #00ff8880} }
@keyframes bh-glitch { 0%,100%{clip-path:inset(0 0 98% 0)} 10%{clip-path:inset(40% 0 45% 0)} 20%{clip-path:inset(80% 0 5% 0)} 30%{clip-path:inset(10% 0 70% 0)} 40%{clip-path:inset(60% 0 20% 0)} 50%{clip-path:inset(30% 0 55% 0)} }
#bh-error-text::before { content: attr(data-text); position:absolute; left:0; width:100%; color:#ff0044; animation:bh-glitch 3s infinite; }
#bh-error-text { position:relative; }

