#popupOverlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(11, 1, 19, 0.9);
  backdrop-filter: blur(3px);
  z-index: 10000;

  justify-content: center;
  align-items: center;
}

#popupBox {
  background-color: #1a0033;
  border: 4px solid #ffc04d;
  padding: 20px 30px;
  border-radius: 10px;
  width: 350px;
  font-family: monospace, monospace;
  color: #ffc04d;
  box-shadow: 0 0 0 3px #dd8800, 0 0 10px #dd8800 inset;
  image-rendering: pixelated;
  text-align: center;
  user-select: none;
}

#popupTitle {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #dd8800;
  text-shadow:
    -1px -1px 0 #000,
    1px 1px 0 #000;
}

#popupCategory1 {
  background-color: #2e0055;
  padding: 8px 12px;
  border: 2px solid #ffc04d;
  margin-bottom: 15px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  color: #ffec99;
  box-shadow:
    inset 0 0 8px #ffc04d;
}

#popupCategory2 {
  background-color: #3b003f;
  padding: 16px 20px;
  border: 2px solid #dd8800;
  margin-bottom: 15px;
  border-radius: 6px;
  font-style: italic;
  font-size: 1rem;
  color: #ffd98c;
  box-shadow: inset 0 0 8px #dd8800;
}

#popupBox button {
  background-color: #dd8800;
  border: 2px solid #ffc04d;
  color: black;
  font-weight: bold;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: inset -2px -2px 0 #662e00;
  image-rendering: pixelated;
  user-select: none;
  transition: background-color 0.15s ease;
}

#popupBox button:hover {
  background-color: #ffc04d;
  color: #220a00;
}