/**
 * Content Guardian - Frontend Protection CSS
 * Version: 2.0.0
 */

/* DevTools Warning Overlay */
#cg-devtools-warning {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cg-warning-content {
    text-align: center;
    color: #fff;
    max-width: 400px;
    padding: 40px;
}

.cg-warning-content svg {
    color: #ef4444;
    margin-bottom: 20px;
}

.cg-warning-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px;
}

.cg-warning-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #9ca3af;
    margin: 0;
}

/* JavaScript Required Overlay */
#cg-js-disabled {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#cg-js-disabled .cg-message {
    max-width: 500px;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#cg-js-disabled .cg-message h3 {
    font-size: 24px;
    margin: 0 0 16px;
    color: #1f2937;
}

#cg-js-disabled .cg-message p {
    font-size: 16px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
}

/* Protected email */
.cg-email-protected {
    unicode-bidi: bidi-override;
    direction: rtl;
}
