/* AFTER DWN - Redacted Product Mentions */

.redacted-product {
    position: fixed;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--signal-red);
    opacity: 0;
    pointer-events: none;
    z-index: 950;
    text-transform: uppercase;
    letter-spacing: 1px;
    mix-blend-mode: screen;
    filter: blur(0.5px);
}

.redacted-product.active {
    animation: flashRedacted 0.5s ease-out forwards;
}

@keyframes flashRedacted {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }
    10% {
        opacity: 0.7;
        transform: translateY(0);
    }
    20% {
        opacity: 0.3;
    }
    30% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
    }
}

.product-catalog {
    bottom: 15%;
    right: 10%;
}

.product-fitlog {
    top: 25%;
    left: 8%;
}

.product-redacted {
    bottom: 40%;
    right: 15%;
}

.product-wardrobe {
    top: 10%;
    right: 12%;
}

.product-signal {
    bottom: 20%;
    left: 12%;
}

/* Redacted text styling */
.redacted-text {
    position: relative;
    display: inline-block;
}

.redacted-text::after {
    content: "█ █ █ █";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--signal-red);
    opacity: 0.8;
    animation: redactedBlink 2s infinite;
}

@keyframes redactedBlink {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
}
