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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  color: #0b1220;
  background: #ffffff;
}

.stage {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 0;
  padding:
    max(1.5rem, env(safe-area-inset-top))
    max(1.5rem, env(safe-area-inset-right))
    max(1.5rem, env(safe-area-inset-bottom))
    max(1.5rem, env(safe-area-inset-left));
}

.wip {
  margin: 0;
  font-size: clamp(3.5rem, 18vw, 12rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

@media (orientation: landscape) and (max-height: 500px) {
  .wip {
    font-size: clamp(2.5rem, 22vh, 8rem);
  }
}

@media (prefers-color-scheme: dark) {
  body {
    color: #f4f7fb;
    background: #060e1a;
  }
}
