body.demo-locked {
  overflow: hidden;
}

body.demo-locked #app,
body.demo-locked main {
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
}

.demo-password-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 16%, rgba(224,90,63,.24), transparent 30%),
    radial-gradient(circle at 18% 80%, rgba(215,168,74,.22), transparent 28%),
    rgba(10, 18, 20, .9);
  backdrop-filter: blur(16px);
}

.demo-password-card {
  width: min(420px, 100%);
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,253,248,.96), rgba(240,234,223,.9));
  color: #123c36;
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
}

.demo-password-card h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
}

.demo-password-card p {
  margin: 0;
  color: rgba(18,60,54,.72);
  font-weight: 750;
  line-height: 1.45;
}

.demo-password-card label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.demo-password-card input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(18,60,54,.2);
  border-radius: 10px;
  padding: 0 13px;
  font: inherit;
  font-weight: 800;
  background: #fffdf8;
  color: #123c36;
}

.demo-password-card button {
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #123c36, #285c9a);
  color: #fffdf8;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.demo-password-error {
  min-height: 20px;
  color: #b3261e;
  font-size: 13px;
  font-weight: 900;
}
