/* ===== 存读档界面 ===== */
.save-load-screen {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 35;
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(8px);
}

.save-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  padding: 22px 30px;
  overflow-y: auto;
  flex: 1;
}

.save-slot {
  padding: 17px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast) ease;
}

.save-slot:hover {
  background: rgba(123, 104, 238, 0.1);
  border-color: rgba(123, 104, 238, 0.3);
}

.save-slot.slot-filled:hover {
  transform: translateY(-2px);
}

.slot-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
}

.slot-label {
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 500;
}

.slot-label.auto-slot {
  color: #FF9EAA;
}

.slot-date {
  color: var(--color-text-dim);
  font-size: 17px;
}

.slot-preview {
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-empty {
  color: var(--color-text-dim);
  font-style: italic;
}
