:root {
  --bg: #0e0f10;
  --bg-elev: #16181a;
  --bg-rail: #121314;
  --line: #2a2d31;
  --text: #e8e6e1;
  --muted: #9a958c;
  --accent: #c4a35a;
  --accent-dim: #8a7340;
  --danger: #d9776a;
  --ok: #7a9e7e;
  --radius: 10px;
  --font: "IBM Plex Sans", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --safe-b: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html, body {
  height: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(196, 163, 90, 0.08), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(80, 70, 50, 0.18), transparent 50%),
    var(--bg);
  color: var(--text);
}

.eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
h1, h2 { margin: 0; font-weight: 600; letter-spacing: -0.02em; }
.lede { color: var(--muted); margin: 0.5rem 0 0; }

button, .primary, .ghost, .danger {
  font: inherit;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: transform 140ms var(--ease), box-shadow 140ms var(--ease), filter 140ms var(--ease), border-color 140ms var(--ease);
}
button:active, .primary:active, .ghost:active, .danger:active {
  transform: translateY(2px) scale(0.97);
}
.primary {
  background: var(--accent);
  color: #1a160c;
  font-weight: 600;
  padding: 0.7rem 1rem;
  border: none;
}
.primary:hover { filter: brightness(1.05); }
.ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.55rem 0.8rem;
}
.ghost:hover { color: var(--text); border-color: #3a3e44; }
.danger {
  background: rgba(217, 119, 106, 0.16);
  color: #f0b4ab;
  border: 1px solid rgba(217, 119, 106, 0.35);
  padding: 0.55rem 0.8rem;
}
.back {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

/* Login */
.login-body {
  display: grid;
  place-items: center;
  min-height: 100%;
  min-height: 100dvh;
  padding: 1.5rem;
  overflow: hidden;
}
.login-card {
  width: min(380px, 100%);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
}
.login-card h1 { font-size: 1.85rem; margin-bottom: 0.25rem; }
.login-card .sub { margin: 0 0 1.5rem; color: var(--muted); font-size: 0.95rem; }
.login-form { display: grid; gap: 0.65rem; }
.login-form label { font-size: 0.85rem; color: var(--muted); }
.login-form input {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #0b0c0d;
  color: var(--text);
  font: inherit;
}
.login-form input:focus, .title-input:focus, input[type="search"]:focus, input[type="range"]:focus {
  outline: none;
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.15);
}
.login-form button {
  background: var(--accent);
  color: #1a160c;
  font-weight: 600;
  padding: 0.7rem 1rem;
  border: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
}
.login-form button:hover { filter: brightness(1.05); transform: translateY(-1px); }
.login-form button:active,
.login-form button.is-pressed {
  transform: translateY(3px) scale(0.96);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  filter: brightness(0.95);
}
.login-form button:disabled { cursor: default; }
.login-card-out {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.boot-veil {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: #0e0f10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms var(--ease);
}
html.booting .boot-veil,
.boot-veil.on {
  opacity: 1;
  pointer-events: auto;
}
.boot-spin {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  pointer-events: none;
  background: transparent;
}
html.booting .boot-spin,
.boot-spin.on {
  display: grid;
  opacity: 1;
}
.boot-spin-ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid rgba(196, 163, 90, 0.2);
  border-top-color: var(--accent);
  animation: boot-spin 700ms linear infinite;
  will-change: transform;
}
@keyframes boot-spin {
  to { transform: rotate(360deg); }
}
.error {
  background: rgba(217, 119, 106, 0.12);
  border: 1px solid rgba(217, 119, 106, 0.35);
  color: #f0b4ab;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
}
.enter-rise { animation: rise 280ms var(--ease) both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.app-body { min-height: 100%; }
.app-body[data-view="home"],
.app-body[data-view="home"] #views,
.app-body[data-view="home"] #view-home {
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
}
.app-body.editor-open,
.app-body.editor-open #views,
.app-body.editor-open #view-edit {
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
}
#views { min-height: 100%; }
.view { min-height: 100%; padding: 1.25rem 1.25rem calc(1.5rem + var(--safe-b)); }
#view-home:not([hidden]) { animation: rise 280ms var(--ease) both; }
html.booting #view-home { opacity: 0; animation: none; }
#view-edit.editing {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  padding: 0.65rem 0.75rem calc(0.65rem + var(--safe-b));
}
#view-edit.editing #editor {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.view[hidden], .subview[hidden], .lightbox[hidden], .confirm[hidden], .toast[hidden], .panel:not(.active) { display: none; }

