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

.widget, .profile-box { animation: fadeInUp 0.6s ease both; }
.left-panel .widget:nth-child(2) { animation-delay: 0.1s; }
.right-panel .widget:nth-child(2) { animation-delay: 0.1s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
