.bottom-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro", Roboto, sans-serif;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}


.bottom-banner--visible {
    transform: translateY(0);
}

.bottom-banner__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px 16px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-sizing: border-box;
}


.bottom-banner__text {
    font-size: 14px;
    line-height: 1.4;
}

.bottom-banner__link {
    color: #ffffff;
    text-decoration: underline;
}


.bottom-banner__button {
    flex-shrink: 0;
    border: none;
    border-radius: 4px;
    background: #2B4B9B;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.bottom-banner__button:hover {
    opacity: 0.95;
}

.bottom-banner__button:active {
    opacity: 0.9;
}

@media (max-width: 719px) {
    .bottom-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 12px 16px;
    }

    .bottom-banner__text {
        font-size: 13px;
    }

    .bottom-banner__button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (min-width: 720px) and (max-width: 959px) {
    .bottom-banner__inner {
        padding: 14px 20px;
        flex-direction: row;
    }

    .bottom-banner__text {
        font-size: 14px;
    }
}

@media (min-width: 960px) and (max-width: 1119px) {
    .bottom-banner__inner {
        padding: 16px 24px;
    }

    .bottom-banner__text {
        font-size: 14px;
    }
}

@media (min-width: 1120px) {
    .bottom-banner__inner {
        padding: 18px 24px;
    }

    .bottom-banner__text {
        font-size: 14px;
    }
}