/* ================================
   RAYCAST RETICLE (Center Screen)
   Simple dot for targeting scrolls
   ================================ */

.raycast-reticle {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: all 0.15s ease;
}

/* Inner dot */
.raycast-reticle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}

/* Outer ring for visibility */
.raycast-reticle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}

/* Active state - when targeting a scroll */
.raycast-reticle.targeting-scroll::before {
  background: #3b82f6; /* Blue dot */
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.8);
}

.raycast-reticle.targeting-scroll::after {
  border-color: rgba(59, 130, 246, 0.6); /* Blue ring */
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

/* Pulse animation when targeting */
.raycast-reticle.targeting-scroll {
  animation: reticlePulse 1s ease-in-out infinite;
}

@keyframes reticlePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
