/* Custom custom styles for the standalone InstaLive page */

/* Smooth custom borders config */
.border-zinc-850 {
  border-color: rgba(39, 39, 42, 0.7);
}

.border-zinc-905 {
  border-color: rgba(24, 24, 27, 0.9);
}

/* Analog tick digital counter glow-digit effect */
.glow-digit {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.35), 0 0 3px rgba(255, 255, 255, 0.1);
}

/* Animations for lazy loading avatar DP and live signals */
@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.02);
  }
}

.animate-pulseGlow {
  animation: pulseGlow 4s infinite ease-in-out;
}

/* Keyframes for soft entry animations */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#resultSection:not(.hidden) {
  animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Hide native scroll bars gracefully for full aesthetic precision */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #09090b;
}

::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3f3f46;
}
