.terminal {
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.terminal:hover,
.terminal:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 58px rgba(23, 24, 36, .19);
}

@media (prefers-reduced-motion: reduce) {
  .terminal { transition: none; }
}
