.artifact-gallery {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: min(360px, 34vw);
  max-height: 44vh;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 18, 0.92);
  color: #e6edf3;
  z-index: 45;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.artifact-gallery.hidden {
  display: none;
}

.artifact-gallery h3 {
  margin: 0;
  padding: 12px 14px;
  font: 400 12px/1.4 Georgia, "Times New Roman", serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#artifactGrid {
  display: grid;
  gap: 10px;
  padding: 12px 14px 14px;
  overflow-y: auto;
  max-height: calc(44vh - 48px);
}

.artifact-gallery-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: center;
}

.artifact-gallery-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.artifact-gallery-card h4 {
  margin: 0 0 4px;
  font: 400 13px/1.35 Georgia, "Times New Roman", serif;
}

.artifact-gallery-card p {
  margin: 0;
  font: 400 11px/1.55 Georgia, "Times New Roman", serif;
  opacity: 0.72;
}
