:root {
  color-scheme: dark;
  --bg: #111318;
  --panel: #191d24;
  --panel-2: #202631;
  --line: #313846;
  --text: #f2f4f8;
  --muted: #aab2c0;
  --accent: #9fb2cc;
  --accent-2: #cbd3df;
  --danger: #ef6b73;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

.app-shell {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) 420px;
  gap: 0;
  min-height: 100vh;
}

.stack-home {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  gap: 18px;
  min-height: 100vh;
  padding: 24px;
}

.creator-gate,
.creator-confirm {
  display: grid;
  align-content: center;
  justify-self: center;
  width: min(560px, 100%);
  min-height: calc(100vh - 48px);
}

.creator-gate h1 {
  margin: 0;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 1;
}

.creator-gate p,
.creator-confirm p {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 16px;
}

.creator-confirm {
  text-align: center;
}

.creator-confirm span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.creator-confirm strong {
  display: block;
  margin: 14px 0 8px;
  padding: 22px;
  border: 1px solid rgb(203 211 223 / 0.16);
  border-radius: 8px;
  background: rgb(32 38 49 / 0.72);
  color: var(--text);
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
}

.empty-player-state {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(58vh, 620px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(159 178 204 / 0.12), rgb(54 191 154 / 0.08)),
    #0b0f15;
  color: var(--muted);
  text-align: center;
}

.empty-player-state strong {
  color: var(--text);
  font-size: 24px;
}

.creator-confirm .primary-button {
  justify-self: center;
  min-width: 220px;
}

.creator-login-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
}

.creator-login-row input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #0d1118;
  color: var(--text);
  text-transform: uppercase;
}

.creator-dashboard {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  min-height: calc(100vh - 48px);
}

.stack-home-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.creator-access {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.creator-id-chip {
  min-height: 30px;
  border: 1px solid rgb(203 211 223 / 0.16);
  border-radius: 999px;
  padding: 0 11px;
  background: rgb(32 38 49 / 0.72);
  color: var(--text);
  cursor: pointer;
}

.creator-access input {
  width: min(220px, 52vw);
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: #0d1118;
  color: var(--text);
}

.compact-button {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
}

.stack-add-button {
  width: 46px;
  height: 42px;
  font-size: 24px;
}

.stack-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  align-content: start;
  min-height: 0;
  overflow: auto;
}

.stack-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(112px, 132px) minmax(0, 1fr) auto;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.stack-card-open {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.stack-card-thumb {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  min-height: 132px;
  background:
    linear-gradient(135deg, rgb(159 178 204 / 0.18), rgb(239 107 115 / 0.12)),
    #090d13;
  background-position: center;
  background-size: cover;
  color: var(--muted);
  font-weight: 700;
}

.stack-card-body {
  display: grid;
  gap: 5px;
  padding: 12px;
  align-content: center;
}

.stack-card-body strong,
.stack-card-body span,
.stack-card-body small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stack-card-body strong {
  font-size: 16px;
}

.stack-card-body span,
.stack-card-body small {
  color: var(--muted);
  font-size: 12px;
}

.stack-card-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 34px;
  gap: 6px;
  padding: 10px;
  align-content: center;
}

.stack-card-actions .icon-button {
  width: 34px;
  height: 32px;
  color: var(--muted);
}

.stage {
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: 12px;
  padding: 16px;
  min-width: 0;
}

.video-deck {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(58vh, 620px);
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #06080c;
  overflow: hidden;
}

.player-pane {
  position: absolute;
  inset: 0;
  display: block;
  border: 0;
  background: #06080c;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.player-pane.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

.player-pane strong {
  font-size: clamp(18px, 2vw, 24px);
  overflow-wrap: anywhere;
}

.player-pane small,
.player-label,
.sidebar-head span,
.clip-list span {
  color: var(--muted);
}

.youtube-mount {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #06080c;
}

.youtube-mount iframe {
  width: 100%;
  height: 100%;
}

.player-pane > span,
.player-pane > strong,
.player-pane > small {
  display: none;
}

.player-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  text-transform: uppercase;
}

.transport {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 48px;
}

.transport-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.icon-button,
.primary-button,
.secondary-button,
.segment,
.clip-list button {
  border: 0;
  cursor: pointer;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 44px;
  border-radius: 8px;
  background: var(--panel-2);
  color: var(--text);
  font-weight: 700;
}

