/* anti-inspect.css */

/* Overlay toàn màn hình */
.anti-inspect-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.anti-inspect-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Card thông báo chính */
.anti-inspect-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.anti-inspect-overlay.active .anti-inspect-card {
    transform: scale(1);
}

.anti-inspect-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulseShield 2s infinite ease-in-out;
}

.anti-inspect-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    font-family: 'Nunito', sans-serif;
}

.anti-inspect-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
}

/* Hiệu ứng làm mờ body */
body.anti-inspect-blur > :not(.anti-inspect-overlay) {
    filter: blur(8px);
    pointer-events: none !important;
    user-select: none !important;
}

@keyframes pulseShield {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
