.scc-cookie-banner {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999;
    display: none;
    padding: 16px 20px;
    color: #ffffff;
    background: #202124;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.22);
    font-family: inherit;
}

.scc-cookie-banner.is-visible {
    display: block;
    animation: scc-slide-up 220ms ease-out;
}

.scc-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.scc-message {
    flex: 1 1 auto;
    margin: 0;
    color: inherit;
    font-size: 14px;
    line-height: 1.6;
}

.scc-message a {
    color: #8ec5ff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.scc-message a:hover,
.scc-message a:focus-visible {
    color: #ffffff;
}

.scc-accept-btn {
    flex: 0 0 auto;
    min-width: 110px;
    min-height: 44px;
    padding: 10px 22px;
    border: 0;
    border-radius: 6px;
    color: #202124;
    background: #f9c74f;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 120ms ease, filter 120ms ease;
}

.scc-accept-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.scc-accept-btn:focus-visible,
.scc-message a:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

@keyframes scc-slide-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .scc-cookie-banner {
        padding: 18px 16px;
    }

    .scc-content {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        text-align: left;
    }

    .scc-accept-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scc-cookie-banner.is-visible {
        animation: none;
    }

    .scc-accept-btn {
        transition: none;
    }
}