.icon-button.is-confirmed {
  background: var(--accent);
  color: #07110e;
}

.icon-button.is-error {
  background: var(--danger);
  color: #180407;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  pointer-events: none;
}

.time-readout {
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.stack-time-readout {
  color: var(--text);
}

.clip-time-readout {
  text-align: right;
}

.play-toggle {
  width: 48px;
}

.status-pill {
  margin-left: auto;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-2);
  font-size: 12px;
  letter-spacing: 0;
}

.timeline-wrap {
  padding-bottom: 0;
}

.timeline {
  position: relative;
  height: 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
  touch-action: none;
}

.segments {
  display: flex;
  height: 100%;
  width: 100%;
}

.segment {
  flex: 0 0 auto;
  min-width: 0;
  padding: 0 8px;
  border-right: 1px solid #0f1218;
  background: #27313d;
  color: var(--text);
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.segment:nth-child(2n) {
  background: #342f3b;
}

.segment.is-active {
  box-shadow: inset 0 -4px 0 var(--accent);
}

.playhead {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--danger);
  transform: translateX(-1px);
  pointer-events: none;
}

.sidebar {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
  max-height: 100vh;
  padding: 14px;
  border-left: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

h1 {
  margin: 0;
  font-size: 22px;
}

.sidebar-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.sidebar-head h1 {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stack-title-input {
  min-width: 0;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px 10px;
  background: transparent;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
}

.stack-title-input:focus {
  border-color: var(--line);
  background: #0d1118;
  outline: none;
}

.add-first-clip {
  width: 100%;
  min-height: 44px;
}

.back-button {
  width: 38px;
  height: 34px;
  font-size: 24px;
  line-height: 1;
}

.share-button {
  width: 38px;
  height: 34px;
}

.clip-form {
  display: grid;
  gap: 8px;
}

.clip-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.clip-form input {
  width: 100%;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  background: #10141b;
  color: var(--text);
}

.clip-form textarea {
  width: 100%;
  min-height: 48px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  background: #10141b;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.primary-button {
  min-height: 34px;
  border-radius: 6px;
  background: var(--accent);
  color: #07110e;
  font-weight: 700;
}

.secondary-button {
  min-height: 34px;
  border: 1px solid #455064;
  border-radius: 6px;
  background: #1b2230;
  color: var(--text);
  font-weight: 700;
}

.creator-editor {
  width: min(760px, calc(100vw - 24px));
  max-height: min(86vh, 900px);
  overflow: auto;
}

.clip-editor-dialog {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: var(--panel);
  color: var(--text);
}

.clip-editor-dialog::backdrop {
  background: rgb(0 0 0 / 0.66);
}

.clip-editor-dialog .clip-form {
  padding: 14px;
}

.dialog-head,
.stack-workbench-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stack-workbench-head {
  justify-content: flex-end;
}

.dialog-head .icon-button {
  width: 38px;
  height: 38px;
}

.dialog-head h2,
.stack-workbench-head h2 {
  margin: 0;
  font-size: 15px;
}

.editor-preview {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 640px);
  justify-self: center;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #06080c;
  overflow: hidden;
}

.editor-preview iframe,
.editor-preview > div {
  width: 100%;
  height: 100%;
}

.editor-preview iframe {
  pointer-events: none;
}

.editor-preview span {
  color: var(--muted);
  font-size: 13px;
}

.editor-actions {
  display: grid;
  grid-template-columns: repeat(5, 42px);
  gap: 6px;
  justify-content: center;
}

.editor-actions .icon-button {
  width: 42px;
  height: 38px;
}

.editor-control-row {
  display: grid;
  grid-template-columns: minmax(168px, auto) minmax(218px, 1fr) auto;
  align-items: end;
  gap: 8px;
}

.time-fields,
.zoom-actions {
  display: flex;
  align-items: end;
  gap: 6px;
}

.time-fields label {
  display: grid;
  gap: 3px;
  min-width: 78px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.time-fields input {
  width: 78px;
  height: 38px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #10141b;
  color: var(--text);
  font-size: 13px;
}

.zoom-actions {
  justify-content: end;
}

.zoom-actions .icon-button {
  width: 40px;
  height: 38px;
}

.trim-overview {
  position: relative;
  height: 10px;
  border: 1px solid #3a4150;
  border-radius: 999px;
  background: #0c0f14;
  overflow: hidden;
}

.trim-overview-window {
  position: absolute;
  top: 0;
  bottom: 0;
  min-width: 8px;
  border-radius: inherit;
  background: rgb(203 211 223 / 0.42);
}

.trim-timeline {
  position: relative;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c0f14;
  overflow: hidden;
  touch-action: none;
  cursor: crosshair;
}

.editor-workspace {
  display: grid;
  gap: 8px;
}

.is-hidden {
  display: none !important;
}

.trim-selection {
  position: absolute;
  top: 22px;
  bottom: 7px;
  border-radius: 4px;
  background: rgb(210 216 226 / 0.22);
  z-index: 1;
}

.trim-ruler {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.trim-tick {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgb(203 211 223 / 0.2);
}

.trim-tick::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 1px;
  height: 8px;
  background: rgb(203 211 223 / 0.34);
}

.trim-tick.is-major {
  background: rgb(203 211 223 / 0.34);
}

.trim-tick.is-major::before {
  content: attr(data-label);
  position: absolute;
  top: 4px;
  left: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
}

.trim-tick.is-major::after {
  height: 15px;
  background: rgb(203 211 223 / 0.58);
}

.trim-marker {
  position: absolute;
  top: 19px;
  bottom: 4px;
  width: 12px;
  border: 1px solid #d6dbe5;
  border-radius: 4px;
  background: #2a303b;
  transform: translateX(-6px);
  cursor: ew-resize;
  z-index: 4;
}

.trim-marker-out {
  background: #2a303b;
}

.trim-playhead {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #f2f4f8;
  transform: translateX(-1px);
  pointer-events: none;
  z-index: 3;
}

.stack-workbench {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  min-height: 0;
}

.stack-workbench-head .icon-button {
  width: 38px;
  height: 34px;
}

.debug-panel {
  max-height: 34vh;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #10141b;
  overflow: auto;
}

.debug-panel-head {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.debug-panel[open] .debug-panel-head {
  border-bottom: 1px solid var(--line);
}

.debug-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  width: 100%;
  padding: 8px 10px;
}

.debug-copy-button {
  min-width: 0;
  width: 100%;
  min-height: 26px;
  padding: 3px 8px;
  border: 1px solid #455064;
  border-radius: 6px;
  background: #1b2230;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.debug-copy-button:hover {
  border-color: var(--accent);
}

.debug-copy-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.debug-panel dl {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0 10px 10px;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 11px;
}

.debug-panel dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
}

.debug-panel dt,
.debug-panel dd {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.debug-panel dt {
  color: var(--muted);
}

.debug-panel dd {
  margin: 0;
  color: var(--text);
  text-align: right;
}

.clip-list {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: auto;
}

.clip-list li {
  display: grid;
  grid-template-columns: auto 46px minmax(0, 1fr) auto;
  gap: 3px 8px;
  min-height: 56px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #151a22;
}

.clip-list li.is-active {
  border-color: var(--accent);
}

.clip-list li.is-editing {
  border-color: var(--accent-2);
}

.clip-list li.is-dragging {
  opacity: 0.55;
}

.clip-list strong,
.clip-list span {
  grid-column: 3;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clip-list strong {
  font-size: 13px;
  line-height: 1.2;
}

.clip-list span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.clip-list img {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  border-radius: 5px;
  object-fit: cover;
  background: #06080c;
}

.clip-list .drag-handle {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 18px;
  min-height: 46px;
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 0 5px, #6f7887 5px 7px, transparent 7px 11px, #6f7887 11px 13px, transparent 13px);
  opacity: 0.55;
  cursor: grab;
}

.clip-list button {
  grid-column: 3;
  grid-row: auto;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--panel-2);
  color: var(--muted);
}

.clip-list .clip-card-actions {
  grid-column: 4;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: 28px 28px;
  gap: 4px;
}

.clip-list .clip-card-actions button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
}

.clip-list .clip-card-actions svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

.clip-list .clip-duration {
  color: var(--accent-2);
}

@media (max-width: 820px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .stage {
    padding: 14px;
  }

  .video-deck {
    max-height: none;
  }

  .player-pane {
    max-height: none;
  }

  .sidebar {
    max-height: none;
    border-left: 0;
    border-top: 1px solid var(--line);
    overflow: visible;
  }

  .clip-editor-dialog {
    width: min(100vw - 20px, 680px);
  }
}

.watch-page {
  min-height: 100vh;
  background: #05070a;
  overflow: hidden;
}

.watch-shell {
  min-height: 100vh;
  display: grid;
  padding: clamp(8px, 1.2vw, 16px);
  background:
    radial-gradient(circle at 50% 0, rgb(159 178 204 / 0.14), transparent 30%),
    linear-gradient(180deg, #11151c 0%, #05070a 42%, #05070a 100%);
}

.watch-stage {
  position: relative;
  width: min(1760px, 100%);
  min-height: calc(100vh - clamp(16px, 2.4vw, 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(52px, 7vw, 64px);
  grid-template-rows: clamp(42px, 8vh, 52px) minmax(0, 1fr);
  align-items: stretch;
  column-gap: clamp(8px, 1.1vw, 14px);
  row-gap: 0;
  padding: 0;
}

.watch-stage::before {
  content: "";
  position: absolute;
  inset: 0 clamp(72px, 9vw, 96px) 0 0;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 16px;
  pointer-events: none;
}

.watch-cinema-titlebar {
  grid-column: 1 / -1;
  grid-row: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
  min-width: 0;
  padding-left: clamp(22px, 3vw, 34px);
  padding-right: clamp(88px, 10vw, 112px);
}

.watch-player-area {
  position: relative;
  display: grid;
  grid-column: 1;
  grid-row: 2;
  grid-template-columns: minmax(0, 1fr) clamp(16px, 2.2vw, 22px);
  gap: clamp(6px, 1vw, 10px);
  min-width: 0;
  min-height: 0;
  align-items: center;
}

.clip-local-rail {
  position: relative;
  align-self: center;
  justify-self: center;
  width: clamp(18px, 2.4vw, 24px);
  height: min(calc(100dvh - clamp(66px, 12vh, 88px)), calc((100vw - clamp(52px, 7vw, 64px) - clamp(48px, 7vw, 68px)) * 9 / 16));
  max-height: calc(100dvh - clamp(66px, 12vh, 88px));
  min-height: 220px;
  cursor: grab;
  touch-action: none;
}

.clip-local-time {
  position: absolute;
  left: 50%;
  color: rgb(188 255 0 / 0.92);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.clip-local-time-start {
  top: -24px;
}

.clip-local-time-end {
  bottom: -24px;
}

.clip-local-rail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(188 255 0 / 0.18), rgb(188 255 0 / 0.98), rgb(188 255 0 / 0.18));
  box-shadow: 0 0 18px rgb(188 255 0 / 0.34);
  transform: translateX(-50%);
}

.clip-local-playhead {
  position: absolute;
  left: 50%;
  top: 0;
  width: 16px;
  height: 16px;
  border: 2px solid rgb(188 255 0 / 0.98);
  border-radius: 50%;
  background: rgb(5 7 10 / 0.2);
  box-shadow:
    0 0 0 9px rgb(188 255 0 / 0.09),
    0 0 24px rgb(188 255 0 / 0.32);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.clip-local-playhead::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(188 255 0 / 0.96);
  box-shadow: 0 0 14px rgb(188 255 0 / 0.5);
  transform: translate(-50%, -50%);
}

.watch-title-block {
  min-width: 0;
}

.watch-title-block span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: rgb(238 244 250 / 0.72);
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-title-block strong {
  display: block;
  max-width: 100%;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(13px, 1.25vw, 18px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.watch-title-block small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.watch-cinema-titlebar span,
.watch-cinema-titlebar strong,
.watch-cinema-titlebar em,
.watch-cinema-titlebar small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-cinema-titlebar .watch-brand {
  color: rgb(238 244 250 / 0.94);
  font-size: clamp(13px, 1.65vw, 17px);
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1;
}

.watch-cinema-titlebar strong {
  justify-self: end;
  max-width: min(34vw, 520px);
  color: rgb(238 244 250 / 0.9);
  font-size: clamp(15px, 1.6vw, 18px);
  font-style: normal;
  font-weight: 650;
  line-height: 1.1;
}

.watch-cinema-titlebar em {
  justify-self: end;
  max-width: min(24vw, 320px);
  color: rgb(188 255 0 / 0.96);
  font-size: clamp(13px, 1.45vw, 16px);
  font-style: normal;
  font-weight: 650;
  line-height: 1.1;
}

.watch-cinema-titlebar small {
  display: none;
}

.watch-fullscreen {
  width: 44px;
  height: 42px;
  color: var(--text);
  background: rgb(32 38 49 / 0.88);
}

.watch-stage .video-deck {
  align-self: center;
  justify-self: center;
  width: 100%;
  height: min(calc(100dvh - clamp(66px, 12vh, 88px)), calc((100vw - clamp(52px, 7vw, 64px) - clamp(48px, 7vw, 68px)) * 9 / 16));
  min-height: 220px;
  max-height: calc(100dvh - clamp(66px, 12vh, 88px));
  border-color: rgb(203 211 223 / 0.1);
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.035),
    0 22px 80px rgb(0 0 0 / 0.36);
}

.watch-stage .player-pane {
  transition:
    opacity 120ms ease,
    transform 240ms cubic-bezier(0.2, 0.84, 0.22, 1);
  will-change: opacity, transform;
}

.watch-stage .player-pane.stack-slide-out {
  opacity: 0;
  transform: translateY(-12%);
  z-index: 4;
}

.watch-stage .player-pane.stack-slide-in {
  opacity: 1;
  transform: translateY(12%);
  animation: stackPlayerIn 240ms cubic-bezier(0.2, 0.84, 0.22, 1) forwards;
  z-index: 5;
}

.watch-overlay-play {
  position: absolute;
  left: 14px;
  top: 50%;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(188 255 0 / 0.36);
  border-radius: 50%;
  background: rgb(5 7 10 / 0.62);
  color: rgb(188 255 0 / 0.96);
  box-shadow:
    0 0 0 6px rgb(188 255 0 / 0.08),
    0 0 24px rgb(0 0 0 / 0.36);
  transform: translateY(-50%);
}

.watch-overlay-play svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  pointer-events: none;
}

.watch-rail {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.watch-rail .watch-title-block,
.watch-rail .watch-creator-link {
  display: none;
}

.watch-creator-link {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgb(54 191 154 / 0.38);
  border-radius: 999px;
  background: rgb(54 191 154 / 0.14);
  color: #d9fff2;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.watch-creator-link:hover,
.watch-creator-link:focus-visible {
  background: rgb(54 191 154 / 0.22);
  outline: none;
}

.watch-rail-times {
  display: none;
}

.watch-rail-times .time-readout {
  font-size: 11px;
  line-height: 1.25;
  text-align: left;
}

.watch-transport {
  display: none;
  grid-template-columns: repeat(2, 42px);
  justify-content: center;
  gap: 8px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgb(5 7 10 / 0.24);
}

.watch-transport .icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgb(188 255 0 / 0.28);
  border-radius: 50%;
  background: rgb(9 13 18 / 0.86);
  color: rgb(188 255 0 / 0.92);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.04);
}

.watch-transport .play-toggle {
  width: 42px;
  height: 42px;
  background: rgb(188 255 0 / 0.94);
  color: #071006;
  box-shadow:
    0 0 0 5px rgb(188 255 0 / 0.09),
    0 0 22px rgb(188 255 0 / 0.26);
}

.watch-transport #prevClip,
.watch-transport #nextClip {
  display: none;
}

.watch-stage .timeline-wrap {
  align-self: stretch;
  height: 100%;
  min-height: 0;
  padding: 0;
}

.watch-stage .timeline {
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.watch-stage .timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(188 255 0 / 0.06), rgb(188 255 0 / 0.24), rgb(188 255 0 / 0.06));
  box-shadow: 0 0 10px rgb(188 255 0 / 0.08);
  transform: translateX(-50%);
}

.watch-stage .segments {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  gap: 3px;
  height: 100%;
  width: auto;
  z-index: 2;
}

.watch-stage .segment {
  display: block;
  width: 36px;
  height: auto;
  min-height: 20px;
  max-height: none;
  flex: var(--segment-weight, 1) 1 0;
  margin-bottom: 0;
  padding: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.15), transparent 24%),
    linear-gradient(180deg, #343836 0%, #202322 54%, #111313 100%);
  color: transparent;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.16),
    inset 0 -1px 0 rgb(0 0 0 / 0.56),
    0 5px 16px rgb(0 0 0 / 0.34);
  transform-origin: center;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.watch-stage .segment.is-light {
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.42), transparent 24%),
    linear-gradient(180deg, #f0eadb 0%, #c9c0ad 54%, #eee7d8 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.62),
    inset 0 -1px 0 rgb(0 0 0 / 0.2),
    0 5px 16px rgb(0 0 0 / 0.34);
}