.home-head { text-align: center; padding: 8vh 0 2rem; }
.home-head h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
.doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.door {
  text-align: left;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.35rem 1.4rem;
  color: var(--text);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
  display: grid;
  gap: 0.4rem;
  min-height: 11rem;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease);
}
.door:hover { border-color: rgba(196, 163, 90, 0.4); transform: translateY(-2px); }
.door-kicker { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.door-title { font-size: 1.45rem; font-weight: 600; }
.door-copy { color: var(--muted); line-height: 1.45; }
.home-foot { display: flex; justify-content: center; margin-top: 2.5rem; }

.bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.bar-copy { flex: 1; min-width: 0; }
.bar-actions { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.title-input {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text);
  font: inherit;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0;
}
.toolbar {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}
.toolbar input[type="search"] {
  flex: 1;
  background: #0b0c0d;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font: inherit;
}
.check { color: var(--muted); font-size: 0.9rem; display: flex; gap: 0.4rem; align-items: center; }
.check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  flex: 0 0 auto;
  border: 1px solid var(--accent-dim);
  border-radius: 4px;
  background: #0b0c0d;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 160ms var(--ease), border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.check input[type="checkbox"]::after {
  content: "";
  width: 0.28rem;
  height: 0.5rem;
  border: solid #1a160c;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 140ms var(--ease);
  margin-bottom: 0.12rem;
}
.check input[type="checkbox"]:hover { border-color: var(--accent); }
.check input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.16);
}
.check input[type="checkbox"]:checked::after { transform: rotate(45deg) scale(1); }
.check input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.22);
}

.check-switch { gap: 0.55rem; }
[data-panel="bw"] .check-switch { margin-bottom: 1.2rem; }
.check-switch input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.check-switch .switch {
  position: relative;
  width: 2.15rem;
  height: 1.2rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #0b0c0d;
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.35);
  transition: background 180ms var(--ease), border-color 180ms var(--ease);
}
.check-switch .switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: #9a958c;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}
.check-switch:hover .switch { border-color: var(--accent-dim); }
.check-switch input:checked + .switch {
  background: rgba(196, 163, 90, 0.22);
  border-color: var(--accent);
}
.check-switch input:checked + .switch::after {
  transform: translateX(0.92rem);
  background: var(--accent);
}
.check-switch input:focus-visible + .switch {
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.22);
}

.dropzone {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 1.85rem 1.25rem;
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
}
.dropzone.drag { border-color: var(--accent-dim); color: var(--text); }
.progress-list { display: grid; gap: 0.35rem; margin-bottom: 1rem; font-size: 0.85rem; color: var(--muted); font-family: var(--mono); }

.grid { display: grid; gap: 0.75rem; }
.grid-picker { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.grid-view { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.tile {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-elev);
  cursor: pointer;
  padding: 0;
  color: inherit;
  text-align: left;
}
.tile img { width: 100%; height: 160px; object-fit: cover; display: block; background: #0b0c0d; }
.grid-view .tile img { height: 280px; }
.tile-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.5rem 0.65rem 0.6rem;
  font-size: 0.85rem;
}
.tile-meta span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.star, .tile-del, .tile-dl {
  background: transparent;
  border: 0;
  color: var(--muted);
  padding: 0.15rem;
}
.tile-dl:hover { color: var(--accent); }
.star.on { color: var(--accent); }
.empty, .status-line { text-align: center; color: var(--muted); padding: 2.5rem 1rem; }

.editor-layout {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  overflow: hidden;
}
.editor-layout .bar { flex-shrink: 0; margin-bottom: 0.65rem; }
.editor-body {
  display: grid;
  grid-template-columns: 1fr min(360px, 38vw);
  gap: 0.75rem;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.stage {
  background: #0b0c0d;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  position: relative;
  overflow: hidden;
}
.stage-frame {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#gl-canvas, #crop-canvas {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
#crop-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
#histogram { flex-shrink: 0; margin-top: 0.4rem; width: min(240px, 100%); height: 48px; opacity: 0.85; }
.rail {
  background: var(--bg-rail);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.65rem;
  border-bottom: 1px solid var(--line);
}
.tab {
  background: transparent;
  color: var(--muted);
  border: 1px solid transparent;
  padding: 0.4rem 0.6rem;
  font-size: 0.82rem;
}
.tab.active {
  color: var(--accent);
  background: rgba(196, 163, 90, 0.1);
  border-color: rgba(196, 163, 90, 0.28);
}
.tab-panels { flex: 1; overflow: auto; padding: 0.85rem 0.9rem 1.1rem; }
.panel { display: none; }
.panel.active { display: block; animation: fade 220ms var(--ease); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.slider-row { margin: 0 0 0.85rem; }
.slider-row label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.slider-name, .eyebrow, .check {
  align-items: center;
}
.slider-name, .eyebrow {
  display: inline-flex;
  gap: 0.35rem;
}
.tip {
  flex: 0 0 auto;
  width: 0.9rem;
  height: 0.9rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(196, 163, 90, 0.45);
  background: rgba(196, 163, 90, 0.1);
  color: var(--accent);
  font-size: 0.46rem;
  font-weight: 600;
  font-style: normal;
  font-family: var(--font);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  box-shadow: none;
}
.tip:hover, .tip:focus, .tip:active {
  transform: none;
  filter: none;
  background: rgba(196, 163, 90, 0.22);
  border-color: var(--accent);
  color: var(--text);
}
.tip-pop {
  position: fixed;
  z-index: 90;
  max-width: min(260px, calc(100vw - 1.5rem));
  padding: 0.55rem 0.7rem;
  background: #1c1e21;
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.8rem;
  line-height: 1.4;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.tip-pop[hidden] { display: none; }
.slider-row input[type="range"] { width: 100%; accent-color: var(--accent); }
.preset-row, .aspect-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.4rem 0 0.9rem; }
.chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  display: inline-flex;
  gap: 0.3rem;
}
.chip:hover, .chip.on { color: var(--text); border-color: var(--accent-dim); }
.chip-hold {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.export-fields { display: grid; gap: 0.65rem; }
.export-fields select, .export-fields input[type="number"] {
  background: #0b0c0d;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
  font: inherit;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 9, 0.88);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 3rem 5rem;
}
.lightbox img { max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-elev);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 0.45rem 0.7rem;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--text);
  font-size: 1.4rem;
}
.lightbox-nav.prev { left: 0.8rem; }
.lightbox-nav.next { right: 0.8rem; }
.lightbox-foot {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  padding: 0 1.25rem;
  box-sizing: border-box;
}
#lightbox-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#lightbox-edit,
#lightbox-download {
  flex-shrink: 0;
  white-space: nowrap;
}

