/* Merlin DBA Workbench — initial load splash (shown before Angular bootstraps) */
.merlin-splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 2rem;
  box-sizing: border-box;
  background-color: #f6f3f0;
  color: #323130;
  font-family: 'Segoe UI', 'Segoe UI Web (West European)', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.merlin-splash__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 28rem;
}

.merlin-splash__logo {
  width: min(220px, 70vw);
  height: auto;
  object-fit: contain;
  margin-bottom: 1.75rem;
}

.merlin-splash__title {
  margin: 0 0 0.35rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #0e1020;
}

.merlin-splash__subtitle {
  margin: 0 0 2rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  color: #605e5c;
}

.merlin-splash__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.merlin-splash__loader span {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #0e1020;
  animation: merlin-splash-pulse 1.2s ease-in-out infinite;
}

.merlin-splash__loader span:nth-child(2) {
  animation-delay: 0.15s;
}

.merlin-splash__loader span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes merlin-splash-pulse {
  0%,
  80%,
  100% {
    opacity: 0.25;
    transform: scale(0.85);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