.watch-stage .segment:last-child {
  border-bottom: 0;
}

.watch-stage .segment.is-active {
  position: relative;
  width: 44px;
  background:
    linear-gradient(90deg, rgb(188 255 0 / 0.98) 0 18%, transparent 18%),
    linear-gradient(135deg, rgb(255 255 255 / 0.15), transparent 24%),
    linear-gradient(180deg, #343836 0%, #202322 54%, #111313 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.58),
    inset 0 -1px 0 rgb(0 0 0 / 0.26),
    -9px 0 24px rgb(188 255 0 / 0.28),
    0 10px 26px rgb(0 0 0 / 0.42);
  transform: none;
}

.watch-stage .segment.is-light.is-active {
  background:
    linear-gradient(90deg, rgb(188 255 0 / 0.98) 0 18%, transparent 18%),
    linear-gradient(135deg, rgb(255 255 255 / 0.42), transparent 24%),
    linear-gradient(180deg, #f0eadb 0%, #c9c0ad 54%, #eee7d8 100%);
}

.watch-stage .segment.is-active::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgb(188 255 0 / 0.9);
  box-shadow:
    inset 0 0 0 1px rgb(0 0 0 / 0.14),
    0 0 16px rgb(188 255 0 / 0.36);
  transform: translate(-50%, -50%);
}

.watch-message {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 7;
  min-height: 0;
  margin: 0;
  color: var(--muted);
  pointer-events: none;
}

.watch-is-fullscreen .watch-shell {
  padding: 8px;
}

.watch-is-fullscreen .watch-stage {
  width: 100%;
  min-height: calc(100dvh - 16px);
  grid-template-rows: auto minmax(0, 1fr);
}

.watch-is-fullscreen .watch-cinema-titlebar {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  align-items: end;
  gap: clamp(18px, 3vw, 44px);
  min-height: clamp(46px, 8vh, 92px);
  padding: clamp(8px, 1.4vw, 22px) 0 0;
}

.watch-is-fullscreen .watch-player-area {
  grid-column: 1;
  grid-row: 2;
}

.watch-is-fullscreen .watch-rail {
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-rows: auto auto minmax(0, 1fr);
}

.watch-is-fullscreen .watch-rail .watch-title-block {
  display: none;
}

.watch-is-fullscreen .watch-cinema-titlebar small {
  display: none;
}

.watch-is-fullscreen .watch-stage .video-deck {
  width: min(100%, calc((100dvh - clamp(70px, 10vh, 120px)) * 16 / 9));
  max-height: calc(100dvh - clamp(70px, 10vh, 120px));
}

.watch-page.is-portrait-stack .watch-stage {
  grid-template-columns: minmax(0, 1fr) clamp(104px, 10vw, 150px);
}

.watch-page.is-portrait-stack .watch-stage .video-deck {
  height: auto;
  aspect-ratio: 9 / 16;
  max-height: calc(100dvh - 32px);
  justify-self: center;
  width: min(100%, calc((100dvh - 32px) * 9 / 16));
}

@media (max-width: 760px) {
  .watch-shell {
    padding: 8px;
  }

  .watch-stage {
    min-height: calc(100dvh - 16px);
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 8px;
  }

  .watch-is-fullscreen .watch-cinema-titlebar {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }

  .watch-cinema-titlebar strong,
  .watch-cinema-titlebar small {
    justify-self: start;
    max-width: 100%;
  }

  .watch-title-block span {
    font-size: 10px;
  }

  .watch-title-block strong {
    font-size: 13px;
  }

  .watch-transport {
    gap: 6px;
  }

  .watch-transport .icon-button {
    height: 34px;
  }
}

@media (max-width: 520px) {
  .editor-control-row {
    grid-template-columns: 1fr;
  }

  .time-fields,
  .editor-actions,
  .zoom-actions {
    justify-content: start;
  }

  .editor-actions {
    grid-template-columns: repeat(5, 38px);
  }

  .editor-actions .icon-button,
  .zoom-actions .icon-button {
    width: 38px;
  }
}

@keyframes stackPlayerIn {
  from {
    transform: translateY(12%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes stackNodePulse {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.28);
  }
  99% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .watch-stage .player-pane,
  .watch-stage .player-pane.stack-slide-in,
  .watch-stage .player-pane.stack-slide-out,
  .watch-stage .segment {
    animation: none;
    transition: none;
    transform: none;
  }
}

.watch-stage-vertical-probe {
  width: min(1500px, 100%);
  min-height: calc(100dvh - 32px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 54px minmax(0, 1fr) auto;
  gap: 10px;
  padding: 0;
}

.watch-stage-vertical-probe::before {
  content: none;
}

.watch-stage-vertical-probe .watch-head {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  align-items: center;
  column-gap: 14px;
  min-width: 0;
}

.watch-stage-vertical-probe .watch-brand {
  grid-column: 1;
  justify-self: start;
  color: #f1f4f7;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", "Aptos Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(15px, 1.65vw, 25px);
  font-weight: 200;
  font-stretch: condensed;
  letter-spacing: 0.46em;
  line-height: 1;
  transform: scaleX(0.68);
  transform-origin: left center;
  white-space: nowrap;
}

.watch-stage-vertical-probe .watch-stack-summary {
  grid-column: 1;
  justify-self: end;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
  max-width: min(46vw, 620px);
}

.watch-stage-vertical-probe .watch-stack-summary strong {
  color: #f1f4f7;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", "Aptos Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 400;
  font-stretch: condensed;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-stage-vertical-probe .watch-stack-summary span {
  color: #bcff00;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", "Aptos Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(11px, 0.95vw, 15px);
  font-weight: 400;
  font-stretch: condensed;
  line-height: 1;
  white-space: nowrap;
}

.watch-stage-vertical-probe .watch-stack-summary #activeClipTitle {
  display: none;
}

.watch-stage-vertical-probe .status-pill {
  display: none;
}

.watch-stage-vertical-probe .watch-main {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 14px;
  min-width: 0;
  min-height: 0;
}

.watch-stage-vertical-probe .video-deck {
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.watch-stage-vertical-probe .watch-overlay-play {
  position: absolute;
  left: 14px;
  top: 50%;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(203 211 223 / 0.28);
  border-radius: 50%;
  background: rgb(5 7 10 / 0.62);
  color: var(--text);
  transform: translateY(-50%);
}

.watch-stage-vertical-probe .watch-overlay-play svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  pointer-events: none;
}

.watch-stage-vertical-probe .watch-vertical-timeline-wrap {
  align-self: stretch;
  height: 100%;
  min-height: 0;
  padding: 0;
}

.watch-stage-vertical-probe .watch-timeline-cluster {
  display: grid;
  grid-template-columns: 28px 72px;
  gap: 12px;
  align-self: stretch;
  height: 100%;
  min-height: 0;
}

.watch-stage-vertical-probe .watch-local-timeline {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgb(188 255 0 / 0.42) 0 calc(50% + 1px), transparent 0);
}

.watch-stage-vertical-probe .watch-local-playhead {
  position: absolute;
  left: 50%;
  top: 0;
  width: 18px;
  height: 18px;
  background: #bcff00;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.watch-stage-vertical-probe .watch-vertical-timeline {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgb(188 255 0 / 0.22) 0 calc(50% + 1px), transparent 0);
  overflow: visible;
  touch-action: none;
}

.watch-stage-vertical-probe .watch-vertical-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background:
    linear-gradient(180deg, transparent, rgb(188 255 0 / 0.6) 10%, rgb(188 255 0 / 0.32) 50%, rgb(188 255 0 / 0.6) 90%, transparent);
  box-shadow: none;
  transform: translateX(-50%);
  pointer-events: none;
}

.watch-stage-vertical-probe .segments {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.watch-stage-vertical-probe .segment {
  position: relative;
  width: 54px;
  min-height: 18px;
  max-height: none;
  flex: 0 0 auto;
  border: 0;
  border-radius: 5px 18px 18px 5px;
  background: transparent;
  box-shadow: none;
  color: transparent;
  overflow: visible;
  transform: none;
  z-index: 1;
  transition:
    width 140ms ease,
    filter 140ms ease;
}

.watch-stage-vertical-probe .segment-stone {
  position: absolute;
  inset: 1px 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.2), transparent 18%, transparent 72%, rgb(0 0 0 / 0.24)),
    linear-gradient(180deg, #555c61 0%, #373e43 18%, #1d2328 66%, #293139 100%);
  box-shadow:
    inset 0 2px 1px rgb(255 255 255 / 0.18),
    inset 0 -7px 12px rgb(0 0 0 / 0.3),
    inset 9px 0 14px rgb(255 255 255 / 0.08),
    inset -11px 0 16px rgb(0 0 0 / 0.28),
    0 8px 13px rgb(0 0 0 / 0.38);
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.watch-stage-vertical-probe .segment-stone::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 0.07);
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.16), transparent 24%, transparent 78%, rgb(0 0 0 / 0.18)),
    linear-gradient(90deg, rgb(255 255 255 / 0.12), transparent 28%, transparent 72%, rgb(0 0 0 / 0.18));
}

