/* Shared Loading Screen Component
   Replaces all legacy page-local loaders.
   Used on index.html, diplora.html, motivate.html,
   fitphone.html, phillipswall.html */

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-screen__text {
  color: #6E07F3;
  font-size: 1.5rem;
  animation: pulse 1.5s infinite;
  font-family: "Syne", "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}