/* Dolny pasek — wspólny ze stroną główną (©, Polityka, Regulamin, Preferencje) */
@media (max-width: 900px) {
    :root { --vap-nav-ui-size: 0.80rem; }
}
@media (max-width: 640px) {
    :root { --vap-nav-ui-size: 0.75rem; }
}
@media (max-width: 500px) {
    :root { --vap-nav-ui-size: 0.71rem; }
}

.bottom-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(5, 5, 5, 0.96);
    border-top: 1px solid var(--border-subtle);
    padding: 9px 4vw;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-hero-lead);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    min-height: 41px;
    gap: 10px;
    text-align: center;
    cursor: default;
    user-select: none;
}

.bottom-fixed-copy {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    font-size: inherit;
    line-height: inherit;
}

.footer-privacy-link {
    display: inline-block;
    background: none;
    border: none;
    border-bottom: var(--vap-nav-underline-width) solid transparent;
    padding: 8px 14px;
    font-size: var(--vap-nav-ui-size);
    font-weight: 600;
    font-family: var(--font-section-title);
    color: #a1a1a1;
    -webkit-text-fill-color: #a1a1a1;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: color 0.26s var(--ease), -webkit-text-fill-color 0.26s var(--ease), border-bottom-color 0.26s var(--ease);
}

.footer-privacy-link:hover,
.footer-privacy-link:focus-visible {
    color: rgb(198, 152, 245);
    -webkit-text-fill-color: rgb(198, 152, 245);
    border-bottom-color: rgba(172, 86, 232, 0.72);
    text-decoration: none;
}

.footer-privacy-link:focus-visible {
    outline: 2px solid rgba(172, 86, 232, 0.55);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (max-width: 640px) {
    .bottom-fixed {
        gap: 4px;
    }
}

@media (max-width: 600px) {
    .bottom-fixed-copy {
        display: none;
    }
}