.watch-stage-vertical-probe .segment-stone::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: min(10px, 20%);
  border-radius: 8px;
  background: rgb(0 0 0 / 0.18);
  filter: blur(5px);
  opacity: 0.55;
}

.watch-stage-vertical-probe .segment.is-light .segment-stone {
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.48), transparent 20%, transparent 73%, rgb(88 73 54 / 0.22)),
    linear-gradient(180deg, #fbf5e5 0%, #dfd5c0 22%, #b9ad98 66%, #ded4c1 100%);
  box-shadow:
    inset 0 2px 1px rgb(255 255 255 / 0.54),
    inset 0 -7px 12px rgb(79 67 48 / 0.18),
    inset 9px 0 14px rgb(255 255 255 / 0.24),
    inset -11px 0 16px rgb(86 72 53 / 0.22),
    0 8px 13px rgb(0 0 0 / 0.34);
}

.watch-stage-vertical-probe .segment.is-active {
  width: 54px;
  border-radius: 6px 24px 24px 6px;
  filter: saturate(1.08) brightness(1.05);
}

.watch-stage-vertical-probe .segment.is-active .segment-stone {
  box-shadow:
    inset 0 2px 1px rgb(255 255 255 / 0.18),
    inset 0 -7px 12px rgb(0 0 0 / 0.28),
    inset -11px 0 15px rgb(0 0 0 / 0.24),
    0 11px 18px rgb(0 0 0 / 0.4);
}

