/* Lightbox fuer UO World – rein lokal, keine externen Abhaengigkeiten */
#lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lb-overlay img {
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  box-shadow: 0 0 25px #000;
  border: 2px solid #888;
  background: #222;
}
#lb-close {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 34px;
  line-height: 1;
  color: #fff;
  font-family: Verdana, Arial, sans-serif;
  cursor: pointer;
  text-shadow: 0 0 6px #000;
}
#lb-close:hover { color: #ffd700; }
