.modal[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.modal-panel {
  position: relative;
  max-width: min(900px, 92vw);
  max-height: 88vh;
  margin: 6vh auto;
  background: #0b1720;
  border: 2px solid var(--color-red-light);
  overflow: auto;
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  font-size: 1.5rem;
  background: transparent;
  color: inherit;
  border: 0;
  cursor: pointer;
}