:root {
  --bg: #0b0f14;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.66);
  --stroke: rgba(255, 255, 255, 0.12);
  --accent: #00CFFF;
  --danger: #ff5566;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --r: 16px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background:
        radial-gradient(1100px 600px at 15% 15%, rgba(0, 207, 255, 0.12), transparent 55%),
    radial-gradient(900px 520px at 88% 18%, rgba(120, 150, 255, 0.10), transparent 60%),
    radial-gradient(900px 600px at 70% 92%, rgba(255, 96, 128, 0.10), transparent 55%),
    var(--bg);
  font-family: "Inter var", ui-sans-serif, system-ui, -apple-system, Segoe UI, Arial, "Noto Sans CJK SC", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

a { color: var(--text); text-decoration: none; opacity: 0.9; }
a:hover { opacity: 1; text-decoration: underline; }

.shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px;
}
.shell--with-fixed-dock {
  padding-top: 9rem;
}
.shell--narrow { max-width: 640px; }

.shell--login-joomla {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.card--login-gate {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
  padding: 28px 24px 24px;
}
.h1--login {
  margin-bottom: 8px;
  font-size: 20px;
}
.note--login-lead {
  margin: 16px 0 0;
  font-size: 14px;
}
.btn--login-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 260px;
  margin: 22px auto 0;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
}
.note--login-after {
  margin: 18px 0 0;
  font-size: 13px;
}
.link-muted {
  color: var(--muted);
  text-decoration: none;
}
.link-muted:hover {
  color: var(--text);
  text-decoration: underline;
}

.site-footer {
  flex-shrink: 0;
  text-align: center;
  padding: 20px 22px 28px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.site-footer p {
  margin: 0;
  line-height: 1.5;
}

body.site-auth {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
body.site-auth > main {
  flex: 1 1 auto;
}
body.site-auth .shell--login-joomla {
  min-height: 0;
}

.app-header-dock {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(11, 15, 20, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}
.app-header-dock__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 22px 12px;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 18px;
  padding: 14px 16px;
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: var(--shadow), 0 0 12px rgba(0, 207, 255, 0.18);
  backdrop-filter: blur(10px);
}
.topbar--dock {
  margin: 0 0 10px;
}
.brand { font-weight: 720; letter-spacing: 0.5px; }
.nav { display: flex; gap: 14px; font-size: 14px; color: var(--muted); flex-wrap: wrap; justify-content: flex-end; align-items: center; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--text); }
.muted { color: var(--muted); }

.nav-logout {
  margin: 0;
}
.nav-logout__btn {
  font-size: 14px;
}
.linkbtn {
  padding: 0;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
}
.linkbtn:hover { color: var(--text); text-decoration: underline; }

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.grid--single { grid-template-columns: 1fr; }
@media (max-width: 980px) {
  .grid { grid-template-columns: 1fr; }
  .character-picker { grid-template-columns: 1fr; }
}

.col { display: flex; flex-direction: column; gap: 16px; }

.card {
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow), 0 0 12px rgba(0, 207, 255, 0.18);
  padding: 16px;
  backdrop-filter: blur(10px);
}
.card--compact { padding: 14px 16px; }
.card--section {
  border-color: rgba(255, 255, 255, 0.14);
}
.h1 { margin: 4px 0 10px; font-size: 26px; font-weight: 700; letter-spacing: 0.02em; }
.h2 { margin: 2px 0 8px; font-size: 18px; opacity: 0.95; font-weight: 600; }

