/* AdBlock Detection Modal */
.integrity-check-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

.integrity-check-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 2rem;
    width: 90%;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    color: #1e293b;
    animation: modalScaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

@keyframes modalScaleIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.integrity-check-icon {
    width: 90px;
    height: 90px;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.integrity-check-icon i {
    font-size: 3rem;
    color: #ef4444;
}

.integrity-check-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #0f172a;
}

.integrity-check-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.integrity-check-btn {
    background: #ff0000;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    width: 100%;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(255, 0, 0, 0.3);
}

.integrity-check-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -5px rgba(255, 0, 0, 0.4);
}

.integrity-check-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #94a3b8;
}
