html.preview-locked {
  overflow: hidden;
  background: #071a3d;
}

html.preview-locked body > *:not(#preview-access-gate) {
  display: none !important;
}

#preview-access-gate {
  position: fixed;
  z-index: 2147483647;
  inset: 0;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 15%, rgba(29, 110, 255, 0.34), transparent 34%),
    radial-gradient(circle at 82% 80%, rgba(255, 205, 39, 0.22), transparent 30%),
    linear-gradient(145deg, #04132f, #0a2f69 58%, #071a3d);
  color: #102247;
  font-family: Inter, Arial, sans-serif;
}

.preview-access-card {
  width: min(100%, 460px);
  padding: clamp(24px, 6vw, 42px);
  border: 3px solid #ffc928;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  text-align: center;
}

.preview-access-star {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  background: #ffc928;
  color: #071a3d;
  font-size: 2.25rem;
  line-height: 1;
}

.preview-access-card h1 {
  margin: 0 0 12px;
  color: #071a3d;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.3rem, 10vw, 3.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.preview-access-card p {
  margin: 0 0 22px;
  color: #40516f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.preview-access-form {
  display: grid;
  gap: 12px;
  text-align: left;
}

.preview-access-form label {
  color: #102247;
  font-weight: 900;
}

.preview-access-form input {
  width: 100%;
  min-height: 52px;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 2px solid #b8c5da;
  border-radius: 10px;
  background: #ffffff;
  color: #071a3d;
  font: inherit;
}

.preview-access-form input:focus {
  border-color: #1267dd;
  outline: 3px solid rgba(18, 103, 221, 0.22);
}

.preview-access-form button {
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  background: #ffc928;
  color: #071a3d;
  cursor: pointer;
  font: 900 1rem Inter, Arial, sans-serif;
}

.preview-access-form button:hover {
  background: #ffda68;
}

.preview-access-status {
  min-height: 24px;
  margin: 0 !important;
  color: #b42318 !important;
  font-size: 0.9rem !important;
}