.note { margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.note--tight { margin-top: 0; }
.alert {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  font-size: 13px;
}
.alert--danger {
  border-color: rgba(255, 85, 102, 0.35);
  box-shadow: 0 0 0 3px rgba(255, 85, 102, 0.10);
}

.field { display: grid; gap: 8px; margin: 10px 0; }
.field--inline { flex: 1; margin: 0; }
.label { font-size: 13px; color: var(--muted); }

.row { display: flex; gap: 10px; align-items: center; margin-top: 12px; }
.row--right { justify-content: flex-end; }
.row--compact { gap: 8px; margin-top: 0; }

.primary-actions--dock {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  align-items: stretch;
}
.primary-actions--dock .btn {
  flex: 1 1 160px;
  min-width: 0;
  text-align: center;
}
@media (max-width: 640px) {
  .primary-actions--dock .btn {
    flex: 1 1 100%;
    font-size: 13px;
    padding: 10px 12px;
  }
}

.selector {
  position: relative;
}
.selector__trigger {
  text-align: left;
  cursor: pointer;
}
.selector__dropdown {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 280px;
  overflow: auto;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(11, 15, 20, 0.98);
  box-shadow: var(--shadow), 0 0 12px rgba(0, 207, 255, 0.18);
  padding: 10px;
}
.selector-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.selector-tools__count {
  font-size: 12px;
  color: var(--muted);
}
.selector-tools__actions {
  display: flex;
  gap: 10px;
}
.selector-list {
  display: grid;
  gap: 8px;
}
.choice-category {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  padding: 10px;
  background: rgba(255,255,255,0.03);
}
.choice-category__title {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  outline: none;
  user-select: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
}
.choice-category__title::after {
  content: "▾";
  opacity: 0.8;
  transform: rotate(0deg);
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.choice-category__title:hover {
  opacity: 0.98;
}
.choice-category__title:focus-visible {
  border-color: rgba(64, 249, 155, 0.55);
  box-shadow: 0 0 0 3px rgba(64, 249, 155, 0.12);
}
.choice-category__list {
  display: grid;
  gap: 8px;
}
.choice-category--collapsed .choice-category__list {
  display: none;
}
.choice-category--collapsed .choice-category__title {
  margin-bottom: 0;
}
.choice-category--collapsed .choice-category__title::after {
  transform: rotate(-90deg);
  opacity: 0.7;
}
.choice-category--hidden {
  display: none;
}

/* 角色组大类背景：用于快速视觉区分 */
.choice-category--disney {
  background: radial-gradient(800px 260px at 10% 0%, rgba(168, 85, 247, 0.18), transparent 55%), rgba(255,255,255,0.03);
  border-color: rgba(168, 85, 247, 0.26);
}
.choice-category--disney .choice-category__title {
  border-color: rgba(168, 85, 247, 0.30);
  background: rgba(168, 85, 247, 0.12);
}

.choice-category--marvel {
  background: radial-gradient(800px 260px at 10% 0%, rgba(255, 85, 102, 0.14), transparent 55%), rgba(255,255,255,0.03);
  border-color: rgba(255, 85, 102, 0.22);
}
.choice-category--marvel .choice-category__title {
  border-color: rgba(255, 85, 102, 0.26);
  background: rgba(255, 85, 102, 0.10);
}

.choice-category--warner {
  background: radial-gradient(800px 260px at 10% 0%, rgba(91, 152, 255, 0.16), transparent 55%), rgba(255,255,255,0.03);
  border-color: rgba(91, 152, 255, 0.26);
}
.choice-category--warner .choice-category__title {
  border-color: rgba(91, 152, 255, 0.28);
  background: rgba(91, 152, 255, 0.10);
}

.choice-category--starwars {
  background: radial-gradient(800px 260px at 10% 0%, rgba(230, 184, 77, 0.14), transparent 55%), rgba(255,255,255,0.03);
  border-color: rgba(230, 184, 77, 0.28);
}
.choice-category--starwars .choice-category__title {
  border-color: rgba(230, 184, 77, 0.30);
  background: rgba(230, 184, 77, 0.10);
}
.tag-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 4px 6px 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(240,255,248,0.92);
  font-size: 12px;
}
.tag--cat-disney {
  border-color: rgba(168, 85, 247, 0.34);
  background: rgba(168, 85, 247, 0.16);
}
.tag--cat-marvel {
  border-color: rgba(255, 85, 102, 0.34);
  background: rgba(255, 85, 102, 0.14);
}
.tag--cat-warner {
  border-color: rgba(91, 152, 255, 0.34);
  background: rgba(91, 152, 255, 0.14);
}
.tag--cat-starwars {
  border-color: rgba(230, 184, 77, 0.38);
  background: rgba(230, 184, 77, 0.14);
}
.tag--cat-other {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}
.tag__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 220px;
}
.tag__remove {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--text);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}
.tag__remove:hover {
  background: rgba(255, 85, 102, 0.35);
  color: #fff;
}
.input--tag-search {
  margin-bottom: 10px;
}
.choice-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}
.choice-item:hover {
  background: rgba(255, 255, 255, 0.05);
}
.choice-item--inline {
  padding: 0;
}
.choice-item--card {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.choice-item--hidden {
  display: none;
}
.character-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.field--grow {
  grid-column: 1 / -1;
}
.choice-panel {
  min-height: 152px;
  max-height: 260px;
  overflow: auto;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.25);
  padding: 10px;
}
.choice-panel--disabled {
  opacity: 0.55;
  pointer-events: none;
}
.choice-group {
  margin-bottom: 12px;
}
.choice-group:last-child {
  margin-bottom: 0;
}
.choice-group__title {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--muted);
}
.choice-group__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}
@media (max-width: 560px) {
  .choice-group__items {
    grid-template-columns: 1fr;
  }
}
.choice-group--hidden {
  display: none;
}

