
/* ===== AUTH GATE ===== */

#auth-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 3, 1, 0.96);
  backdrop-filter: blur(12px);
}

.gate-box {
  width: 100%;
  max-width: 380px;
  padding: 48px 36px;
  background: rgba(25, 18, 14, 0.85);
  border: 1px solid rgba(184, 144, 90, 0.22);
  border-radius: 24px;
  text-align: center;
}

.gate-lbl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}

.gate-ttl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.gate-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.gate-field input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(184, 144, 90, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.12em;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.gate-field input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 170, 122, 0.6);
}

.gate-btn {
  margin-top: 18px;
  padding: 14px 36px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(180deg, #cda06c 0%, #b8905a 100%);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s, filter 0.2s;
  width: 100%;
}

.gate-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.gate-err {
  margin-top: 14px;
  font-size: 0.8rem;
  color: #e07060;
  min-height: 18px;
}
</style>
