/* Gov Arena — Animations */

/* ==================== BATTLE TRANSITIONS ==================== */

.response-reveal {
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.model-reveal-anim {
  animation: modelReveal 0.3s ease-out;
}

@keyframes modelReveal {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes eloSlideIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

.elo-change {
  animation: eloSlideIn 0.3s ease-out 0.2s both;
}

/* ==================== GENERAL TRANSITIONS ==================== */

.fade-in {
  animation: fadeIn 0.3s ease-out;
}

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

.view {
  transition: opacity 0.2s ease-out;
}

.view.active {
  animation: fadeIn 0.2s ease-out;
}

.btn-vote {
  transition: all 0.15s ease;
}

.btn-vote:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card {
  transition: border-color 0.15s ease;
}

.pill {
  transition: all 0.15s ease;
}

.nav-link {
  transition: all 0.15s ease;
}