/* 具体角色池：字体稍小、并按大类上色 */
#specific_characters_panel .choice-item--inline {
  font-size: 12px;
  line-height: 1.35;
}
#specific_characters_panel .choice-item--inline span {
  opacity: 0.95;
}
#specific_characters_panel .choice-item--inline {
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
#specific_characters_panel .choice-item--inline:hover {
  background: rgba(255,255,255,0.06);
}

#specific_characters_panel .choice-item--cat-disney {
  border-color: rgba(168, 85, 247, 0.26);
  background: rgba(168, 85, 247, 0.16);
}
#specific_characters_panel .choice-item--cat-marvel {
  border-color: rgba(255, 85, 102, 0.22);
  background: rgba(255, 85, 102, 0.08);
}
#specific_characters_panel .choice-item--cat-warner {
  border-color: rgba(91, 152, 255, 0.24);
  background: rgba(91, 152, 255, 0.08);
}
#specific_characters_panel .choice-item--cat-starwars {
  border-color: rgba(230, 184, 77, 0.26);
  background: rgba(230, 184, 77, 0.08);
}

.control-group {
  margin: 14px 0;
  padding: 14px 14px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(42, 45, 50, 0.55);
}
.control-group__title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 650;
  color: var(--text);
}
.control-group__hint {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.control-random-children {
  margin-left: 0;
  padding-left: 0;
}
.control-random-children--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.control-step {
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.12);
}
.control-step:last-child {
  margin-bottom: 0;
}
.control-step--primary {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}
.control-step--sub {
  margin-left: 1.5rem;
}
.control-step--muted {
  opacity: 0.5;
  pointer-events: none;
}
.control-step__row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}
.control-step__label {
  flex: 1;
  font-size: 13px;
  line-height: 1.4;
}
.control-step__desc {
  margin: 8px 0 0 26px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}
.nav__home {
  color: var(--text);
  font-weight: 600;
  opacity: 0.95;
}
.nav__home:hover {
  color: var(--accent);
  text-decoration: none;
}

.switch {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 24px;
  flex: 0 0 auto;
}
.switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}
.switch__slider {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s ease;
  position: relative;
}
.switch__slider::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  transition: transform 0.2s ease;
}
.switch input:checked + .switch__slider {
  background: rgba(64, 249, 155, 0.35);
}
.switch input:checked + .switch__slider::after {
  transform: translateX(20px);
}

