.app-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(238, 238, 238, 0.94);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.app-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.app-loader-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
}

.app-loader-crest {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #FFFFFF !important;
  animation: loader-breathe 1.4s ease-in-out infinite;
}

.app-loader-ring {
  position: absolute;
  inset: 0;
  border: 4px solid rgba(7, 7, 7, 0.12);
  border-top-color: #070707;
  border-right-color: #070707;
  border-radius: 50%;
  animation: loader-spin 0.9s linear infinite;
}

.app-loader-text {
  color: #070707;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  animation: loader-text-pulse 1.2s ease-in-out infinite;
}

@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

@keyframes loader-breathe {
  50% { transform: scale(0.9); }
}

@keyframes loader-text-pulse {
  50% { opacity: 0.45; }
}
