/* ── Reset ──────────────────────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
canvas { display: block; }

/* ── Loading screen ─────────────────────────────────────────────────────────── */
#loading {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #0a0a2e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.4s ease;
}
#loading.hidden { opacity: 0; pointer-events: none; }

#loading-emoji {
  font-size: 52px;
  line-height: 1;
  animation: bounce 0.7s ease-in-out infinite alternate;
}

#loading-text {
  font-size: 16px;
  font-weight: bold;
  color: #aaaaff;
  letter-spacing: 2px;
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes bounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-18px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
