/* ─── LASC Anti-Snoop — Overlay styles ─────────────────────────────────── */

#lasc-snoop-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483647; /* max z-index */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    /* Backdrop */
    background: rgba(5, 10, 16, 0.96);
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);

    transition: opacity .3s ease, visibility .3s ease;
}

#lasc-snoop-overlay.lasc-snoop-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ── Inner card ─────────────────────────────────────────────────────────── */
.lasc-snoop-inner {
    text-align: center;
    max-width: 480px;
    width: 100%;
    padding: 56px 48px;
    background: #0d1a1a;
    border: 1px solid rgba(16,220,205,.2);
    border-radius: 20px;
    box-shadow:
        0 0 0 1px rgba(16,220,205,.08),
        0 32px 80px rgba(0,0,0,.6),
        0 0 60px rgba(16,220,205,.06) inset;

    /* Slide up on appear */
    transform: translateY(20px);
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
}

#lasc-snoop-overlay.lasc-snoop-visible .lasc-snoop-inner {
    transform: translateY(0);
}

/* ── Icon ───────────────────────────────────────────────────────────────── */
.lasc-snoop-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    background: rgba(16,220,205,.1);
    border: 1px solid rgba(16,220,205,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10dccd;

    /* Pulse glow */
    animation: lasc-snoop-pulse 2.4s ease-in-out infinite;
}

.lasc-snoop-icon svg {
    width: 38px;
    height: 38px;
}

@keyframes lasc-snoop-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,220,205,.3); }
    50%       { box-shadow: 0 0 0 14px rgba(16,220,205,.0); }
}

/* ── Scanline flicker effect on card ────────────────────────────────────── */
.lasc-snoop-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(16,220,205,.015) 2px,
        rgba(16,220,205,.015) 4px
    );
    pointer-events: none;
    opacity: .6;
}
.lasc-snoop-inner {
    position: relative;
    overflow: hidden;
}

/* ── Text ───────────────────────────────────────────────────────────────── */
.lasc-snoop-title {
    font-family: inherit;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px;
    letter-spacing: -.3px;
    line-height: 1.2;
}

.lasc-snoop-body {
    font-family: inherit;
    font-size: 15px;
    color: rgba(255,255,255,.55);
    margin: 0 0 32px;
    line-height: 1.65;
}

/* ── Email CTA button ───────────────────────────────────────────────────── */
.lasc-snoop-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    background: #10dccd;
    color: #04181a;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    letter-spacing: .1px;
    transition: background .18s, transform .15s, box-shadow .18s;
    box-shadow: 0 4px 20px rgba(16,220,205,.35);
}

.lasc-snoop-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.lasc-snoop-btn:hover {
    background: #0baea7;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(16,220,205,.45);
}

/* ── Email address display ──────────────────────────────────────────────── */
.lasc-snoop-email {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 12px;
    color: rgba(16,220,205,.5);
    margin: 20px 0 0;
    letter-spacing: .5px;
}

/* ── Dismiss link ───────────────────────────────────────────────────────── */
.lasc-snoop-dismiss {
    display: block;
    margin: 16px auto 0;
    background: none;
    border: none;
    color: rgba(255,255,255,.25);
    font-size: 11px;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: .3px;
    padding: 4px 8px;
    transition: color .15s;
}

.lasc-snoop-dismiss:hover {
    color: rgba(255,255,255,.5);
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 520px) {
    .lasc-snoop-inner {
        padding: 40px 28px;
    }
    .lasc-snoop-title {
        font-size: 22px;
    }
}
