* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  cursor: none;
  overflow: hidden;
}

#center {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

#center h1 {
  font-size: 7vw;
  color: #000;
  text-align: center;
  font-family: 'Arial Black', sans-serif;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -2px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
  position: relative;
}

#center h1 span {
  font-weight: 900;
  display: block;
  font-size: 8vw;
}

.imagediv {
  position: absolute;
  width: 180px;
  height: 200px;
  overflow: hidden; /* ✅ hidden rakhna jaruri hai */
  pointer-events: none;
  border-radius: 30px;
  transform: translate(-50%, -50%);
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); */
  z-index: 5;
  background: transparent; /* ✅ explicitly transparent */
}

.imagediv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background:transparent; /* ✅ loading placeholder */
}

#cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 50%;
  z-index: 9999;
  transition: transform 0.5s ease;
  mix-blend-mode: difference;
}