body { background-color:#000; font-family:Inter, sans-serif;}
#hero-title, #hero-subtitle { text-shadow:0 0 20px rgba(0,0,0,.8);}

/* Failsafe: if JS fails or stalls, auto-fade the overlay off-screen so content is visible */
#intro-overlay {
	animation: overlay-failsafe 14s linear forwards;
}

@keyframes overlay-failsafe {
	0% { opacity: 1; pointer-events: auto; }
	80% { opacity: 1; pointer-events: auto; }
	100% { opacity: 0; pointer-events: none; visibility: hidden; }
}
