/* ========================================
   SITE FOOTER STYLES
   TradeSmart.live - Bottom Fixed Footer
   ======================================== */

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: #000000;
    border-top: 1px solid var(--primary);
    display: flex;
    align-items: center;
    z-index: 101;
}

.site-footer-content {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.footer-copyright {
    font-size: 11px;
    color: var(--white);
}

.footer-copyright .brand-pro {
    color: #ef4444;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    margin-right: 1px;
}

.footer-copyright .brand-trade {
    color: var(--white);
}

.footer-copyright .brand-smart {
    color: #86efac;
}

.footer-copyright .brand-dot {
    color: var(--white);
}

.footer-copyright .brand-live {
    color: #ef4444;
    animation: pulseLive 1.5s ease-in-out infinite;
}

@keyframes pulseLive {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .site-footer {
        height: 28px;
    }

    .footer-copyright {
        font-size: 10px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-footer {
        height: 26px;
    }

    .site-footer-content {
        padding: 0 12px;
    }

    .footer-copyright {
        font-size: 9px;
    }

    .footer-copyright .brand-pro {
        font-size: 10px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .site-footer {
        height: 24px;
    }

    .site-footer-content {
        padding: 0 8px;
    }

    .footer-copyright {
        font-size: 8px;
    }

    .footer-copyright .brand-pro {
        font-size: 9px;
        letter-spacing: 0.5px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .site-footer {
        height: 22px;
    }

    .footer-copyright {
        font-size: 8px;
    }
}
