/* ---------- Tokens ---------- */
:root {
  --bg: #f4f5f8;
  --bg-grad: radial-gradient(1200px 600px at 50% -10%, #eef0ff 0%, transparent 60%);
  --surface: #ffffff;
  --surface-2: #f7f8fb;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e6e9ef;
  --border-strong: #d6dbe5;
  --accent: #6366f1;
  --accent-hover: #4f46e5;
  --accent-soft: #eef2ff;
  --danger: #e11d48;
  --ok: #16a34a;
  --warn: #b45309;
  --warn-soft: rgba(245, 158, 11, .12);
  --warn-border: rgba(245, 158, 11, .35);
  --danger-soft: rgba(225, 29, 72, .10);
  --danger-border: rgba(225, 29, 72, .30);
  --radius: 16px;
  --radius-sm: 11px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
  --shadow: 0 1px 3px rgba(15, 23, 42, .06), 0 12px 30px rgba(15, 23, 42, .07);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Logo's black parts flip to white in dark mode; purple stays put */
:root[data-theme="dark"] .brand-ink,
:root[data-theme="auto"] .brand-ink { fill: #fff; }

/* Dark palette - shared by the explicit toggle and the OS preference. */
:root[data-theme="dark"],
:root[data-theme="auto"] {
  --bg: #0a0d14;
  --bg-grad: radial-gradient(1200px 600px at 50% -10%, rgba(99,102,241,.16) 0%, transparent 60%);
  --surface: #121723;
  --surface-2: #0e131d;
  --text: #e8eef7;
  --muted: #94a3b8;
  --border: #232c3b;
  --border-strong: #303a4d;
  --accent: #818cf8;
  --accent-hover: #a5b0ff;
  --accent-soft: rgba(129, 140, 248, .12);
  --danger: #fb7185;
  --ok: #4ade80;
  --warn: #fbbf24;
  --warn-soft: rgba(251, 191, 36, .12);
  --warn-border: rgba(251, 191, 36, .32);
  --danger-soft: rgba(251, 113, 133, .12);
  --danger-border: rgba(251, 113, 133, .32);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow: 0 1px 3px rgba(0, 0, 0, .4), 0 16px 40px rgba(0, 0, 0, .45);
}

/* Follow the OS unless the user explicitly chose light. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand-ink { fill: #fff; }
  :root:not([data-theme="light"]) {
    --bg: #0a0d14;
    --bg-grad: radial-gradient(1200px 600px at 50% -10%, rgba(99,102,241,.16) 0%, transparent 60%);
    --surface: #121723;
    --surface-2: #0e131d;
    --text: #e8eef7;
    --muted: #94a3b8;
    --border: #232c3b;
    --border-strong: #303a4d;
    --accent: #818cf8;
    --accent-hover: #a5b0ff;
    --accent-soft: rgba(129, 140, 248, .12);
    --danger: #fb7185;
    --ok: #4ade80;
    --warn: #fbbf24;
    --warn-soft: rgba(251, 191, 36, .12);
    --warn-border: rgba(251, 191, 36, .32);
    --danger-soft: rgba(251, 113, 133, .12);
    --danger-border: rgba(251, 113, 133, .32);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow: 0 1px 3px rgba(0, 0, 0, .4), 0 16px 40px rgba(0, 0, 0, .45);
  }
}

* { box-sizing: border-box; }

/* Ensure the `hidden` attribute always wins over component display rules. */
[hidden] { display: none !important; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  background-image: var(--bg-grad);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  padding: 40px 20px 64px;
  line-height: 1.5;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.app {
  width: 100%;
  max-width: 1320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Two columns: a large media stage on the left, a compact options panel on the right. */
.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}
.stage { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.panel { display: flex; flex-direction: column; gap: 16px; min-width: 0; }

/* Compact top app-bar */
.app__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px 16px; flex-wrap: wrap; margin-bottom: 2px;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand-logo { height: 34px; width: auto; display: block; }
.brand-ink { fill: #212121; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.app__bar-right { display: inline-flex; align-items: center; gap: 10px; }

/* Theme toggle icon */
#themeBtn .theme-sun { display: none; }
#themeBtn.is-dark .theme-sun { display: block; }
#themeBtn.is-dark .theme-moon { display: none; }

/* ---------- Drop zone ---------- */
.dropzone {
  background: var(--surface);
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 38px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s;
  box-shadow: var(--shadow-sm);
  flex: 1;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.dropzone:hover, .dropzone:focus-visible { border-color: var(--accent); outline: none; }
.dropzone.is-dragover {
  border-color: var(--accent); background: var(--accent-soft); transform: scale(1.005);
}
.dropzone__icon {
  width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
}
.dropzone__icon svg { width: 26px; height: 26px; }
.dropzone__title { margin: 0; font-weight: 600; font-size: 16px; }
.dropzone__hint { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.dropzone__link { color: var(--accent); font-weight: 600; }
.dropzone__note {
  margin: 16px auto 0; max-width: 320px; color: var(--muted); font-size: 12px;
}

.file-error {
  margin: 0 2px; color: var(--danger); font-size: 12.5px; font-weight: 500;
  background: var(--danger-soft); border: 1px solid var(--danger-border);
  border-radius: var(--radius-sm); padding: 9px 12px;
}
.file-warn {
  margin: 0 2px; color: var(--warn, #b45309); font-size: 12.5px; font-weight: 500;
  background: var(--warn-soft, rgba(245, 158, 11, .12));
  border: 1px solid var(--warn-border, rgba(245, 158, 11, .35));
  border-radius: var(--radius-sm); padding: 9px 12px;
}

/* Shown only when JavaScript is disabled (the app can't run without it). */
.noscript-note {
  margin: 0 0 20px; padding: 14px 16px; text-align: center;
  color: var(--warn); font-size: 14px; font-weight: 500;
  background: var(--warn-soft); border: 1px solid var(--warn-border);
  border-radius: var(--radius-sm);
}

/* Shown when the browser lacks WebAssembly / Web Workers (the engine can't run). */
.unsupported {
  margin: 0; padding: 14px 16px; text-align: center;
  color: var(--warn); font-size: 13.5px; line-height: 1.5; font-weight: 500;
  background: var(--warn-soft); border: 1px solid var(--warn-border);
  border-radius: var(--radius-sm);
}
.unsupported strong { display: block; margin-bottom: 2px; color: var(--text); font-size: 15px; }
.dropzone.is-disabled { cursor: not-allowed; opacity: .55; pointer-events: none; }

/* ---------- Media stage (video preview / result GIF) ---------- */
.media {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.media__view {
  background: #000; display: grid; place-items: center;
  min-height: 280px; max-height: 620px;
  position: relative;
}
.media__view#videoStage { cursor: pointer; }

/* Play / pause overlay */
.media__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 66px; height: 66px; border-radius: 50%; border: none; cursor: pointer;
  display: grid; place-items: center; color: #fff;
  background: rgba(15, 23, 42, .55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: opacity .18s, transform .12s, background .15s;
}
.media__play svg { width: 28px; height: 28px; }
.media__play .media__play-icon { margin-left: 3px; }
.media__play .media__pause-icon { display: none; }
.media__play:hover { background: rgba(15, 23, 42, .72); transform: translate(-50%, -50%) scale(1.06); }
.media__play:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--accent-soft); }
/* While playing: swap to a pause glyph and fade the overlay out (reveal on hover). */
.media__view.is-playing .media__play { opacity: 0; }
.media__view.is-playing:hover .media__play { opacity: 1; }
.media__view.is-playing .media__play-icon { display: none; }
.media__view.is-playing .media__play-icon + .media__pause-icon,
.media__view.is-playing .media__pause-icon { display: block; }
.media__view--check {
  background: repeating-conic-gradient(var(--surface-2) 0% 25%, transparent 0% 50%) 50% / 22px 22px;
}
.media__el { width: 100%; max-height: 620px; object-fit: contain; display: block; }
.media__bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-top: 1px solid var(--border);
}
.media__meta { flex: 1; min-width: 0; }
.media__name {
  margin: 0; font-weight: 600; font-size: 14px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.media__sub { margin: 3px 0 0; color: var(--muted); font-size: 12.5px; }

/* ---------- Trim timeline ---------- */
.trim { padding: 14px 16px 6px; border-top: 1px solid var(--border); }
.trim__times {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--muted); margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.trim__time { font-weight: 600; color: var(--text); }
.trim__time--editable {
  cursor: text; border-radius: 5px; padding: 1px 4px; margin: -1px -4px;
  text-decoration: underline dotted; text-decoration-color: var(--border-strong);
  text-underline-offset: 3px;
}
.trim__time--editable:hover {
  background: var(--accent-soft); color: var(--accent);
  text-decoration-color: var(--accent);
}
.trim__time-edit {
  width: 64px; font-family: inherit; font-size: 12px; font-weight: 600;
  color: var(--text); background: var(--surface); border: 1px solid var(--accent);
  border-radius: 6px; padding: 2px 5px; text-align: center;
}
.trim__time-edit:focus { outline: none; box-shadow: 0 0 0 2px var(--accent-soft); }
.trim__dur {
  font-size: 11.5px; padding: 2px 9px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent); font-weight: 600;
}
.trim__track {
  position: relative; height: 38px; border-radius: 10px;
  background: var(--surface-2); border: 1px solid var(--border);
  touch-action: none; cursor: pointer;
}
.trim__range {
  position: absolute; top: -1px; bottom: -1px; left: 0; width: 100%;
  background: var(--accent-soft);
  border: 1px solid var(--accent); border-radius: 10px;
}
.trim__playhead {
  position: absolute; top: -4px; bottom: -4px; left: 0; width: 2px;
  background: #fff; border-radius: 2px; pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .35);
}
.trim__playhead::before {
  content: ""; position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
  width: 9px; height: 9px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .35);
}
.trim__handle {
  position: absolute; top: 50%; width: 14px; height: 130%;
  transform: translate(-50%, -50%);
  background: var(--accent); border: 2px solid var(--surface);
  border-radius: 7px; cursor: ew-resize; padding: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .3); touch-action: none;
}
.trim__handle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 2px; height: 12px; border-radius: 2px;
  background: rgba(255, 255, 255, .85);
}
.trim__handle:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--accent-soft), 0 2px 6px rgba(0,0,0,.3); }
.trim__handle--start { left: 0; }
.trim__handle--end { left: 100%; }

.icon-btn {
  flex: none; width: 34px; height: 34px; border-radius: 9px;
  border: 1px solid var(--border); background: var(--surface-2);
  color: var(--muted); cursor: pointer; display: grid; place-items: center;
  transition: color .15s, border-color .15s, background .15s;
}
.icon-btn svg { width: 17px; height: 17px; }
.icon-btn:hover { color: var(--danger); border-color: var(--danger); }
/* Neutral icon button (theme toggle) - accent hover instead of danger red. */
.icon-btn--plain:hover { color: var(--accent); border-color: var(--accent); }
.icon-btn--plain:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--accent-soft); }

