#wcg-protection-notice {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 2147483647;
    max-width: min(90vw, 520px);
    padding: 12px 18px;
    border-radius: 8px;
    background: rgba(20, 20, 20, 0.94);
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 18px);
    transition: opacity 160ms ease, transform 160ms ease;
}

#wcg-protection-notice.wcg-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {
    #wcg-protection-notice {
        transition: none;
    }
}
