/* Quote Generator Styles */
.quote-card { animation: fadeUp 0.4s ease forwards; opacity: 0; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.quote-card { transform: translateY(10px); }
.quote-card:nth-child(2) { animation-delay: 0.1s; }
.quote-card:nth-child(3) { animation-delay: 0.2s; }
.quote-card:nth-child(4) { animation-delay: 0.3s; }
.quote-card:nth-child(5) { animation-delay: 0.4s; }