.input, .textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  padding: 10px 12px;
  outline: none;
}
.input--sm { max-width: 140px; }
.textarea { resize: vertical; min-height: 80px; }
.input:focus, .textarea:focus { border-color: rgba(64, 249, 155, 0.55); box-shadow: 0 0 0 3px rgba(64, 249, 155, 0.12); }
.input:disabled, .textarea:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 10px 12px;
  cursor: pointer;
}
.btn:hover { background: rgba(255, 255, 255, 0.08); }
.btn--primary {
  border-color: rgba(0, 207, 255, 0.35);
  background: rgba(0, 207, 255, 0.12);
}
.btn--danger {
  border-color: rgba(255, 85, 102, 0.45);
  background: rgba(255, 85, 102, 0.12);
  color: #ffb4bc;
}
.btn--danger:disabled {
  opacity: 0.45;
}

.details {
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 12px;
  margin-top: 12px;
}
.details summary { cursor: pointer; color: var(--muted); }

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}
.log {
  white-space: pre-wrap;
  word-break: break-word;
  min-height: 120px;
  margin: 0;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
  color: rgba(255,255,255,0.86);
}

.imgwrap {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  padding: 12px;
  min-height: 220px;
  display: grid;
  place-items: center;
}
.imgplaceholder { color: var(--muted); font-size: 13px; }

.jobslist {
  display: grid;
  gap: 8px;
}

.jobs-more {
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.10);
}

.jobs-more__summary {
  cursor: pointer;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  user-select: none;
}

.jobs-more__summary:hover {
  color: rgba(255,255,255,0.92);
}

.jobs-more__body {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.jobitem {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px 10px 10px;
  font-size: 13px;
  background: rgba(0,0,0,0.15);
  border-left-width: 4px;
  border-left-color: rgba(255,255,255,0.2);
}
.jobitem--status-queued {
  border-left-color: rgba(180, 190, 210, 0.55);
}
.jobitem--status-running {
  border-left-color: #e6b84d;
  box-shadow: 0 0 0 1px rgba(230, 184, 77, 0.12);
}
.jobitem--status-success {
  border-left-color: var(--accent);
}
.jobitem--status-failed {
  border-left-color: var(--danger);
  box-shadow: 0 0 0 1px rgba(255, 85, 102, 0.12);
}
.jobitem--status-cancelled {
  border-left-color: rgba(160, 170, 200, 0.65);
  box-shadow: 0 0 0 1px rgba(160, 170, 200, 0.12);
}
.jobitem__head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.jobitem__dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}
.jobitem--status-running .jobitem__dot {
  background: #e6b84d;
  box-shadow: 0 0 0 3px rgba(230, 184, 77, 0.25);
}
.jobitem--status-success .jobitem__dot {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(64, 249, 155, 0.2);
}
.jobitem--status-failed .jobitem__dot {
  background: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 85, 102, 0.2);
}
.jobitem--status-cancelled .jobitem__dot {
  background: rgba(160, 170, 200, 0.85);
  box-shadow: 0 0 0 3px rgba(160, 170, 200, 0.2);
}
.jobitem--status-queued .jobitem__dot {
  background: rgba(180, 190, 210, 0.7);
}
.jobitem__title {
  flex: 1;
  min-width: 0;
}
.jobmeta { color: var(--muted); }
.btn--folder {
  background: rgba(91, 152, 255, 0.12);
  border-color: rgba(91, 152, 255, 0.28);
}

.hidden { display: none !important; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.5);
}
.modal__panel {
  width: min(560px, 95vw);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(17, 24, 35, 0.98), rgba(11, 15, 20, 0.98));
  box-shadow: var(--shadow), 0 0 12px rgba(0, 207, 255, 0.18);
  padding: 16px;
}
.modal__panel--wide {
  width: min(760px, 96vw);
}
.release-notes {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.6;
}
.file-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  max-height: 420px;
  overflow: auto;
}
.file-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.file-item__name {
  word-break: break-all;
}
.file-item__meta {
  color: var(--muted);
  font-size: 12px;
}

.packaging-progress {
  margin-top: 16px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.packaging-progress__indeterminate {
  height: 100%;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(64, 249, 155, 0.35), var(--accent), rgba(64, 249, 155, 0.35));
  animation: packaging-progress-slide 1.15s ease-in-out infinite;
}
@keyframes packaging-progress-slide {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}

