*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, #root {
  height: 100%;
}

body {
  background: #0D1B2A;
  font-family: Inter, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.loading-shell {
  position: fixed;
  inset: 0;
  background: #0D1B2A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #6B8FAF;
  font-size: 13px;
}

.loading-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #E8F0F8;
  font-weight: 700;
  font-size: 15px;
}

.loading-logo {
  width: 28px;
  height: 28px;
  background: #2AB5A0;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  color: #0D1B2A;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 2px solid #2E4159;
  border-top-color: #2AB5A0;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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