/* ---------- Settings ---------- */
.panel-hint {
  margin: 0; font-size: 12.5px; color: var(--muted); text-align: center;
  background: var(--surface-2); border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm); padding: 11px 12px;
}
.settings {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 6px 20px 18px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: opacity .2s;
}
/* Locked until a video is loaded */
.settings.is-locked { opacity: .5; pointer-events: none; }

/* Grouped sections with subtle dividers */
.group {
  display: flex; flex-direction: column; gap: 13px;
  padding: 16px 0; border-top: 1px solid var(--border);
}
.group:first-of-type { border-top: none; }
.group__title {
  margin: 0; font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted);
}
.settings__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 13px;
}
.setting { display: flex; flex-direction: column; gap: 9px; }
.setting__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.setting__label { font-weight: 600; font-size: 13.5px; }
.setting__note { color: var(--muted); font-size: 12px; }
.setting__hint { margin: 0; color: var(--muted); font-size: 12px; }

/* Switch */
.switch { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.switch__track {
  width: 38px; height: 22px; border-radius: 999px; background: var(--border-strong);
  position: relative; transition: background .18s; flex: none;
}
.switch__thumb {
  position: absolute; top: 2px; left: 2px; width: 18px; height: 18px;
  border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.3);
  transition: transform .18s;
}
.switch input:checked + .switch__track { background: var(--accent); }
.switch input:checked + .switch__track .switch__thumb { transform: translateX(16px); }
.switch input:focus-visible + .switch__track { box-shadow: 0 0 0 3px var(--accent-soft); }

