1. FFT power spectrum is not a commonly used term - as I understand it, it is an energy associated with particular frequency mode. FFT is always discrete, while spectrum density applies to continuous density function. So those two are pretty similar, possibly with proportionality coefficient (you must be aware about proportionality coeffs anyway, as various implementations of FFT differently treat the normalisation factor between: thay take it into account either in forward or reverse transformation, or apply sqrt of it to both of them, and some - among them most popular fftw library - even leave the result unnormalised)
2., 3. The result of the Discrete Fourier Transform (FFT is its algorithmic implementation) is a series of complex numbers, even if the transformed function was a real one. So you may represent it either as Re and I am parts, or as magnitude and phase. If it may make a difference, you should also be aware that various implementations may have opposite conventions about the sign of imaginary FFT coeffs.
You may interprete it in terms of sin and cos series, where real coefficients apply to cos series and imaginary coefficient to sinuses (keep in mind the issues of normalisation factor and a sign of imaginary coeff).