.pixelate .tn-atom {
  position: relative;
  overflow: hidden;
}

.pixelate .tn-atom::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 80px 80px;
  backdrop-filter: blur(12px);
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.pixelate .tn-atom::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: url("https://static.tildacdn.com/tild6430-3636-4237-a539-303139623334/si_eye-line.svg") center / contain no-repeat;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.pixelate:hover .tn-atom::after,
.pixelate:hover .tn-atom::before {
  opacity: 0;
}