html, body { margin: 0; height: 100%; background: #8C6942; }
.splash { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; }
.splash img { width: 160px; height: 160px; animation: pulse 1.6s ease-in-out infinite; }
noscript { display: block; padding: 24px; font: 16px system-ui, sans-serif; text-align: center; }
@keyframes pulse { 50% { opacity: .6; transform: scale(.96); } }
@media (prefers-reduced-motion: reduce) { .splash img { animation: none; } }
