body,
html {
  margin: 0;
  padding: 0;
  overflow: hidden; /* prevent scroll while loading */
  background: #0f0f0f;
  height: 100%;
}

.loader-wrapper {
  position: fixed;
  inset: 0;
  background: #0f0f0f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-content {
  text-align: center;
}

.logo-svg {
  width: 300px;
  height: 300px;
  margin-bottom: 20px;
}

.logo-svg svg {
  width: 100%;
  height: 100%;
}

.loader-text {
  color: #edebe9;
  font-size: 18px;
  letter-spacing: 2px;
  opacity: 0;
}

.page-content {
  opacity: 0; /* hidden until loader finishes */
  transition: opacity 0.6s ease;
}
