/* Be Vietnam Pro (loaded via Google Fonts in _Layout.cshtml / _PublicLayout.cshtml) is designed
   specifically for Vietnamese diacritics -- applied portal-wide here rather than per-page so the
   public kiosk/display screens (which reuse this same stylesheet) get it too. */
body {
    font-family: "Be Vietnam Pro", system-ui, -apple-system, sans-serif;
}

/* Tailwind is loaded via the Play CDN (see Pages/Shared/_Layout.cshtml), which does not
   support custom keyframe animations without a build-time config file -- kept here instead as
   the one small piece of hand-written CSS this portal needs. */
@keyframes lis-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.blink {
    animation: lis-blink 1s step-start infinite;
}
