* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'IBM Plex Mono', monospace; background: #0c0c14; }

.loading, .error {
  color: #64748b;
  text-align: center;
  padding: 60px 20px;
  font-size: 14px;
}
.error { color: #ef4444; }

@keyframes shimmer { 
  0% { transform: translateX(-100%) rotate(45deg); } 
  100% { transform: translateX(100%) rotate(45deg); } 
}
@keyframes cardReveal { 
  0% { transform: scale(0.8) rotateY(90deg); opacity: 0; } 
  100% { transform: scale(1) rotateY(0deg); opacity: 1; } 
}
