/* RichWP GrowRich Paywall Styles */

/* Blur Paywall - Full Main Element Blur */
.richwp-blurred-main {
    filter: blur(4px) brightness(0.95) contrast(0.95);
    pointer-events: none;
    user-select: none;
    transition: filter 0.3s ease;
    position: relative;
}

.richwp-blurred-main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.richwp-blur-content {
    position: relative;
    z-index: 2;
}

.richwp-paywall-overlay-container {
    position: absolute; /* Positioned by JavaScript relative to main */
    z-index: 1000;
    width: 100%;
}

.richwp-paywall-overlay {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