/* Resolution: dimension dropdown + single value input */
.dim-field {
  display: flex; align-items: center; gap: 10px;
  transition: opacity .15s;
}
.dim-field[data-disabled="true"] { opacity: .45; }
.dim-field .select-wrap { flex: 0 0 130px; }
.dim-field .field__input { flex: 1; }
.field { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.field label { font-size: 12px; color: var(--muted); font-weight: 500; }
.field__input { position: relative; display: flex; align-items: center; }
.field__unit {
  position: absolute; right: 12px; color: var(--muted); font-size: 12.5px; pointer-events: none;
}

input[type="number"], select {
  width: 100%; font-family: inherit; font-size: 14px; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 12px;
  transition: border-color .15s, box-shadow .15s; appearance: none;
}
input[type="number"]:focus, select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
input[type="number"]:disabled { cursor: not-allowed; }
input[type="number"] { padding-right: 34px; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 13px; top: 50%; width: 9px; height: 9px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
select { padding-right: 34px; cursor: pointer; }
.select-wrap--inline { min-width: 0; }

/* Loop */
.loop { display: flex; align-items: center; gap: 12px; }
.loop .select-wrap { flex: 1; }
.field--inline { flex: 0 0 auto; width: 96px; }

/* ---------- Buttons ---------- */
.actions { display: flex; flex-direction: column; gap: 8px; }
.actions__cancel { align-self: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer;
  border-radius: var(--radius-sm); padding: 13px 20px; border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .05s, opacity .15s;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--accent); color: #fff; width: 100%;
  box-shadow: 0 6px 16px -6px var(--accent);
  position: relative; overflow: hidden;
}
.btn--primary:hover { background: var(--accent-hover); }
.btn--primary:disabled {
  background: var(--border-strong); color: var(--muted); cursor: not-allowed;
  box-shadow: none; opacity: .8;
}
.btn--ghost {
  background: transparent; color: var(--text); border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn.is-busy { cursor: progress; }

/* Convert button doubles as the progress bar while encoding */
.btn__label { position: relative; z-index: 1; }
.btn__fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0%;
  background: rgba(255, 255, 255, .24); pointer-events: none; transition: width .2s ease;
}
.btn--primary.is-busy, .btn--primary.is-busy:disabled {
  background: var(--accent); color: #fff; opacity: 1; box-shadow: none; cursor: progress;
}
.btn.is-indeterminate .btn__fill { width: 38%; animation: indeterminate 1.1s ease-in-out infinite; }
@keyframes indeterminate { 0% { margin-left: -38%; } 100% { margin-left: 100%; } }

/* ---------- Result actions (right panel) ---------- */
/* One prominent Download; secondary actions are quiet links to reduce clutter. */
.result-actions { display: flex; flex-direction: column; gap: 12px; }
.result-actions .btn--primary { width: 100%; }
.result-actions__links {
  display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 13px;
}
.link-btn {
  background: none; border: none; padding: 2px 4px; margin: 0;
  font: inherit; font-size: 13px; font-weight: 500; color: var(--muted); cursor: pointer;
  border-radius: 6px;
}
.link-btn:hover { color: var(--accent); text-decoration: underline; }
.link-btn:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--accent-soft); }
.result-actions__sep { color: var(--border-strong); }

