/* Minimalistic Ultra-Sleek Gate Lock Overlay Styles */
#gate-lock-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
}

#gate-lock-overlay.access-granted {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gate-card {
  background: rgba(18, 18, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 20px;
  width: 88%;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gate-input-wrapper {
  position: relative;
  width: 100%;
}

.gate-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  text-align: center;
  outline: none;
  transition: all 0.2s ease;
}

.gate-input::placeholder {
  color: #666668;
}

.gate-input:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.gate-btn {
  width: 100%;
  padding: 12px;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.gate-btn:active {
  transform: scale(0.98);
}

.gate-btn:hover {
  opacity: 0.9;
}

.gate-error {
  font-size: 11px;
  color: #ff3b30;
  min-height: 14px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gate-error.show {
  opacity: 1;
}
