
/* Main button */
/* Main button */
.pointer {
  position: fixed;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(188, 78, 201, 0.35), rgba(30, 30, 30, 0.8) 65%);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(188, 78, 201, 1);
  transition: box-shadow 0.3s ease, background 0.3s ease;
  z-index: 1000;
  padding: 5px;
  opacity: 1;
  pointer-events: none;
}

.pointer {
    /* ... existing styles ... */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pointer.visible {
    opacity: 1;
    visibility: visible;
}

.pointer.hide {
    opacity: 0;
}

/* Inner content */
.pointer-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dotted-circle {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 1.5px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: border-color 0.3s ease;
}



.eye-icon {
  width: 30px;
  height:30px;
  fill: rgba(255, 255, 255, 0.9);
  z-index: 2;
  transition: fill 0.3s ease;
}



.text-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: rotate-text 7s linear infinite;
}

@keyframes rotate-text {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Message box */
#message-box {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  background-color: #bb4ec9;
  color: white;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 2000;
  font-size: 14px;
}

#message-box.show {
  opacity: 1;
}
