.almaden-content-protection-notice {
    position: fixed;
    z-index: 10000;
    left: 50%;
    bottom: max(1.25rem, env(safe-area-inset-bottom));
    width: min(calc(100vw - 2rem), 34rem);
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9999px;
    background: rgba(17, 24, 39, 0.96);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
    color: #fff;
    font: 600 0.9rem/1.4 "Urbanist", sans-serif;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 0.5rem);
    transition: opacity 180ms ease, transform 180ms ease;
}

.almaden-content-protection-notice[data-visible="true"] {
    opacity: 1;
    transform: translate(-50%, 0);
}

#almaden-content-protection-print-notice {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .almaden-content-protection-notice {
        transition: none;
    }
}
