/* ============================================================
   Upload — entry submission (app/upload.html)
   Uses the browser File API for a local preview only;
   nothing is uploaded to any server in this demo.
   ============================================================ */

.more-link { font-size: 13.5px; font-weight: 700; color: var(--gold); }

/* rights & rules consent */
.check-err { font-size: 12.5px; color: var(--danger); font-weight: 600; margin: 0 0 14px; }

/* ---------- locked — no available ticket ---------- */
.upload-locked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 34px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.02);
}
.upload-locked .dz-icon { margin-bottom: 6px; }
.upload-locked p { font-size: 13.5px; color: var(--muted); max-width: 320px; }
.upload-locked-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  width: 100%;
  max-width: 320px;
}

/* ---------- small context line with an available ticket ---------- */
.upload-context {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(244, 176, 33, 0.3);
  border-radius: 999px;
  background: var(--gold-faint);
}
.upload-context svg { width: 14px; height: 14px; color: var(--gold); }
.upload-context b { color: var(--txt); }

/* ---------- dropzone ---------- */
.dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 40px 20px;
  border: 1.5px dashed rgba(255, 255, 255, 0.22);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.dropzone:hover, .dropzone.dragover {
  border-color: var(--gold);
  background: var(--gold-faint);
}
.dropzone:active { transform: scale(0.99); }
.dz-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gold-faint);
  border: 1px solid rgba(244, 176, 33, 0.4);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.dz-icon svg { width: 24px; height: 24px; }
.dropzone b { font-size: 15px; font-weight: 700; }
.dropzone .muted { font-size: 12.5px; }

/* ---------- preview ---------- */
.dz-preview { display: flex; flex-direction: column; gap: 12px; }
.dz-preview video {
  width: 100%;
  max-height: 320px;
  border-radius: var(--r-md);
  background: #050403;
  border: 1px solid var(--line);
  object-fit: contain;
}
.dz-file-row { display: flex; align-items: center; gap: 12px; }
.dz-file-row .grow { flex: 1; min-width: 0; }
.dz-file-name { font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dz-file-size { font-size: 12px; color: var(--muted); }
.dz-remove { flex: none; }

/* ---------- requirements ---------- */
.req-list { display: flex; flex-direction: column; }
.req-list li { display: flex; gap: 10px; padding: 7px 0; font-size: 13px; color: var(--muted); }
.req-list li svg { width: 15px; height: 15px; color: var(--gold); flex: none; margin-top: 2px; }

/* ---------- submit success ---------- */
.entry-card-summary {
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px;
  display: flex; flex-direction: column; gap: 7px;
  font-size: 13.5px;
}
.entry-card-summary .t-row { display: flex; justify-content: space-between; gap: 12px; }
.entry-card-summary .t-row b { font-variant-numeric: tabular-nums; text-align: right; }
