:root {
  --v2-ink: #1f1e1b;
  --v2-muted: #74716a;
  --v2-line: #e6e2da;
  --v2-paper: #fbfaf7;
  --v2-panel: #ffffff;
  --v2-stage: #171716;
  --v2-stage-soft: #222220;
  --v2-accent: #e75f43;
  --v2-accent-dark: #c9482f;
  --v2-accent-soft: #fff0eb;
  --v2-success: #2f7d58;
  --v2-shadow: 0 18px 50px rgba(31, 30, 27, 0.10);
}

* {
  box-sizing: border-box;
}

body.v2-active {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--v2-ink);
  background: var(--v2-paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body.v2-active #appShell {
  display: none;
}

#v2Root:empty {
  display: none;
}

.v2-app {
  display: grid;
  grid-template-rows: 64px minmax(0, 1fr);
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--v2-paper);
}

.v2-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
  border-bottom: 1px solid var(--v2-line);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(18px);
  z-index: 20;
}

.v2-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.v2-brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: #fff;
  background: var(--v2-accent);
  box-shadow: 0 8px 18px rgba(231, 95, 67, 0.28);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.v2-brand-copy {
  min-width: 0;
}

.v2-brand-copy strong,
.v2-brand-copy span {
  display: block;
}

.v2-brand-copy strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.v2-brand-copy span {
  margin-top: 2px;
  color: var(--v2-muted);
  font-size: 11px;
}

.v2-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.v2-language {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 9px 0 11px;
  border: 1px solid var(--v2-line);
  border-radius: 11px;
  color: var(--v2-muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.v2-language select {
  min-width: 72px;
  border: 0;
  color: var(--v2-ink);
  background: transparent;
  font: inherit;
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

.v2-language:focus-within {
  border-color: var(--v2-accent);
  box-shadow: 0 0 0 3px rgba(231, 95, 67, 0.10);
}

.v2-local-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--v2-muted);
  font-size: 12px;
}

.v2-local-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55a97b;
  box-shadow: 0 0 0 4px rgba(85, 169, 123, 0.12);
}

.v2-editor {
  display: grid;
  grid-template-columns: minmax(300px, 30%) minmax(0, 70%);
  min-height: 0;
}

.v2-controls-pane {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 0;
  border-right: 1px solid var(--v2-line);
  background: var(--v2-panel);
  z-index: 10;
}

.v2-step-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--v2-line);
}

