/* ========== QUOTE OF THE DAY ========== */

.loader__quote {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 800px;
  width: 90%;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-style: italic;
  padding: 0 20px;
  animation: fadeInQuote 1s ease-in 0.5s both;
}

@keyframes fadeInQuote {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .loader__quote {
    font-size: 0.95rem;
    bottom: 80px;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .loader__quote {
    font-size: 0.85rem;
    bottom: 60px;
    padding: 0 15px;
  }
}