.confirm {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 9, 0.55);
  display: grid;
  place-items: center;
  z-index: 50;
}
.confirm-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  width: min(360px, calc(100% - 2rem));
}
.confirm-actions { display: flex; justify-content: flex-end; gap: 0.5rem; margin-top: 1rem; }

.toast {
  position: fixed;
  bottom: calc(1.25rem + var(--safe-b));
  right: 1.25rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 75;
  max-width: 320px;
}
.toast.err { border-color: rgba(217, 119, 106, 0.45); }
.toast.ok { border-color: rgba(122, 158, 126, 0.45); }

.verse-toast-container {
  position: fixed;
  right: 20px;
  bottom: calc(20px + var(--safe-b));
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.verse-toast {
  min-width: 320px;
  max-width: 420px;
  background: var(--bg-elev);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  pointer-events: auto;
  animation: slideInRight 0.3s ease-out;
  position: relative;
  overflow: hidden;
  color: var(--text);
}
.verse-toast-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
  line-height: 1;
}
.verse-heart { width: 1.35rem; height: 1.35rem; display: block; }
.verse-toast-content { flex: 1; min-width: 0; }
.verse-toast-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px 0;
}
.verse-toast-message {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.verse-toast-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--muted);
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
  box-sizing: border-box;
  box-shadow: none;
  opacity: 0;
}
.verse-toast-close:hover,
.verse-toast-close:active {
  background: none;
  color: var(--muted);
  transform: none;
  filter: none;
  opacity: 0;
}
.verse-toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--accent);
}
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}
@keyframes toastProgress {
  from { width: 100%; }
  to { width: 0%; }
}
.verse-toast.closing { animation: slideOutRight 0.3s ease-in forwards; }

@media (max-width: 768px) {
  .verse-toast-container {
    right: 10px;
    left: 10px;
    bottom: calc(10px + var(--safe-b));
  }
  .verse-toast { min-width: auto; max-width: 100%; }
}

@media (max-width: 900px) {
  .doors { grid-template-columns: 1fr; }
  .home-head { padding: 4vh 0 1.5rem; }
  .editor-body {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) minmax(0, 38vh);
  }
  .rail {
    position: relative;
    bottom: auto;
    max-height: 38vh;
    border-radius: 16px 16px 0 0;
  }
  .editor-layout .bar-copy { display: none; }
  .editor-layout .bar-actions {
    width: auto;
    flex: 1;
    flex-wrap: nowrap;
    justify-content: flex-end;
    min-width: 0;
  }
  .grid-view .tile img { height: 220px; }
  .lightbox { padding: 3.5rem 0.6rem 5.5rem; }
  .lightbox-nav { display: none; }
  .lightbox-foot {
    left: 0.85rem;
    right: 0.85rem;
    bottom: calc(0.85rem + var(--safe-b));
    padding: 0;
    gap: 0.5rem;
  }
  #lightbox-edit,
  #lightbox-download {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 80ms !important;
    transition-duration: 80ms !important;
  }
  .boot-spin-ring {
    animation: boot-spin 700ms linear infinite !important;
  }
  .verse-toast-progress {
    animation-duration: inherit !important;
  }
}