.v2-step-tab {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  padding: 8px 2px 10px;
  border: 0;
  border-radius: 12px;
  color: #8b8882;
  background: transparent;
  font: inherit;
  font-size: 10px;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.v2-step-tab:hover {
  color: var(--v2-ink);
  background: #f6f4ef;
}

.v2-step-tab[aria-selected="true"] {
  color: var(--v2-accent-dark);
  background: var(--v2-accent-soft);
  font-weight: 700;
}

.v2-step-number {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 750;
}

.v2-step-tab.is-complete .v2-step-number {
  color: #fff;
  border-color: var(--v2-success);
  background: var(--v2-success);
}

.v2-panel-scroll {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #ccc7bd transparent;
}

.v2-step-panel {
  display: none;
  padding: 24px 22px 30px;
  animation: v2-panel-in 180ms ease both;
}

.v2-step-panel.is-active {
  display: block;
}

@keyframes v2-panel-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.v2-eyebrow {
  margin: 0 0 8px;
  color: var(--v2-accent-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v2-step-panel h2 {
  margin: 0;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.v2-intro {
  margin: 10px 0 22px;
  max-width: 34em;
  color: var(--v2-muted);
  font-size: 13px;
  line-height: 1.65;
}

.v2-feature-card,
.v2-choice-card,
.v2-import-card,
.v2-flat-card {
  width: 100%;
  border: 1px solid var(--v2-line);
  border-radius: 18px;
  background: #fff;
  color: var(--v2-ink);
  box-shadow: 0 8px 24px rgba(31, 30, 27, 0.04);
}

.v2-import-card {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 210px;
  padding: 24px;
  border-style: dashed;
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.v2-import-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.v2-import-grid .v2-import-card {
  min-height: 168px;
  padding: 18px 12px;
}

.v2-import-card:hover,
.v2-import-card:focus-visible {
  border-color: var(--v2-accent);
  background: #fffaf8;
  transform: translateY(-2px);
  outline: none;
}

.v2-import-symbol {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--v2-accent-dark);
  background: var(--v2-accent-soft);
  font-size: 27px;
  font-weight: 300;
}

.v2-import-card strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.v2-import-card span {
  max-width: 250px;
  color: var(--v2-muted);
  font-size: 12px;
  line-height: 1.55;
}

.v2-mini-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 2px 0;
  padding: 12px 14px;
  border-radius: 13px;
  color: #665f56;
  background: #f7f4ed;
  font-size: 11px;
  line-height: 1.55;
}

.v2-feature-grid {
  display: grid;
  gap: 12px;
}

.v2-feature-card,
.v2-choice-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  text-align: left;
  font: inherit;
}

button.v2-feature-card,
button.v2-choice-card {
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

button.v2-feature-card:hover,
button.v2-choice-card:hover {
  border-color: #cfc8bb;
  box-shadow: 0 12px 28px rgba(31, 30, 27, 0.08);
  transform: translateY(-1px);
}

.v2-feature-card.is-selected,
.v2-choice-card.is-selected {
  border-color: var(--v2-accent);
  box-shadow: 0 0 0 3px rgba(231, 95, 67, 0.10);
}

.v2-card-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--v2-accent-dark);
  background: var(--v2-accent-soft);
  font-size: 19px;
  font-weight: 800;
}

.v2-card-copy {
  min-width: 0;
  flex: 1;
}

.v2-card-copy strong,
.v2-card-copy span {
  display: block;
}

.v2-card-copy strong {
  font-size: 14px;
  letter-spacing: -0.015em;
}

.v2-card-copy span {
  margin-top: 4px;
  color: var(--v2-muted);
  font-size: 11px;
  line-height: 1.45;
}

.v2-card-action {
  flex: 0 0 auto;
  color: #a19d95;
  font-size: 20px;
}

.v2-hero-feature {
  position: relative;
  overflow: hidden;
  padding: 20px;
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #282725 0%, #171716 72%);
  box-shadow: 0 18px 36px rgba(18, 18, 17, 0.18);
}

.v2-hero-feature::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 36px solid rgba(231, 95, 67, 0.20);
  border-radius: 42px;
  transform: rotate(18deg);
}

.v2-hero-feature .v2-card-icon {
  color: #fff;
  background: var(--v2-accent);
}

.v2-hero-feature .v2-card-copy span,
.v2-hero-feature .v2-card-action {
  color: rgba(255, 255, 255, 0.64);
}

.v2-card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.v2-card-row .v2-choice-card {
  display: grid;
  align-content: start;
  min-height: 130px;
}

.v2-card-row .v2-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.v2-section-label {
  margin: 22px 0 10px;
  color: var(--v2-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v2-field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: #4e4a44;
  font-size: 12px;
  font-weight: 650;
}

.v2-field input[type="text"],
.v2-field select {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--v2-line);
  border-radius: 11px;
  color: var(--v2-ink);
  background: #fff;
  font: inherit;
  font-weight: 500;
  outline: none;
}

.v2-field input[type="text"]:focus,
.v2-field select:focus {
  border-color: var(--v2-accent);
  box-shadow: 0 0 0 3px rgba(231, 95, 67, 0.10);
}

.v2-inline-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.v2-range-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.v2-range-value {
  color: var(--v2-muted);
  font-variant-numeric: tabular-nums;
}

.v2-field input[type="range"] {
  width: 100%;
  accent-color: var(--v2-accent);
}

.v2-color-row,
.v2-sticker-row,
.v2-preset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v2-preset-chip,
.v2-sticker-chip {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--v2-line);
  border-radius: 11px;
  color: #4c4842;
  background: #fff;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.v2-preset-chip.is-selected {
  color: var(--v2-accent-dark);
  border-color: var(--v2-accent);
  background: var(--v2-accent-soft);
}

