.slime-field {
  display: grid;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid #ffffff14;
}

.slime-field > label {
  font-size: 10px;
  letter-spacing: .16em;
  color: #b8fa48;
  font-weight: 800;
}

.slime-field select {
  width: 100%;
  border: 1px solid #ffffff20;
  border-radius: 14px;
  background: #0c1812;
  color: #f7faf7;
  padding: 13px;
}

.designer-picker {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.designer-picker button {
  border: 1px solid #bafb4740;
  border-radius: 14px;
  background: #bafb4712;
  color: #cfff7d;
  padding: 0 13px;
  font-weight: 800;
}

.slime-details {
  display: grid;
  gap: 10px;
}

.slime-details > div {
  grid-column: 1 / -1;
}

.slime-details label {
  display: grid;
  gap: 6px;
  color: #b9c7be;
  font-size: 11px;
  font-weight: 700;
}

.slime-details input,
.slime-details textarea,
.slime-details select {
  width: 100%;
  border: 1px solid #ffffff20;
  border-radius: 12px;
  background: #0c1812;
  color: #f7faf7;
  padding: 11px;
  font: inherit;
}

.slime-details textarea {
  min-height: 72px;
  resize: vertical;
}

.ability-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ability-option {
  display: grid;
  gap: 3px;
  padding: 11px;
  border: 1px solid #ffffff20;
  border-radius: 12px;
  background: #0c1812;
  color: #f7faf7;
  text-align: left;
}

.ability-option span {
  color: #91a096;
  font-size: 10px;
  text-transform: capitalize;
}

.ability-option.selected {
  border-color: #b8fa48;
  background: #b8fa4812;
  box-shadow: inset 0 0 0 1px #b8fa4838;
}

.awakening-prompt {
  position: absolute;
  z-index: 30;
  left: auto;
  right: 18px;
  top: 18px;
  bottom: auto;
  width: min(300px, calc(100% - 32px));
  padding: 17px 18px;
  border: 1px solid #fff3b859;
  border-radius: 20px;
  background: linear-gradient(145deg, #173229f2, #0d1d17f5);
  box-shadow: 0 18px 45px #07100bcc, inset 0 1px #ffffff1f;
  text-align: center;
  animation: prompt-arrival .45s cubic-bezier(.2, .9, .25, 1.25) both;
}

.awakening-prompt small {
  color: #ffe67c;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.awakening-prompt h2 {
  margin: 5px auto 12px;
  max-width: 340px;
  font: 800 16px/1.3 Manrope, sans-serif;
}

.awakening-prompt button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  background: linear-gradient(135deg, #fff3a0, #f5bc37);
  color: #3c2905;
  box-shadow: 0 8px 24px #f2bd4145, inset 0 1px #fffbdc;
  font-weight: 900;
  cursor: pointer;
}

.awakening-prompt button span {
  display: inline-block;
  margin-right: 5px;
  animation: star-turn 2.4s linear infinite;
}

.creation-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin: 18px 0 0;
  padding: 0 0 18px;
  border-bottom: 1px solid #ffffff14;
  list-style: none;
}

.creation-journey li {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #718078;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.creation-journey span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid #ffffff1c;
  border-radius: 50%;
  background: #09140f;
}

.creation-journey li.active {
  color: #ffe88a;
}

.creation-journey li.active span {
  border-color: #ffd85d;
  box-shadow: 0 0 18px #ffd85d4a;
}

.creation-journey li.complete {
  color: #cfff7d;
}

.creation-journey li.complete span {
  border-color: #b8fa48;
  background: #b8fa48;
  color: #122015;
}

.creation-locked .creation-option {
  display: none;
}

.creation-option {
  animation: option-reveal .36s ease both;
}

.option-section p {
  margin: -7px 0 13px;
  color: #91a096;
  font-size: 11px;
  line-height: 1.45;
}

.face-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.face-option {
  display: grid;
  place-items: center;
  gap: 7px;
  min-height: 84px;
  padding: 9px;
  border: 1px solid #ffffff1a;
  border-radius: 15px;
  background: #ffffff09;
  color: #edf6f0;
  cursor: pointer;
  font-size: 10px;
  text-align: center;
}

.face-option.selected {
  border-color: #bafb47;
  background: #bafb4710;
  box-shadow: 0 0 0 2px #bafb4724;
}

.face-art {
  display: block;
  width: 64px;
  height: 45px;
  overflow: hidden;
  border-radius: 10px;
  background: radial-gradient(circle, #f5eef4 0 42%, #d8c9dd 100%);
}

.face-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2.7);
}

@keyframes prompt-arrival {
  from { opacity: 0; transform: translateY(12px) scale(.94); }
}

@keyframes option-reveal {
  from { opacity: 0; transform: translateY(8px); }
}

@keyframes star-turn {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .awakening-prompt,
  .awakening-prompt button span,
  .creation-option { animation: none; }
}

@media (max-width: 620px) {
  .awakening-prompt {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 12px;
    width: min(360px, calc(100% - 24px));
    transform: translateX(-50%);
  }

  @keyframes prompt-arrival {
    from { opacity: 0; transform: translate(-50%, 12px) scale(.94); }
  }
}
.preview-floor {
  display: none;
}

.designer-stage::before {
  display: none;
}
