:root {
    --scc-bg: rgba(29, 34, 39, 0.96);
    --scc-border: rgba(255, 255, 255, 0.14);
    --scc-text: #ffffff;
    --scc-link: #9fd8ff;
    --scc-button-bg: #ffffff;
    --scc-button-text: #232323;
}

.scc-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.scc-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 18px 27px;
    border: 1px solid var(--scc-border);
    border-radius: 14px;
    background: var(--scc-bg);
    color: var(--scc-text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.scc-banner__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.scc-banner__text a {
    color: var(--scc-link);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.scc-banner__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.scc-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    min-width: 168px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--scc-button-bg);
    color: var(--scc-button-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
}

.scc-banner__button:hover,
.scc-banner__button:focus-visible {
    opacity: 0.88;
}

@media (max-width: 767px) {
    .scc-banner {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .scc-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
    }

    .scc-banner__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .scc-banner__button {
        width: 100%;
        min-width: 0;
    }
}
