/* Existing Styles... */

.hcp-lock-wrapper {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.hcp-icon .dashicons-lock {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: #fca130;
    margin-bottom: 0px;
}

.hcp-heading {
    color: #ff0000;
    font-size: 28px;
    margin: 10px 0 15px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
}

.hcp-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.hcp-description {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.hcp-action {
    margin: 20px 0;
}

.hcp-ad-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #0073aa;
    transition: all 0.3s ease;
}

.hcp-ad-link:hover {
    color: #005177;
    text-decoration: underline;
}

.hcp-ad-link .dashicons {
    color: #fca130;
    font-size: 24px;
    margin-right: 5px;
}

.hcp-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.hcp-footer-note {
    font-style: italic;
    font-size: 15px;
    color: #555;
    margin-top: 15px;
}

.hcp-countdown {
    margin-top: 20px;
    font-weight: bold;
    color: #d63638;
    font-size: 18px;
}

/* =========================================
   Sensitive Content Blur Styles
   ========================================= */

/* The wrapper (can be span for img, or div.wp-video for video) */
.hcp-sensitive-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    /* Keep overlay inside */
    display: inline-block;
    /* Default */
}

/* Ensure video containers are block */
.hcp-sensitive-wrapper.wp-video,
.hcp-sensitive-wrapper.mejs-container {
    display: block !important;
}

/* Apply blur ONLY to the media content, not the overlay */
.hcp-sensitive-wrapper.is-blurred img,
.hcp-sensitive-wrapper.is-blurred video,
.hcp-sensitive-wrapper.is-blurred iframe,
.hcp-sensitive-wrapper.is-blurred .mejs-inner {
    filter: blur(15px);
    -webkit-filter: blur(15px);
    transition: filter 0.3s ease;
}

/* Darken Backdrop */
.hcp-sensitive-wrapper.is-blurred::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
    pointer-events: none;
}

/* The Text Overlay */
.hcp-sensitive-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    z-index: 20;
    /* Above backdrop */
    font-size: 14px;
    line-height: 1.5;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Hide when not blurred */
.hcp-sensitive-wrapper:not(.is-blurred) .hcp-sensitive-overlay,
.hcp-sensitive-wrapper:not(.is-blurred)::after {
    display: none;
}

/* Ensure controls are clickable when NOT blurred */
.hcp-sensitive-wrapper:not(.is-blurred) video,
.hcp-sensitive-wrapper:not(.is-blurred) .mejs-inner {
    filter: none;
    -webkit-filter: none;
}