.font-caveat {
  font-family: 'Caveat', cursive;
}

.font-michroma {
  font-family: 'Michroma', sans-serif;
}

.font-sixtyfour {
  font-family: 'Sixtyfour', sans-serif;
}

.font-ibmpexmono {
  font-family: 'IBM Plex Mono', monospace;
}

.font-orbitron {
  font-family: 'Orbitron', sans-serif;
}

.hover-lift {
  transition: all 0.25s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 1.5rem rgba(0,0,0,0.15);
}

.slide-fade {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.slide-fade:hover {
  transform: translateX(14px);
  opacity: 0;
}

.terminal {
  background-color: #050608;
  color: #00ff4d;
  font-family: 'IBM Plex Mono', monospace;
}

.terminal-header {
  background-color: #0f0f0f;
  color: #00ff4d;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.terminal-close-btn {
  color: #888888;
  cursor: pointer;
  user-select: none;
}

.terminal-close-btn:hover {
  color: #ff5f57;
}

.terminal-pre {
  color: #00ff4d;
  font-family: inherit;
  font-size: 0.9rem;
  white-space: pre-wrap;
}

.terminal-pre a {
  color: #00ff4d;
  font-weight: bold;
  text-decoration: none;
}

.terminal-pre a:hover {
  text-decoration: underline;
}

.terminal-prompt {
  color: #00ff4d;
}

.terminal-cursor {
  background-color: #00ff4d;
  animation: blink 0.9s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.js .js-hidden {
  display: none;
}

.no-js .js-shown {
  display: none;
}