html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color-scheme: dark;
  background: #000;
  border-radius: 8px;
}

#root {
  width: 100%;
  height: 100%;
}

#nova-static-splash {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  pointer-events: none;
  background: transparent;
}

#nova-static-splash .static-splash-win {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

#nova-static-splash .static-splash-drag {
  height: 36px;
  flex-shrink: 0;
  -webkit-app-region: drag;
}

#nova-static-splash .static-splash-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 24px 32px;
}

#nova-static-splash .static-splash-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(92vw, 520px);
  text-align: center;
}

#nova-static-splash .static-splash-headline {
  margin: 0;
  display: grid;
  justify-items: center;
  width: 100%;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.65rem, 5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

#nova-static-splash .static-splash-headline-slot,
#nova-static-splash .static-splash-headline-live {
  grid-area: 1 / 1;
}

#nova-static-splash .static-splash-headline-slot {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}

#nova-static-splash .static-splash-headline-live {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
}

#nova-static-splash .static-splash-cursor {
  display: inline-block;
  margin-left: 2px;
  font-weight: 300;
  color: #c4b5fd;
  animation: static-splash-cursor-blink 0.85s step-end infinite;
}

#nova-static-splash .static-splash-line {
  margin: 0;
  width: 100%;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.95rem, 2.8vw, 1.125rem);
  font-weight: 500;
  line-height: 1.45;
  color: #b0b0b0;
  min-height: calc(1.45em * 1);
  clip-path: inset(0 100% 0 0);
  filter: blur(10px);
  opacity: 0;
  transform: translate3d(-6px, 0, 0);
}

@keyframes static-splash-cursor-blink {
  0%,
  45% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}
