/* =========================================
   FOOTER STYLES
   ========================================= */

.footer-bar {
    background: #1a222a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 9px;
    color: #556c80;
    text-transform: uppercase;
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    letter-spacing: 1px;
}

.footer-link:hover {
    color: #ff5722;
    text-shadow: 0 0 8px rgba(255, 87, 34, 0.6);
}

.footer-link:active {
    transform: scale(0.95);
    color: #ff8c4f;
    text-shadow: 0 0 12px rgba(255, 87, 34, 0.8);
}

.footer-separator {
    opacity: 0.3;
    user-select: none;
}