/* small file for hero extras & animation */
.holo-orb { display:flex; justify-content:center; align-items:center; margin:0 auto; }
.holo-logo { transition: transform 1.6s ease, box-shadow 1.6s ease; }

.holo-orb:hover .holo-logo { transform: rotate(-6deg) scale(1.03); box-shadow: 0 18px 60px rgba(28,183,197,0.16); }

/* subtle glow animation on hero title */
@keyframes holoGlow {
  0% { text-shadow: 0 0 10px rgba(28,183,197,0.05); }
  50% { text-shadow: 0 0 30px rgba(255,123,34,0.08); transform: translateY(-2px); }
  100% { text-shadow: 0 0 10px rgba(28,183,197,0.05); transform: translateY(0); }
}
.holo-title-text { animation: holoGlow 4s ease-in-out infinite; }