.watch-stage-vertical-probe .segment-active-underlay {
  display: none;
}

.watch-stage-vertical-probe .segment.is-active .segment-active-underlay {
  background:
    linear-gradient(90deg, #bcff00 0%, #aeea00 58%, #7fa900 100%);
  border-radius: 16px 8px 8px 16px;
  bottom: 5px;
  display: block;
  left: -13px;
  pointer-events: none;
  position: absolute;
  top: 5px;
  width: 29px;
  z-index: 1;
}

.watch-stage-vertical-probe .segment.is-active::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #bcff00;
  border: 0;
  box-shadow: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 3;
}

.watch-stage-vertical-probe .segment-pulse {
  display: none;
}

.watch-stage-vertical-probe .watch-vertical-timeline.is-playing .segment.is-active .segment-pulse {
  animation: stackNodePulse 1650ms ease-out infinite;
  background: transparent;
  border: 2px solid #bcff00;
  border-radius: 50%;
  display: block;
  height: 42px;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 42px;
  z-index: 2;
}

.watch-stage-vertical-probe .watch-vertical-timeline.is-scrubbing .segment.is-active::before,
.watch-stage-vertical-probe .watch-vertical-timeline.is-scrubbing .segment.is-active .segment-pulse {
  opacity: 0;
}

.watch-stage-vertical-probe .segment.is-active::after {
  content: none;
}

.watch-stage-vertical-probe .playhead {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: auto;
  width: 42px;
  height: 42px;
  border: 2px solid #bcff00;
  border-radius: 50%;
  background:
    radial-gradient(circle, #bcff00 0 31%, transparent 33%);
  box-shadow: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
}

.watch-stage-vertical-probe .watch-vertical-timeline.is-scrubbing .playhead {
  opacity: 1;
}

.watch-stage-vertical-probe .watch-readout {
  grid-column: 1;
  grid-row: 3;
  justify-content: flex-start;
  min-height: 34px;
}
