.pxl-cps-banner {
    position: fixed;
    left: 18px;
    right: 18px;
    z-index: var(--pxl-cps-z, 999999);
    background: var(--pxl-cps-banner-bg, #111);
    color: var(--pxl-cps-text, #fff);
    box-shadow: 0 12px 34px rgba(0,0,0,.18);
    display: none;
    border-radius: 18px;
    backdrop-filter: blur(4px);
}
.pxl-cps-top { top: 18px; }
.pxl-cps-bottom { bottom: 18px; }
.pxl-cps-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}
.pxl-cps-text {
    font-size: 14px;
    line-height: 1.6;
}
.pxl-cps-text a {
    color: inherit;
    text-decoration: underline;
}
.pxl-cps-actions {
    flex: 0 0 auto;
}
.pxl-cps-accept {
    border: 0;
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
    background: var(--pxl-cps-btn, #f5c400);
    color: var(--pxl-cps-btn-text, #111);
    font-weight: 700;
    transition: transform .15s ease, opacity .15s ease;
}
.pxl-cps-accept:hover {
    transform: translateY(-1px);
    opacity: .96;
}
@media (max-width: 782px) {
    .pxl-cps-banner {
        left: 10px;
        right: 10px;
        border-radius: 14px;
    }
    .pxl-cps-inner {
        flex-direction: column;
        align-items: flex-start;
        width: calc(100% - 24px);
    }
}
