/* Temporary site-wide preview gate — disable via site-gate.js */

html.mlz-gate-locked,
html.mlz-gate-locked body {
  overflow: hidden !important;
  height: 100%;
}

html.mlz-gate-locked body > *:not(#mlz-site-gate) {
  visibility: hidden;
  pointer-events: none;
}

#mlz-site-gate {
  visibility: visible;
  pointer-events: auto;
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: #05050c;
  background-image:
    radial-gradient(circle at top right, rgba(162, 0, 255, 0.18), transparent 42%),
    radial-gradient(circle at bottom left, rgba(0, 240, 255, 0.16), transparent 42%),
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
  font-family: 'Chakra Petch', sans-serif;
  color: #fff;
}

.mlz-gate-card {
  width: 100%;
  max-width: 440px;
  padding: 36px 32px 32px;
  border-radius: 14px;
  border: 1px solid rgba(30, 38, 61, 0.9);
  background: rgba(8, 10, 18, 0.88);
  box-shadow:
    0 0 40px rgba(162, 0, 255, 0.12),
    0 0 80px rgba(0, 240, 255, 0.08);
  text-align: center;
}

.mlz-gate-logo {
  height: 42px;
  width: auto;
  margin: 0 auto 22px;
}

.mlz-gate-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7590;
  margin-bottom: 12px;
}

.mlz-gate-kicker .gem {
  color: #ffaa00;
}

.mlz-gate-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(14px, 3.5vw, 18px);
  line-height: 1.55;
  margin-bottom: 14px;
  text-shadow: 0 0 20px rgba(162, 0, 255, 0.25);
}

.mlz-gate-lead {
  color: #8b9bb4;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.mlz-gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.mlz-gate-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8b9bb4;
}

.mlz-gate-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #1e263d;
  background: rgba(5, 5, 12, 0.85);
  color: #fff;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.mlz-gate-input:focus {
  border-color: rgba(0, 240, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12);
}

.mlz-gate-btn {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 22px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #a200ff, #00f0ff);
  color: #05050c;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.25);
}

.mlz-gate-btn:hover {
  filter: brightness(1.08);
}

.mlz-gate-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.mlz-gate-err {
  min-height: 1.2em;
  margin-top: 4px;
  font-size: 13px;
  color: #ff6b8a;
  text-align: center;
}

.mlz-gate-foot {
  margin-top: 18px;
  font-size: 12px;
  color: #6b7590;
}
