.noscript-message {
  min-height: 100vh;
  padding: 20px;
  color: #fffffe;
  background-color: #004643;
  font-family: Arial, sans-serif;
  text-align: center;
}

#app-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #004643 30%, #001e1d 90%);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#app-loader h1 {
  margin: 0 0 20px;
  background: linear-gradient(45deg, #f9bc60 30%, #fffffe 70%);
  background-clip: text;
  font-size: 2.5rem;
  font-weight: bold;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: app-shell-fade-in 0.5s ease-out;
}

#app-loader .loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(249, 188, 96, 0.3);
  border-top-color: #f9bc60;
  border-radius: 50%;
  animation: app-shell-spin 1s linear infinite;
}

#app-loader p {
  margin-top: 16px;
  color: #abd1c6;
  font-size: 1rem;
  animation: app-shell-fade-in 0.8s ease-out;
}

@keyframes app-shell-spin {
  to { transform: rotate(360deg); }
}

@keyframes app-shell-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.app-ready #app-loader {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
