.dev-console-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.dev-console-overlay.dev-console-visible {
  opacity: 1;
  pointer-events: auto;
}

.dev-console {
  width: 520px;
  max-width: 90vw;
  max-height: 70vh;
  background: #1a1a24;
  border: 1px solid #3a3a4a;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  font-family: "Courier New", "Consolas", monospace;
  font-size: 13px;
}

.dev-console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #12121c;
  border-bottom: 1px solid #3a3a4a;
  color: #aaa;
  font-size: 12px;
  font-weight: 600;
}

.dev-console-close {
  background: none;
  border: none;
  color: #888;
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.dev-console-close:hover { color: #e0e0e0; }

.dev-console-output {
  flex: 1;
  overflow-y: auto;
  padding: 10px 14px;
  min-height: 120px;
  max-height: 300px;
  line-height: 1.4;
}

.dev-console-output > div {
  white-space: pre-wrap;
  word-break: break-all;
}

.dev-console-input-line { color: #a78bfa; }
.dev-console-info { color: #aaa; }
.dev-console-success { color: #22c55e; }
.dev-console-error { color: #ef4444; }

.dev-console-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-top: 1px solid #3a3a4a;
  background: #12121c;
}

.dev-console-prompt {
  color: #7c5cfc;
  font-weight: 700;
}

.dev-console-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #e0e0e8;
  font-family: inherit;
  font-size: 13px;
  caret-color: #7c5cfc;
}

.logo-explosion-stage {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 450;
  pointer-events: none;
}

.logo-char {
  position: absolute;
  pointer-events: none;
  will-change: left, top, transform;
}
