footer {
    flex-shrink: 0;
}

.footer {
    flex-shrink: 0;
    width: 100%;
    padding: 8px 32px;
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
    z-index: 1000;
    position: relative;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-text,
.footer-status,
.footer-info,
.footer-link,
.footer-cookies {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    white-space: nowrap;
}

.footer-sep {
    color: var(--border-color);
    margin: 0 4px;
}

.status-online {
    color: #00ff00;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.footer-link {
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-main);
}

.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: help;
}

.footer-info {
    border-bottom: 1px dotted var(--text-muted);
}

@media (max-width: 900px) {

    .footer {
        position: relative !important;
    }

    .footer__container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-sep {
        display: none;
    }

    .footer__left,
    .footer__right {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
}