.v2-sticker-chip {
  width: 42px;
  padding: 0;
  font-size: 19px;
}

.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--v2-line);
  border-radius: 12px;
  color: var(--v2-ink);
  background: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.v2-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(31, 30, 27, 0.08);
}

.v2-btn:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.v2-btn-primary {
  color: #fff;
  border-color: var(--v2-accent);
  background: var(--v2-accent);
}

.v2-btn-primary:hover:not(:disabled) {
  background: var(--v2-accent-dark);
}

.v2-btn-dark {
  color: #fff;
  border-color: #292825;
  background: #292825;
}

.v2-btn-block {
  width: 100%;
}

.v2-advanced {
  margin-top: 20px;
  border-top: 1px solid var(--v2-line);
}

.v2-advanced summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 2px 10px;
  color: var(--v2-muted);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.v2-advanced summary::-webkit-details-marker {
  display: none;
}

.v2-advanced summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
}

.v2-advanced[open] summary::after {
  content: "−";
}

.v2-advanced-body {
  padding: 2px 0 8px;
}

.v2-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--v2-line);
}

.v2-switch-copy strong,
.v2-switch-copy span {
  display: block;
}

.v2-switch-copy strong {
  font-size: 13px;
}

.v2-switch-copy span {
  margin-top: 4px;
  color: var(--v2-muted);
  font-size: 11px;
}

.v2-switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex: 0 0 auto;
}

.v2-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.v2-switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d7d3cb;
  transition: background 160ms ease;
}

.v2-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
  transition: transform 160ms ease;
}

.v2-switch input:checked + span {
  background: var(--v2-accent);
}

.v2-switch input:checked + span::after {
  transform: translateX(18px);
}

.v2-controls-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-top: 1px solid var(--v2-line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.v2-step-count {
  color: var(--v2-muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.v2-footer-actions {
  display: flex;
  gap: 8px;
}

.v2-preview-pane {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.055), transparent 35%),
    var(--v2-stage);
}

.v2-preview-pane #workspace {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0;
}

.v2-preview-pane .stage-head {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(23, 23, 22, 0.88);
  backdrop-filter: blur(16px);
  z-index: 8;
}

.v2-preview-pane .stage-head::before {
  content: attr(data-v2-label);
  margin-right: 14px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v2-preview-pane .stage-head .status {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v2-preview-pane .stage-head-actions {
  margin-left: auto;
}

.v2-preview-pane .stage-head-actions #sizeInfo,
.v2-preview-pane .stage-head-actions #openOutputBtn,
.v2-preview-pane .stage-head-actions #previewToggleBtn {
  display: none;
}

.v2-preview-pane #quickPlayBtn {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.v2-preview-pane #quickPlayBtn:disabled {
  opacity: 0.35;
}

.v2-preview-pane .loading-notice {
  position: absolute;
  top: 74px;
  left: 50%;
  z-index: 30;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  background: rgba(38, 37, 35, 0.92);
  box-shadow: var(--v2-shadow);
}

.v2-preview-pane #stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: clamp(18px, 3vw, 42px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.v2-preview-pane .preview-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: visible;
}

.v2-preview-pane .preview-shell #canvas {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 7px;
  background: #f5f1e8;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  touch-action: none;
}

.v2-preview-pane .drop,
.v2-preview-pane .camera-wrap {
  inset: clamp(18px, 3vw, 42px);
  border-radius: 18px;
}

.v2-preview-pane .drop {
  display: none;
  color: rgba(255, 255, 255, 0.68);
  border: 1px dashed rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.025);
}

.v2-active:not(.v2-has-media) .v2-preview-pane .preview-shell {
  opacity: 0;
  pointer-events: none;
}

.v2-active:not(.v2-has-media) .v2-preview-pane .timeline {
  visibility: hidden;
}

.v2-preview-pane .timeline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  margin: 0;
  padding: 0 22px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: var(--v2-stage-soft);
  box-shadow: none;
}

