/* Custom animations */
@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

/* Font family */
.font-amiri {
    font-family: 'Amiri', serif;
}

/* Smooth transitions */
#loader, #content {
    transition: opacity 0.5s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .animate-spin-slow {
        width: 32px;
        height: 32px;
    }
}