Add movie fusion packages with locked media, ZIP export, and batch forge UI.

Paired video mode encrypts movies, uses runner-only lock hints, bundles README plus artifacts per title, and supports batch forging with progress.
This commit is contained in:
drjones
2026-05-29 01:33:09 -07:00
parent 20eb5a3ba4
commit b99c8aab15
36 changed files with 2063 additions and 168 deletions

View File

@@ -1238,3 +1238,61 @@
.forge-simple-banner .font-tech {
margin-bottom: 0.35rem;
}
.batch-forge-panel {
padding: 1rem 1.1rem;
border: 1px solid rgba(212, 175, 55, 0.25);
}
.batch-forge-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.65rem;
font-size: 0.85rem;
color: var(--text-secondary);
}
.batch-progress-track {
height: 8px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
overflow: hidden;
}
.batch-progress-fill {
height: 100%;
border-radius: 999px;
background: linear-gradient(90deg, rgba(212, 175, 55, 0.85), rgba(120, 200, 255, 0.75));
transition: width 0.35s ease;
}
.batch-forge-log {
list-style: none;
margin: 0.75rem 0 0;
padding: 0;
font-size: 0.8rem;
max-height: 10rem;
overflow-y: auto;
}
.batch-forge-log li {
padding: 0.2rem 0;
color: var(--text-secondary);
}
.batch-forge-log li.batch-ok {
color: var(--neon-green, #6f6);
}
.batch-forge-log li.batch-fail {
color: var(--neon-red, #f55);
}
.download-actions {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
align-items: center;
margin-top: 0.75rem;
}