.create-options {
      display: grid;
      gap: 10px;}

#createLanding.hidden {
      display: none;}

/* Create Wizard */
.wizard {
  opacity: 1;
  animation: fadeIn 0.25s ease forwards;
}

.wiz-progress {
  text-align: center;
  font-size: 12px;
  color: #666;
  padding: 6px 0 16px;
  font-weight: 500;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wiz-pfp-area {
  display: flex;
  justify-content: center;
  padding: 40px 0 20px;
}

.wiz-pfp-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 3px dashed #555;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.wiz-pfp-circle:hover {
  border-color: var(--accent);
  background: var(--surface-3);
}

.wiz-pfp-circle.has-image {
  border-style: solid;
  border-color: var(--accent);
}

.wiz-pfp-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
}

.wiz-top-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: var(--surface-1);
  border-radius: 10px;
  border: 1px solid var(--outline-color);
}

.wiz-mini-pfp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  flex-shrink: 0;
  overflow: hidden;
}

.wiz-mini-pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wiz-char-name-preview {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  flex: 1;
}

.wiz-bottom {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  justify-content: flex-end;
}

.wiz-back {
  padding: 10px 22px;
  border-radius: 10px;
  border: 1px solid var(--outline-color);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}

.wiz-back:hover {
  background: var(--surface-2);
}

.wiz-cancel {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: #e55;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s;
}

.wiz-cancel:hover {
  background: rgba(238,85,85,0.12);
}

.wiz-skip {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--outline-color);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.wiz-skip:hover {
  border-color: #555;
  color: var(--text-muted);
}

.wiz-chip-hint {
  font-size: 11px;
  color: #666;
  margin: 6px 0 8px;
}

.wiz-archetype-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.wiz-arch-chip {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 16px;
  border: 1px solid var(--outline-color);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
}

.wiz-arch-chip:hover {
  border-color: #5d5d76;
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.wiz-arch-chip.used {
  opacity: 0.4;
  pointer-events: none;
}

.radio-hint {
  display: block;
  font-size: 11px;
  color: #666;
  margin-top: 2px;
  margin-left: 26px;
}

.wiz-next, .wiz-advanced-btn {
  padding: 10px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.wiz-next:disabled {
  opacity: 0.4;
  cursor: default;
}

.wiz-advanced-btn {
  background: var(--surface-3);
  border: 1px solid var(--outline-bright);
  color: var(--text-muted);
}

.wiz-advanced-btn:hover {
  background: var(--surface-3);
}

.wiz-ready {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0 10px;
}

.wiz-ready-pfp {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
}

.wiz-ready-pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Live chat preview on greeting step */
.wiz-chat-preview {
  margin-top: 16px;
  border: 1px solid var(--surface-2);
  border-radius: 12px;
  padding: 12px;
  background: #1a1a2e;
}

.wiz-chat-preview-header {
  font-size: 10px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.wiz-chat-bubble {
  display: flex;
  gap: 10px;
  background: var(--surface-2);
  border-radius: 10px;
  padding: 10px 14px;
  align-items: flex-start;
}

.wiz-chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #3a3a50;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wiz-chat-avatar-placeholder {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
}

.wiz-chat-body {
  flex: 1;
  min-width: 0;
}

.wiz-chat-bubble-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-soft);
  margin-bottom: 4px;
}

.wiz-chat-bubble-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.wiz-chat-placeholder {
  color: #555;
  font-style: italic;
}

/* Compact wizard steps */
.wiz-step label {
  margin-bottom: 4px;
}

.wiz-step input,
.wiz-step textarea {
  margin-bottom: 6px;
}
