/* =========================================================================
   Isla Noctura — vault page. Loaded only by vault.html.
   ========================================================================= */

.gate-extra { width: 100%; display: grid; place-items: center; }

.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 13px;
}

.slot {
  background: linear-gradient(180deg, var(--surface), #0A1119);
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 16px 17px; box-shadow: var(--shadow); position: relative;
}
.slot::before {
  content: ""; position: absolute; left: 13px; right: 13px; top: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,199,216,.28), transparent);
}
.slot-top { display: flex; align-items: center; gap: 9px; margin-bottom: 13px; }
.slot-top h3 {
  flex: 1; min-width: 0; font-family: var(--ui);
  font-size: 15.6px; font-weight: 650; letter-spacing: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.slot-facts { margin: 0; display: flex; flex-direction: column; gap: 8px; }
.slot-facts > div {
  display: flex; align-items: baseline; gap: 10px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.slot-facts > div:last-child { border-bottom: 0; padding-bottom: 0; }
.slot-facts dt {
  flex: none; width: 68px;
  font: 600 10px/1.4 var(--ui); letter-spacing: .12em;
  text-transform: uppercase; color: var(--silver-mut);
}
.slot-facts dd {
  margin: 0; flex: 1; min-width: 0;
  font: 500 13.5px/1.4 var(--mono); color: var(--moon);
}

@media (max-width: 640px) {
  .slots { grid-template-columns: 1fr; }
}
