.dc-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ─── HOW TO ─────────────────────────────────────── */

.dc-how {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dc-how-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 0.2rem;
}

.dc-how-step {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}

.dc-how-step::before {
  content: '→ ';
  color: var(--muted2);
}

/* ─── DROP ZONE ──────────────────────────────────── */

.dc-hidden { display: none !important; }

.dc-drop {
  background: var(--bg2);
  border: 0.5px dashed var(--border);
  border-radius: 10px;
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  min-height: 130px;
}

.dc-drop:hover,
.dc-drop.dragover {
  border-color: var(--accent);
  background: var(--bg3);
}

.dc-drop-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.dc-drop-icon {
  font-size: 28px;
  color: var(--muted2);
  line-height: 1;
}

.dc-drop-text {
  font-size: 13px;
  color: var(--muted);
}

.dc-drop-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--mono);
  font-size: inherit;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: pointer;
}

.dc-drop-hint {
  font-size: 10px;
  color: var(--muted2);
  letter-spacing: 0.06em;
}

/* ─── PROGRESS ───────────────────────────────────── */

.dc-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dc-progress-bg {
  height: 3px;
  background: var(--bg3);
  border-radius: 2px;
  overflow: hidden;
}

.dc-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease;
}

.dc-status-msg {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ─── DONE ───────────────────────────────────────── */

.dc-done {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dc-done-ok {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.dc-download-btn {
  align-self: flex-start;
  background: none;
  border: 0.5px solid var(--accent);
  border-radius: 6px;
  padding: 0.45rem 1.4rem;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.dc-download-btn:hover {
  background: var(--accent);
  color: var(--bg);
}

.dc-done-hint {
  font-size: 10px;
  color: var(--muted2);
  letter-spacing: 0.04em;
}

/* ─── ERROR ──────────────────────────────────────── */

.dc-error {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dc-error span {
  font-size: 11px;
  color: var(--wip);
  letter-spacing: 0.04em;
}

.dc-retry-btn {
  align-self: flex-start;
  background: none;
  border: 0.5px solid var(--border);
  border-radius: 5px;
  padding: 0.35rem 0.85rem;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.dc-retry-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

/* ─── GUIDE ──────────────────────────────────────── */

.dc-guide {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--border);
}

.dc-guide-section {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dc-guide-title {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
}

.dc-guide-items {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dc-guide-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 11px;
  line-height: 1.6;
}

.dc-guide-file {
  font-size: 10px;
  color: var(--accent);
  white-space: nowrap;
  flex: 0 0 13em;
}

.dc-guide-n {
  color: var(--muted2);
  flex: 0 0 1.4em;
}

.dc-guide-dot {
  color: var(--muted2);
  flex: 0 0 1.4em;
}

.dc-guide-desc {
  color: var(--muted);
}

.dc-guide-mono {
  color: var(--accent);
  font-family: var(--mono);
}

.dc-guide-desc a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s;
}

.dc-guide-desc a:hover {
  opacity: 0.7;
}