/* ---------- SEO content ---------- */
.seo { max-width: 760px; margin: 24px auto 0; padding: 0 4px; }
.seo h1 { font-size: 22px; font-weight: 700; letter-spacing: -.01em; margin: 0 0 10px; }
.seo h2 { font-size: 17px; font-weight: 700; margin: 52px 0 10px; }
.seo p, .seo li { font-size: 15px; line-height: 1.7; color: var(--muted); }
.seo strong { color: var(--text); font-weight: 600; }
.seo ul, .seo ol { padding-left: 20px; margin: 8px 0; }
.seo li { margin: 4px 0; }

/* Step + feature cards */
.steps, .features {
  display: grid; gap: 12px; margin-top: 12px;
}
.steps { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.features { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.step, .feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 18px;
}
.step__num {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 12px;
}
.feature__icon {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 12px;
}
.feature__icon svg { width: 20px; height: 20px; }
.step h3, .feature h3 { font-size: 15px; font-weight: 600; margin: 0 0 4px; color: var(--text); }
.step p, .feature p { font-size: 13.5px; line-height: 1.55; margin: 0; color: var(--muted); }

.faq { margin-top: 10px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px; margin-top: 8px;
}
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 15px; color: var(--text);
  list-style: none; position: relative; padding-right: 22px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 2px; top: 50%; width: 8px; height: 8px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg); transition: transform .15s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq details p { margin: 10px 0 0; }

/* ---------- Footer ---------- */
.app__footer { text-align: center; margin-top: 6px; }
.app__footer a { color: var(--muted); text-decoration: none; font-size: 12px; }
.app__footer a:hover { color: var(--accent); text-decoration: underline; }
.app__footer span { color: var(--muted); font-size: 12px; margin: 0 8px; }

/* ---------- Responsive ---------- */
/* Stack the two columns: media on top, options below. */
@media (max-width: 760px) {
  .workspace { grid-template-columns: 1fr; }
  .dropzone { min-height: 200px; }
}
@media (max-width: 480px) {
  body { padding: 24px 14px 48px; }
  .settings__grid { grid-template-columns: 1fr; }
  .brand-logo { height: 28px; }
}

/* Bigger trim hit areas on touch devices */
@media (pointer: coarse) {
  .trim__track { height: 46px; }
  .trim__handle { width: 22px; }
}

/* ---------- Drop-to-replace overlay ---------- */
.drop-overlay {
  position: fixed; inset: 0; z-index: 50;
  display: grid; place-items: center;
  background: rgba(15, 23, 42, .55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  pointer-events: none; /* let drag events reach the page underneath */
}
.drop-overlay__inner {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 40px 56px; border-radius: var(--radius);
  border: 2px dashed rgba(255, 255, 255, .7); color: #fff;
  font-size: 17px; font-weight: 600;
}
.drop-overlay__inner svg { width: 40px; height: 40px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
