/**
 * AstroVeda Anti-Print, Anti-PDF & Screen Capture Deterrence Stylesheet
 * Strictly disables printing, PDF export, and screen captures while preserving 100% SEO/GEO/AEO.
 */

/* 1. Print & PDF Export Lockdown */
@media print {
    /* Hide all page elements during print or PDF export */
    html, body {
        background: #ffffff !important;
        color: #1a1512 !important;
        height: 100% !important;
        overflow: hidden !important;
    }

    body > * {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* Display Polite Paid-User Print Security Warning Banner */
    body::before {
        content: "🔒 AstroVeda Premium — Protected Vedic Content\A\A Direct browser printing is disabled to protect proprietary astrological calculations.\A\A ⭐ Please use the official in-app 'Download PDF Report' / 'Print Report' feature.\A (Note: High-Resolution PDF Dossiers & Certified Prints are exclusive privileges for AstroVeda Plus / Paid Subscribers).\A\A All rights reserved © AstroVeda.";
        white-space: pre-wrap;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #fff8f6 !important;
        color: #944a00 !important;
        font-family: 'Inter', system-ui, sans-serif !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        line-height: 1.6 !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 40px !important;
        box-sizing: border-box !important;
        border: 8px solid #944a00 !important;
        z-index: 9999999 !important;
    }
}

/* 2. Text Selection & Drag Suppression on Interactive & Sensitive Elements */
.no-select,
.protected-content,
.vedic-card,
.gold-card,
.gold-border-card,
svg,
canvas,
table,
.chart-container,
[data-protected="true"] {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

/* 3. Image Drag Protection */
img, svg, canvas {
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    pointer-events: auto;
}

/* 4. Anti-Screenshot Viewport Blur & Shield for Mac/Windows Clipping Utilities */
html.astro-screenshot-guard-active body > *:not(#astro-screenshot-shield):not(.astro-security-modal) {
    filter: blur(35px) brightness(0.3) !important;
    pointer-events: none !important;
    user-select: none !important;
    transition: filter 0.15s ease !important;
}

#astro-screenshot-shield {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20, 10, 8, 0.96);
    color: #ffdcc5;
    z-index: 9999998;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 30px;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
}

html.astro-screenshot-guard-active #astro-screenshot-shield {
    display: flex !important;
}

/* 5. Discrete Ephemeris DRM Watermark */
.astro-capture-shield {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999990;
    opacity: 0.03;
    background-image: radial-gradient(#944a00 0.75px, transparent 0.75px);
    background-size: 16px 16px;
}
