.result-placeholder {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  border: 1px dashed var(--control-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.ghost-art {
  display: grid;
  gap: 6px;
  width: min(640px, 92vw);
}

.ghost-row {
  height: 16px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.placeholder-text {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.result {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 18px;
}

.art-wrap {
  border-radius: 16px;
  border: 1px solid var(--control-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--glow);
  padding: 12px;
  max-width: min(900px, 94vw);
}

.art-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.image-link:hover .art-image {
  filter: brightness(1.03);
}

.result-actions {
  display: grid;
  grid-auto-flow: column;
  gap: 10px;
  align-items: center;
}

@media (max-width: 600px) {
  .result-actions {
    grid-auto-flow: row;
    width: 100%;
  }
  .result-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--control-border);
  color: var(--text);
  text-decoration: none;
  transition: transform .2s, border-color .2s, background .2s, box-shadow .2s;
}

.btn.outline {
  background: linear-gradient(90deg, var(--btn-grad-from), var(--btn-grad-to));
  color: white;
  border: 0;
  box-shadow: var(--btn-shadow);
}

.btn.outline:hover {
  transform: translateY(-2px);
}

.btn.subtle {
  background: rgba(255,255,255,0.06);
}

.btn.subtle:hover {
  border-color: var(--ring);
  box-shadow: var(--glow);
}

.result-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  max-width: 600px;
  line-height: 1.5;
}