.v2-preview-pane .timeline .small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
}

.v2-preview-pane .progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
}

.v2-preview-pane .bar {
  height: 100%;
  border-radius: inherit;
  background: var(--v2-accent);
}

.v2-manual-mode .v2-preview-pane {
  box-shadow: inset 0 0 0 2px rgba(231, 95, 67, 0.45);
}

.v2-manual-pill {
  display: none;
  position: absolute;
  top: 72px;
  right: 18px;
  z-index: 20;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--v2-accent);
  box-shadow: 0 8px 24px rgba(231, 95, 67, 0.28);
  font-size: 10px;
  font-weight: 800;
}

.v2-manual-mode .v2-manual-pill {
  display: block;
}

.v2-export-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.v2-export-card {
  display: grid;
  align-content: space-between;
  gap: 24px;
  min-height: 165px;
  padding: 18px;
  border: 1px solid var(--v2-line);
  border-radius: 18px;
  color: var(--v2-ink);
  background: #fff;
}

.v2-export-card.is-primary {
  color: #fff;
  border-color: #282725;
  background: #282725;
}

.v2-export-card strong,
.v2-export-card span {
  display: block;
}

.v2-export-card strong {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.v2-export-card span {
  margin-top: 6px;
  color: var(--v2-muted);
  font-size: 11px;
  line-height: 1.45;
}

.v2-export-card.is-primary span {
  color: rgba(255, 255, 255, 0.58);
}

.v2-export-card .v2-btn {
  width: 100%;
}

.v2-save-ready {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid rgba(47, 125, 88, 0.24);
  border-radius: 16px;
  background: rgba(47, 125, 88, 0.08);
}

.v2-save-ready[hidden] {
  display: none;
}

.v2-save-ready .v2-card-icon {
  color: var(--v2-success);
  background: rgba(47, 125, 88, 0.12);
}

@media (max-width: 980px) {
  .v2-editor {
    grid-template-columns: minmax(280px, 38%) minmax(0, 62%);
  }

  .v2-step-tab {
    font-size: 0;
  }

  .v2-step-number {
    font-size: 11px;
  }
}

@media (max-width: 720px) {
  .v2-app {
    grid-template-rows: 44px minmax(0, 1fr);
  }

  .v2-topbar {
    gap: 8px;
    padding: 0 10px;
  }

  .v2-brand {
    gap: 8px;
  }

  .v2-brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    font-size: 13px;
  }

  .v2-brand-copy strong {
    font-size: 14px;
  }

  .v2-top-actions {
    gap: 6px;
  }

  .v2-top-actions .v2-btn {
    min-height: 32px;
    padding: 0 11px;
    border-radius: 10px;
  }

  .v2-brand-copy span,
  .v2-local-badge {
    display: none;
  }

  .v2-language {
    height: 32px;
    padding-left: 8px;
    border-radius: 10px;
  }

  .v2-language > span {
    display: none;
  }

  .v2-language select {
    min-width: 58px;
    font-size: 11px;
  }

  .v2-editor {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(190px, 34dvh) minmax(0, 1fr);
  }

  .v2-preview-pane {
    grid-row: 1;
  }

  .v2-controls-pane {
    grid-row: 2;
    border-top: 1px solid var(--v2-line);
    border-right: 0;
  }

  .v2-step-nav {
    gap: 2px;
    padding: 4px 10px 3px;
  }

  .v2-step-tab {
    gap: 2px;
    padding: 2px;
    border-radius: 9px;
  }

  .v2-step-number {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .v2-step-panel {
    padding: 10px 14px 12px;
  }

  .v2-step-panel h2 {
    font-size: 20px;
    line-height: 1.05;
  }

  .v2-eyebrow {
    margin-bottom: 4px;
    font-size: 9px;
  }

  .v2-intro {
    display: none;
  }

  .v2-import-card {
    gap: 6px;
    min-height: 102px;
    padding: 12px;
    border-radius: 14px;
  }

  .v2-import-grid {
    gap: 7px;
  }

  .v2-import-grid .v2-import-card {
    min-height: 88px;
    padding: 9px 7px;
  }

  .v2-import-grid .v2-import-card span:last-child {
    display: none;
  }

  .v2-import-symbol {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 20px;
  }

  .v2-import-card strong {
    font-size: 14px;
  }

  .v2-import-card span {
    font-size: 9px;
  }

  .v2-mini-note {
    gap: 6px;
    margin-top: 7px;
    padding: 7px 9px;
    border-radius: 10px;
    font-size: 9px;
    line-height: 1.35;
  }

  .v2-feature-grid,
  .v2-card-row {
    gap: 7px;
  }

  .v2-feature-card,
  .v2-choice-card,
  .v2-hero-feature {
    gap: 9px;
    padding: 9px 10px;
    border-radius: 13px;
    box-shadow: none;
  }

  .v2-card-row .v2-choice-card {
    min-height: 76px;
  }

  .v2-card-icon,
  .v2-card-row .v2-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 14px;
  }

  .v2-card-copy strong {
    font-size: 12px;
  }

  .v2-feature-card .v2-card-copy span,
  .v2-choice-card .v2-card-copy span {
    display: none;
  }

  .v2-card-action {
    font-size: 15px;
  }

  .v2-section-label {
    margin: 10px 0 6px;
    font-size: 9px;
  }

  .v2-switch-row {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }

  .v2-switch-copy strong {
    font-size: 11px;
  }

  .v2-switch-copy span {
    display: none;
  }

  #v2PlayDevelopmentBtn {
    min-height: 34px;
    margin-top: 7px !important;
  }

  .v2-field {
    gap: 5px;
    margin-top: 8px;
    font-size: 10px;
  }

  .v2-field input[type="text"],
  .v2-field select {
    height: 36px;
    border-radius: 9px;
  }

  .v2-btn {
    min-height: 34px;
    padding: 0 11px;
    border-radius: 9px;
    font-size: 10px;
  }

  .v2-preset-row,
  .v2-sticker-row {
    gap: 5px;
  }

  .v2-preset-chip,
  .v2-sticker-chip {
    min-height: 32px;
    padding: 0 9px;
    border-radius: 9px;
    font-size: 10px;
  }

  .v2-sticker-chip {
    width: 34px;
    padding: 0;
    font-size: 16px;
  }

  .v2-advanced {
    margin-top: 9px;
  }

  .v2-advanced summary {
    padding: 9px 2px 5px;
    font-size: 10px;
  }

  .v2-preview-pane .stage-head {
    min-height: 34px;
    padding: 0 9px;
  }

  .v2-preview-pane .stage-head::before {
    display: none;
  }

  .v2-preview-pane #quickPlayBtn {
    min-height: 26px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 0;
  }

  .v2-preview-pane #quickPlayBtn::before {
    content: "▶";
    font-size: 11px;
  }

  .v2-preview-pane #stage {
    padding: 8px;
  }

  .v2-preview-pane .drop,
  .v2-preview-pane .camera-wrap {
    inset: 8px;
  }

  .v2-preview-pane .timeline {
    min-height: 28px;
    padding: 0 9px;
  }

  .v2-controls-footer {
    padding: 6px 10px;
  }

  .v2-controls-footer .v2-btn {
    min-height: 32px;
    padding: 0 11px;
  }

  .v2-manual-pill {
    top: 40px;
  }

  .v2-export-grid {
    gap: 7px;
  }

  .v2-export-card {
    gap: 9px;
    min-height: 105px;
    padding: 10px;
    border-radius: 13px;
  }

  .v2-export-card strong {
    font-size: 16px;
  }

  .v2-export-card span {
    margin-top: 3px;
    font-size: 9px;
    line-height: 1.3;
  }

  .v2-save-ready {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 7px;
    margin-bottom: 8px;
    padding: 8px;
    border-radius: 12px;
  }

  .v2-save-ready .v2-card-copy span {
    display: block;
    font-size: 9px;
  }

  .v2-save-ready .v2-btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 390px) {
  .v2-card-row,
  .v2-export-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
