#ie-scratch-hero-wrap {
  position: relative;
  width: 640px;
  height: 510px;
  overflow: hidden;
  background: transparent;
  cursor: none;
}

#ie-scratch-hero-wrap .ie-scratch-reveal-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

#ie-scratch-hero-wrap .ie-scratch-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
  transition: opacity 1s ease-in-out;
}

#ie-scratch-hero-wrap .ie-scratch-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

#ie-scratch-hero-wrap .ie-scratch-cursor img {
  width: 40px;
  height: 40px;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

#ie-scratch-hero-wrap .ie-scratch-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #0047AB;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  z-index: 20;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
  white-space: nowrap;
}

#ie-scratch-hero-wrap .ie-scratch-hint.ie-hint-hidden {
  opacity: 0;
}

#ie-scratch-hero-wrap .ie-scratch-hint svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  animation: ie-hint-swipe 1.2s ease-in-out infinite;
}

@keyframes ie-hint-swipe {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}
