.psc-cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 22px;
    width: min(1120px, calc(100% - 24px));
    padding: 20px 24px;
    color: #f7f4ef;
    background: linear-gradient(135deg, rgba(14, 18, 24, 0.96), rgba(33, 21, 18, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transform: translate(-50%, 24px);
    opacity: 0;
    animation: pscCookieBannerIn 0.4s ease forwards;
}

.psc-cookie-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(214, 81, 44, 0.26), transparent 36%),
        linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.04) 48%, transparent 100%);
    pointer-events: none;
}

.psc-cookie-banner__target {
    position: relative;
    flex: 0 0 86px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: radial-gradient(circle, #f5e9db 0 11%, #cf4d2a 11% 24%, #10151c 24% 39%, #cf4d2a 39% 55%, rgba(255, 255, 255, 0.06) 55% 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.psc-cookie-banner__target::before,
.psc-cookie-banner__target::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.14);
    transform: translate(-50%, -50%);
}

.psc-cookie-banner__target::before {
    width: 1px;
    height: 100%;
}

.psc-cookie-banner__target::after {
    width: 100%;
    height: 1px;
}

.psc-cookie-banner__copy,
.psc-cookie-banner__actions {
    position: relative;
    z-index: 1;
}

.psc-cookie-banner__copy {
    flex: 1 1 auto;
    min-width: 0;
}

.psc-cookie-banner__eyebrow {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.psc-cookie-banner__title {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.08;
    font-weight: 700;
    color: #fffaf3;
}

.psc-cookie-banner__message {
    margin: 0;
    max-width: 700px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(247, 244, 239, 0.88);
}

.psc-cookie-banner__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    flex: 0 0 auto;
}

.psc-cookie-banner__button,
.psc-cookie-banner__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.psc-cookie-banner__button:hover,
.psc-cookie-banner__link:hover,
.psc-cookie-banner__button:focus,
.psc-cookie-banner__link:focus {
    text-decoration: none;
    transform: translateY(-1px);
}

.psc-cookie-banner__button--secondary,
.psc-cookie-banner__link {
    color: #f7f4ef;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
}

.psc-cookie-banner__button--secondary:hover,
.psc-cookie-banner__button--secondary:focus,
.psc-cookie-banner__link:hover,
.psc-cookie-banner__link:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.24);
}

.psc-cookie-banner__button--primary {
    color: #14181f;
    background: linear-gradient(135deg, #f6dd9b, #e8a94f);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 12px 24px rgba(232, 169, 79, 0.22);
}

.psc-cookie-banner__button--primary:hover,
.psc-cookie-banner__button--primary:focus {
    color: #14181f;
    background: linear-gradient(135deg, #ffe7a6, #f0b056);
}

@keyframes pscCookieBannerIn {
    from {
        opacity: 0;
        transform: translate(-50%, 24px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 980px) {
    .psc-cookie-banner {
        align-items: flex-start;
        padding: 18px;
    }

    .psc-cookie-banner__title {
        font-size: 23px;
    }
}

@media (max-width: 860px) {
    .psc-cookie-banner {
        flex-direction: column;
        gap: 16px;
    }

    .psc-cookie-banner__actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .psc-cookie-banner {
        bottom: 12px;
        width: calc(100% - 16px);
        padding: 16px;
        border-radius: 18px;
    }

    .psc-cookie-banner__target {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
    }

    .psc-cookie-banner__title {
        font-size: 20px;
    }

    .psc-cookie-banner__message {
        font-size: 14px;
    }

    .psc-cookie-banner__button,
    .psc-cookie-banner__link {
        width: 100%;
    }
}