/**
 * Drop Zone Styles
 * Full-screen overlay for drag-and-drop file uploads
 */

.drop-zone {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 3px dashed var(--orp-color);
  pointer-events: none;
}

.drop-zone.active {
  display: flex;
  pointer-events: auto;
}

.drop-zone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  color: var(--text);
  padding: 48px;
  border-radius: 24px;
  background: var(--control-bg);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.drop-zone-icon {
  width: 64px;
  height: 64px;
  color: var(--orp-color, #3083ff);
  opacity: 0.9;
}

.drop-zone-content p {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
}

.drop-zone-hint {
  font-size: 0.875rem;
  opacity: 0.6;
  font-family: monospace;
}

/* Animation when active */
.drop-zone.active .drop-zone-icon {
  animation: dropBounce 0.6s ease-in-out infinite alternate;
}

@keyframes dropBounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-8px);
  }
}
