:root{--page-title-display:none;}/* Start custom CSS */:is(#bcl-hotspot-life-lessons, #bcl-hotspot-numbers, #bcl-hotspot-abcs, #bcl-hotspot-shapes-colors)::after {
  content: "✦";
  position: absolute;
  top: 7%;
  right: 7%;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
  opacity: 0;
  transform: scale(0.7) rotate(-8deg);
  transform-origin: center;
  pointer-events: none;
  text-shadow: 0 0 4px #ffffff, 0 0 10px rgba(255,255,255,0.95), 0 0 18px rgba(246,183,60,0.8);
}

:is(#bcl-hotspot-life-lessons, #bcl-hotspot-numbers, #bcl-hotspot-abcs, #bcl-hotspot-shapes-colors):is(:hover, :focus-visible, :active)::after {
  opacity: 1;
  animation: bcl-hotspot-twinkle 700ms ease-in-out infinite alternate;
}

@keyframes bcl-hotspot-twinkle {
  from { transform: scale(0.8) rotate(-8deg); opacity: 0.78; }
  to { transform: scale(1.3) rotate(8deg); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  :is(#bcl-hotspot-life-lessons, #bcl-hotspot-numbers, #bcl-hotspot-abcs, #bcl-hotspot-shapes-colors):is(:hover, :focus-visible, :active)::after {
    animation: none;
    transform: scale(1.1);
  }
}/* End custom CSS */