:root {
  font-family: 'SUIT', 'Helvetica Neue', Arial, sans-serif;
  color: #f6f6f9;
  background: #050505;
  --bg: #050505;
  --surface: #383838;
  --surface-secondary: #5f5f5f;
  --card: #272727;
  --cream: #CABAAF;
  --stroke: rgba(246, 246, 249, 0.08);
  --accent: #CABAAF;
  --accent-strong: #736F68;
  --muted: #b5b5c2;
  --success: #4bd9a4;
  --danger: #ff8a8a;
  --rail-width: clamp(260px, 22vw, 360px);
  --top-bar-height: 64px;
  --folder-card-width: 220px;
  --folder-card-height: 180px;
}

@font-face {
  font-family: 'SUIT';
  src: url('/fonts/SUIT-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Akkurat';
  src: url('/fonts/Akkurat-Mono.OTF') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #050505 0%, var(--bg) 50%, #0f0f12 100%);
  color: #f6f6f9;
  overflow: hidden;
  padding-bottom: 10px;
}

body.share-view {
  background: var(--bg);
  overflow: hidden;
  padding-bottom: 0;
}

a {
  color: inherit;
}

main,
.app-main {
  width: 100%;
  max-width: none;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.6rem;
  color: var(--muted);
}

.hint {
  color: var(--muted);
  font-size: 0.55rem;
}

.eyebrow,
.hint,
.badge,
.status-pill,
.top-status,
.review-pill,
.comment-time,
.comment-timestamp,
.video-card__review,
.video-card__meta small,
.folder-card__body small,
.version-chip small,
.project-nav-item small {
  font-family: 'Akkurat', 'SUIT', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 200;
  font-size: 0.65rem;
}

.card {
  background: var(--card);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
}

label.floating-field {
  position: relative;
  display: block;
  gap: 0;
  font-size: 0.85rem;
  font-weight: 400;
}

input,
textarea,
select,
button,
progress {
  font: inherit;
}

input {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: #f6f6f9;
}

textarea,
select {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: #f6f6f9;
}

textarea {
  resize: vertical;
}

.floating-field input {
  width: 100%;
  padding: 1.1rem 0 0.6rem;
  border: none;
  border-bottom: 2px solid rgba(246, 246, 249, 0.2);
  background: transparent;
  background-color: transparent !important;
  color: #f6f6f9;
  font-size: 1rem;
  transition: border-color 150ms ease;
  border-radius: 0;
}

.floating-field input:focus {
  border-bottom-color: var(--accent);
  outline: none;
}

.floating-field input::placeholder {
  color: transparent;
}

.floating-label {
  position: absolute;
  left: 0;
  top: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(246, 246, 249, 0.6);
  pointer-events: none;
  transition: all 0.2s ease;
}

.floating-label__hint {
  font-size: 0.7rem;
  opacity: 0.7;
  margin-left: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.floating-highlight {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  transition: width 0.25s ease;
}

.floating-field input:focus+.floating-label,
.floating-field input:not(:placeholder-shown)+.floating-label {
  top: -0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.floating-field input:focus+.floating-label+.floating-highlight,
.floating-field input:not(:placeholder-shown)+.floating-label+.floating-highlight {
  width: 100%;
}

.floating-field input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-text-fill-color: #f6f6f9;
  background-color: transparent !important;
}

.floating-field input:-webkit-autofill+.floating-label {
  top: -0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.floating-field input:-webkit-autofill+.floating-label+.floating-highlight {
  width: 100%;
}

.floating-field input:-webkit-autofill+.floating-label,
.floating-field input:-webkit-autofill+.floating-label+.floating-highlight {
  transition-delay: 0s;
}

button {
  border: none;
  border-radius: 2px;
  background: linear-gradient(110deg, var(--accent), var(--accent-strong));
  color: #050505;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

button:hover {
  opacity: 0.92;
}

button.ghost {
  background: transparent;
  border: 1px solid rgba(246, 246, 249, 0.12);
  color: inherit;
}

button.small {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

button.ghost.tiny {
  padding: 0.28rem 0.5rem;
  font-size: 0.6rem;
}

button.ghost.tiny.danger {
  border-color: rgba(255, 138, 138, 0.5);
  color: var(--danger);
}

button.ghost.tiny.minimal-btn {
  padding: 0.2rem;
  font-size: 0.65rem;
  border-radius: 5px;
  border-color: rgba(255, 255, 255, 0.15);
  background: transparent;
  min-width: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.12s ease;
}

button.ghost.tiny.minimal-btn:hover,
button.ghost.tiny.minimal-btn:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

button.ghost.tiny.minimal-btn:active {
  transform: scale(0.93);
}

.icon-button svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  fill: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.share-link-control {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.share-link-prompt {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  min-height: 1em;
  margin-bottom: 0.15rem;
  text-align: center;
  position: absolute;
}

.share-link-control.is-prompt-visible .share-link-prompt {
  opacity: 1;
  transform: translateY(0);
}

.auth-button {
  margin: 1.25rem auto 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
}

.auth-button:focus-visible {
  outline: none;
}

.auth-button__pad {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4em;
  height: 4.4em;
  background-color: #494949;
  border-radius: 5px;
}

.auth-button__tile {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 4em;
  height: 4em;
  border-radius: 5px;
  border: none;
  outline: none;
  background-color: #545251;
  box-shadow: rgba(0, 0, 0, 0.377) 10px 10px 8px,
    #f8f2ec 1.5px 1.5px 1px 0px inset, #5a5a5a -3.2px -3.2px 8px 0px inset;
  cursor: pointer;
  transition: 0.1s ease-in-out;
}

.auth-button__tile--primary {
  background: #7c7b7b;
  box-shadow:
    rgba(0, 0, 0, 0.37) 10px 10px 8px,
    #bababa 2px 2px 10px inset,
    #444444 -4px -4px 1px inset;
}

.auth-button__tile--accent {
  background: #939393;
  box-shadow:
    rgba(0, 0, 0, 0.37) 10px 10px 8px,
    #bababa 2px 2px 10px inset,
    #444444 -4px -4px 1px inset;
}

.auth-button__tile--muted {
  background: #727373;
  box-shadow:
    rgba(0, 0, 0, 0.37) 10px 10px 8px,
    #bababa 2px 2px 10px inset,
    #444444 -4px -4px 1px inset;
}

.auth-button__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #f6f6f9;
  text-transform: uppercase;
  transition: transform 0.1s ease, color 0.2s ease;
}

.auth-button:active .auth-button__text {
  transform: translateY(0.5px);
}

.auth-button:active .auth-button__tile--primary,
.auth-button:active .auth-button__tile {
  box-shadow:
    rgba(0, 0, 0, 0.37) 0 0 0,
    inset 0.5px 0.5px 4px rgba(0, 0, 0, 0.8),
    #c7c3c0 -3.2px -3.2px 8px inset;
}

.auth-button:active .auth-button__tile--accent {
  box-shadow:
    rgba(0, 0, 0, 0.37) 0 0 0,
    inset 0.5px 0.5px 4px rgba(0, 0, 0, 0.8),
    #e4e4e4 -3.2px -3.2px 8px inset;
}

.auth-button:active .auth-button__tile--muted {
  box-shadow:
    rgba(0, 0, 0, 0.37) 0 0 0,
    inset 0.5px 0.5px 4px rgba(0, 0, 0, 0.8),
    #545251 -3.2px -3.2px 8px inset;
}

.hidden {
  display: none !important;
}

.radio-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0.5rem 0 1rem;
}

.radio-option {
  position: relative;
  display: inline-flex;
}

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

.radio-tile {
  min-width: 96px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 14px;
  border: 2px solid rgba(246, 246, 249, 0.18);
  background: rgba(246, 246, 249, 0.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.radio-tile::before {
  content: '';
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: 2px solid rgba(246, 246, 249, 0.35);
  background: transparent;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.radio-tile:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.radio-tile:hover::before {
  opacity: 1;
  transform: scale(1);
}

.radio-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.radio-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.radio-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 246, 249, 0.65);
}

.radio-input:checked+.radio-tile {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}

.radio-input:checked+.radio-tile::before {
  opacity: 1;
  transform: scale(1);
  background: var(--accent);
  border-color: var(--accent);
}

.radio-input:checked+.radio-tile .radio-label {
  color: var(--accent);
}

.radio-input:focus-visible+.radio-tile {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Auth */

.auth-screen {
  margin-top: 4rem;
}

.auth-mode-tabs {
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

.auth-card {
  background: var(--surface);
  border-radius: 32px;
  border: 1px solid var(--stroke);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.auth-copy h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.auth-forms {
  display: grid;
  gap: 1.5rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px dashed var(--stroke);
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
}

.status-pill[data-tone='error'],
.top-status[data-tone='error'] {
  border-color: rgba(255, 138, 138, 0.6);
  color: var(--danger);
}

.status-pill[data-tone='success'],
.top-status[data-tone='success'] {
  border-color: rgba(75, 217, 164, 0.5);
  color: var(--success);
}

/* Dashboard */

.dashboard {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  margin-top: 13px;
  margin-bottom: -5px;
  padding-left: 65px;
  position: relative;
}

#new-project-btn {
  border: none;
}

.quick-rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 64px;
  border-radius: 12px;
  border: 1px solid rgba(7, 17, 40, 0.65);
  background: linear-gradient(180deg, rgba(20, 20, 20, 100) 0%, rgba(16, 16, 16, 100) 90%, rgba(43, 43, 43, 100) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0.4rem;
  gap: 0.85rem;
  overflow: visible;
  z-index: 950;
}

.quick-rail__button {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  color: #f6f6f9;
  font-size: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-radius 0.2s ease;
  position: relative;
}

.quick-rail__button:hover {
  border-radius: 3px;
  transition: border-radius 0.2s ease;
}

.quick-rail__icon {
  line-height: 1;
  color: inherit;
}

.quick-rail__icon svg {
  width: 20px;
  height: 20px;
}

.quick-rail__button--alert .quick-rail__dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4d94;
  box-shadow: 0 0 10px rgba(255, 77, 148, 0.8);
}

.quick-rail__button--cta {
  margin-top: auto;
  background: linear-gradient(135deg, #f9f9fa, #e7e7e7);
  border: none;
  color: #050505;
  font-weight: 400;
  font-size: 0.80rem;
}

.quick-rail__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: none;
  color: inherit;
  font-weight: 700;
}

.quick-rail__menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  margin-top: auto;
  position: relative;
}

.quick-panel {
  position: fixed;
  top: 0;
  left: 64px;
  width: var(--rail-width);
  max-width: calc(100vw - 64px);
  height: 100vh;
  background: rgba(7, 8, 12, 0.98);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(calc(-100% - 64px));
  transition: transform 0.25s ease, opacity 0.25s ease;
  z-index: 901;
  opacity: 0;
  pointer-events: none;
}

.quick-panel.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  z-index: 901;
}

.quick-panel.hidden {
  display: none;
  z-index: 901;
}

.quick-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.quick-panel__body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-panel__view {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  min-height: 0;
}

.quick-panel__view.hidden {
  display: none;
}

.settings-group {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.setting-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.5rem 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.setting-toggle span {
  display: block;
  font-size: 0.9rem;
}

.setting-toggle small {
  display: block;
  color: var(--muted);
  font-size: 0.5rem;
}

.setting-toggle input {
  appearance: none;
  position: relative;
  width: 4em;
  height: 1.6em;
  border-radius: 0.2em;
  background: linear-gradient(to right, #1a1a1a, #2c2c2c);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), inset 0 0 0.1em rgba(0, 0, 0, 0.8);
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.setting-toggle input::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  transition: left 0.3s ease, transform 0.3s ease;
}

.setting-toggle input::after {
  content: '';
  position: absolute;
  left: 0.2em;
  top: 0.2em;
  width: 1.8em;
  height: 1.2em;
  border-radius: 0.1em;
  background: linear-gradient(to bottom, #ffffff, #d9d9d9);
  box-shadow: 0 0 0.2em rgba(255, 255, 255, 0.3);
  transition: left 0.3s ease;
}

.setting-toggle input:checked::before {
  left: 50%;
  transform: scaleX(1.1);
}

.setting-toggle input:checked::after {
  left: 2em;
}

.setting-toggle input:checked {
  background: #1a1a1a;
}

.top-menu--rail {
  position: absolute;
  bottom: 80px;
  left: 70px;
  width: min(240px, calc(100vw - 110px));
  background: rgba(9, 9, 12, 0.96);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  opacity: 1;
  pointer-events: auto;
  transform: none;
  z-index: 951;
}

.top-menu--rail.hidden {
  display: none;
}



.quick-rail {
  position: static;
  left: auto;
  top: auto;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 10, 0.9);
  padding: 0.5rem 0.35rem;
  flex-direction: row;
  justify-content: space-around;
  gap: 0.35rem;
  display: flex;
  margin: 0 auto;
}

.quick-rail__button {
  width: 42px;
  height: 42px;
}

.dashboard-grid {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.rail {
  display: none;
}

.detail-layout {
  grid-template-columns: 1fr;
  gap: 0;
}

.player-panel,
.comments-panel {
  width: 100%;
}

.comments-panel {
  border-radius: 0;
  border: none;
  padding: 0;
  background: transparent;
  min-height: 0;
}

.comments-panel__stream {
  padding-left: 0;
  padding-right: 0;
}

.comment-list {
  padding: 0 0.25rem;
  gap: 0.65rem;
}

.comments-panel__composer {
  position: sticky;
  bottom: 0;
  margin: 0;
  padding: 0.5rem 0;
}

.player-wrapper {
  min-height: 240px;
}

.custom-controls__bottom {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  flex-wrap: nowrap;
  padding-top: 12px;
  overflow-x: auto;
}

.custom-controls__bottom>div {
  width: auto;
  flex: 0 0 auto;
}

.custom-controls__bottom .controls-left,
.custom-controls__bottom .controls-center,
.custom-controls__bottom .controls-right {
  flex-wrap: nowrap;
}

.detail-view {
  margin: 0;
  padding: 0;
}

.workspace--full {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.workspace--full .workspace__header {
  padding: 0;
}

.player-panel {
  border-radius: 0;
}


.top-bar {
  position: relative;
  background: rgba(10, 10, 14, 0.85);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.5rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  backdrop-filter: blur(18px);
  min-height: var(--top-bar-height);
  z-index: 1000;
}

.top-bar--minimal {
  min-height: var(--top-bar-height);
}

.top-bar__controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand--compact span {
  font-size: 1rem;
}

.brand--compact small {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand__dot {
  width: 14px;
  height: 14px;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  border-radius: 50%;
}

.brand span {
  font-size: 1.15rem;
}

.top-status {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  border: 1px dashed var(--stroke);
  font-size: 0.7rem;
}


.top-bar__controls .top-status,
.media-board__status .top-status {
  padding: 0.25rem 0.85rem;
  font-size: 0.58rem;
}

.media-board__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-panel__user {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.quick-panel__user span {
  font-size: 0.95rem;
}

.quick-panel__user small {
  font-size: 0.65rem;
  color: var(--muted);
}

.quick-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  padding: 0.35rem;
  font-size: 1rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: var(--rail-width) minmax(0, 1fr);
  gap: .1rem;
  align-items: stretch;
  flex: 1;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.dashboard.detail-active .dashboard-grid {
  grid-template-columns: 1fr;
}

.dashboard.detail-active .rail {
  display: none;
}

.rail {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  min-height: 0;
  width: var(--rail-width);
  flex: 0 0 var(--rail-width);
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.project-nav-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rail__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project-search {
  border: none;
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  font-size: .8rem;
}

#project-search:focus {
  outline: none;
  border: 1px solid var(--accent);
}


.project-nav-item {
  border-radius: 12px;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 0.8rem;
}

.project-nav-item.active,
.project-nav-item:hover {
  background: rgba(79, 79, 79, 0.3);
}

.project-tree {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.tree-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.4rem;
  border-radius: 8px;
  margin-left: calc(var(--tree-depth, 0) * 14px);
  user-select: none;
  -webkit-user-drag: none;
}

.tree-row__toggle {
  width: 1.4rem;
  height: 1.4rem;
  border: none;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
}

.tree-row__label {
  text-align: left;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0.15rem 0.25rem;
  border-radius: 6px;
  font-size: 0.7rem;
  user-select: none;
  -webkit-user-drag: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.2;
}

.tree-row__label:hover,
.tree-row__toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

.tree-row__icon {
  display: inline-flex;
  width: 14px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.8;
}

.tree-row__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}


.tree-row__meta {
  font-size: 0.6rem;
  color: var(--muted);
}

.tree-row--folder.is-open .tree-row__toggle {
  font-weight: 600;
}

.tree-row--video {
  grid-template-columns: auto 1fr;
}

.tree-row__bullet {
  font-size: 0.55rem;
  opacity: 0.7;
  padding-left: 0.2rem;
}

.form-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.member-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 280px;
  overflow-y: auto;
}

.member-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.75rem;
}

.member-row__meta {
  display: flex;
  flex-direction: column;
}

.member-row__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.member-row__actions select {
  min-width: 120px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.media-view {
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
}

.asset-list {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  height: 100%;
}

.detail-view {
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.detail-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 460px;
  gap: 1.5rem;
  flex: 1;
  min-height: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.breadcrumb span {
  color: var(--muted);
}

.breadcrumb button {
  border: none;
  background: transparent;
  color: #f6f6f9;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.folder-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-gutter: stable both-edges;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.folder-list.folder-list--file-drop {
  border: 1px dashed var(--accent);
  background: rgba(242, 201, 143, 0.2);
}

.folder-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.4rem;
}

.folder-row__body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.folder-row__body:hover {
  background: rgba(242, 201, 143, 0.15);
  border-radius: 10px;
}

.folder-thumb {
  width: 64px;
  height: 48px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--stroke);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.folder-thumb--empty {
  background: rgba(242, 201, 143, 0.2);
}

.folder-row__actions {
  display: flex;
  gap: 0.35rem;
}

.folder-row--dropping {
  border-color: var(--accent);
  background: rgba(242, 201, 143, 0.2);
}

.video-list {
  border-radius: 12px;
  border: 1px solid var(--stroke);
  padding: 0.75rem 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  scrollbar-gutter: stable both-edges;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.video-list.video-list--file-drop {
  border-color: var(--accent);
  background: rgba(242, 201, 143, 0.2);
}

.media-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.media-group__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.25rem;
}

.media-group__title {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.media-group__count {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.media-group__meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.media-group__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.media-group__grid--assets .video-card,
.media-group__grid--assets .pending {
  flex: 0 0 var(--folder-card-width);
}

.media-group__grid--assets .video-card.folder-card {
  flex: 0 0 var(--folder-card-width);
}

.media-group__grid:empty::after {
  content: 'No items in this section yet.';
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.5rem;
}

.video-card {
  border-radius: 8px;
  padding: 0.25rem;
  background: var(--surface);
  border: 1px solid var(--stroke);
  cursor: pointer;
  transition: border 0.2s ease, background 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: var(--folder-card-width);
  height: var(--folder-card-height);
  flex: 0 0 var(--folder-card-width);
}

.video-card:hover {
  border-color: var(--accent);
}

.video-card.active {
  border-color: var(--accent);
  background: rgba(242, 201, 143, 0.25);
}

.video-card.dragging {
  opacity: 0.6;
  border-color: var(--accent);
}

.video-card--dropping {
  border-color: var(--accent);
  background: rgba(242, 201, 143, 0.18);
}

.video-card.folder-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  width: var(--folder-card-width);
  height: var(--folder-card-height);
  border: none;
  background: transparent;
}

.folder-card__tab {
  display: none;
}

.folder-card__body {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 1.35rem 1.05rem 1.05rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}



.folder-card__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.folder-card__svg-path {
  fill: rgba(66, 66, 66, 0.96);
  stroke: rgb(65, 65, 65);
  stroke-width: 1;
}

.folder-card__svg-mid {
  fill: var(--accent);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom center;
  filter: drop-shadow(0 -4px 6px rgba(0, 0, 0, 0.25)) drop-shadow(0 -1px 2px rgba(0, 0, 0, 0.15));
}

.folder-card:hover .folder-card__svg-mid {
  transform: translateY(-10px);
}

.folder-card__svg-plate {
  fill: rgb(42, 42, 42);
  stroke: rgb(65, 65, 65);
  stroke-width: 1;
}

.folder-card__svg--overlay {
  transform: none;
}

.folder-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: auto;
}

.video-card.folder-card.folder-card--up {
  border: 1px dashed var(--accent);
  background: rgba(242, 201, 143, 0.05);
  width: 78px;
  min-width: 78px;
  flex: 0 0 78px;
  transition: width 0.25s ease, min-width 0.25s ease, flex-basis 0.25s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: flex;
}

.video-card.folder-card.folder-card--up .folder-card__body {
  color: #f6f6f9;
  position: relative;
  padding: 0.8rem 0.6rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.video-card.folder-card.folder-card--up .folder-card__svg-path {
  fill: rgba(242, 201, 143, 0.08);
  stroke: var(--accent);
  stroke-dasharray: 8 4;
  stroke-width: 1.2;
}

.video-card.folder-card.folder-card--up .folder-card__svg-plate {
  fill: rgba(242, 201, 143, 0.05);
  stroke: rgba(242, 201, 143, 0.4);
  stroke-dasharray: 8 4;
}

.video-card.folder-card.folder-card--up .folder-card__body::before {
  content: '⇧';
  display: block;
  font-size: 1.6rem;
  color: #f6f6f9;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.video-card.folder-card.folder-card--up .folder-card__body span {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.video-card.folder-card.folder-card--up .folder-card__body h4,
.video-card.folder-card.folder-card--up .folder-card__body small {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.video-card.folder-card.folder-card--up .folder-card__tab {
  background: rgba(242, 201, 143, 0.35);
}

.video-card.folder-card.folder-card--up:hover,
.video-card.folder-card.folder-card--up.folder-card--dropping {
  width: var(--folder-card-size);
  min-width: var(--folder-card-size);
  flex: 0 0 var(--folder-card-size);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  background: rgba(242, 201, 143, 0.18);
}

.video-card.folder-card.folder-card--up:hover .folder-card__body::before,
.video-card.folder-card.folder-card--up.folder-card--dropping .folder-card__body::before {
  transform: translateY(-4px);
}

.video-card.folder-card.folder-card--up:hover .folder-card__body span,
.video-card.folder-card.folder-card--up.folder-card--dropping .folder-card__body span {
  opacity: 1;
  transform: translateX(0);
}

.video-card.folder-card.folder-card--up:hover .folder-card__body h4,
.video-card.folder-card.folder-card--up.folder-card--dropping .folder-card__body h4,
.video-card.folder-card.folder-card--up:hover .folder-card__body small,
.video-card.folder-card.folder-card--up.folder-card--dropping .folder-card__body small {
  opacity: 1;
  transform: translateX(0);
}

.folder-card--dropping .folder-card__body {
  border: none;
}

.folder-card--dropping .folder-card__svg-path {
  stroke: var(--accent);
  filter: drop-shadow(0 8px 22px rgba(242, 201, 143, 0.35));
}

.folder-card--dropping .folder-card__svg-plate {
  stroke: var(--accent);
  filter: drop-shadow(0 8px 22px rgba(242, 201, 143, 0.25));
}

.video-card.pending {
  opacity: 0.85;
  cursor: default;
}

.video-card--drag-preview {
  position: fixed;
  top: -9999px;
  left: -9999px;
  pointer-events: none;
  transform: scale(0.5);
  transform-origin: top left;
  opacity: 0.85;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--accent);
  border-radius: 12px;
  z-index: 9999;
}

.video-card.pending .video-card__thumb {
  background: rgba(242, 201, 143, 0.1);
  color: var(--muted);
}

.pending-progress {
  font-size: 0.45rem;
  font-weight: 600;
}

.context-menu {
  position: absolute;
  z-index: 9999;
  background: rgba(6, 7, 10, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 0.75rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
  display: block;
  min-width: 220px;
}

.context-menu__list,
.context-menu__sub {
  background: transparent;
}

.context-menu__list {
  min-width: 220px;
}

.context-menu__sub {
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.context-menu__sub::before {
  content: '';
  position: absolute;
  top: 10px;
  left: -8px;
  width: 1px;
  height: calc(100% - 20px);
  background: rgba(255, 255, 255, 0.08);
}

.context-menu.hidden {
  display: none;
}

.context-menu button,
.context-menu__sub-item {
  width: 100%;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.context-menu button:hover,
.context-menu__sub-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.context-menu button.danger {
  color: var(--danger);
}

.context-menu__arrow {
  opacity: 0.6;
}

.context-menu__sub-item {
  flex-direction: column;
  gap: 0.15rem;
}

.context-menu__meta {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.context-menu[data-submenu-open='true'] .context-menu__sub {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0);
}

.video-card__preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.55rem;
}

.video-card__preview::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.video-card__preview--image {
  background-color: black;
}

.video-card__preview--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0) 0%, rgba(16, 16, 16, 0.75) 100%);
}

.video-card__preview--empty {
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.425rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card__review {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  background: rgba(16, 16, 16, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
  font-size: 0.4rem;
  padding: 0.15rem 0.45rem;
  letter-spacing: 0.12em;
}

.video-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-left: 3px;
  margin-bottom: 3px;
}

.video-card h4,
.folder-card__body h4 {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
}

.review-pill {
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  font-size: 0.65rem;
  text-transform: capitalize;
}

.review-pill.approved {
  color: var(--success);
  border-color: rgba(75, 217, 164, 0.4);
}

.review-pill.needs_changes {
  color: var(--danger);
  border-color: rgba(255, 138, 138, 0.35);
}

.review-pill.in_review {
  color: #f6dba3;
}

.workspace {
  gap: 0.75rem;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--card);
  border-radius: 12px;
  padding: 1rem 1.25rem 1.25rem;
  box-sizing: border-box;
  overflow: hidden;
}

.workspace--full {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.workspace--full .workspace__header {
  padding: 0 1rem 1rem;
}

.player-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  min-height: 0;
  flex: 1;
}

.workspace__header {
  gap: .5rem;
}

.workspace__header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.workspace__title-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.workspace__version-inline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.workspace__version-inline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  position: relative;
}

.version-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
}

.version-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.workspace__header h2 {
  margin: 0;
  font-size: 1rem;
}

.workspace__header .hint {
  margin-top: 0.25rem;
}

.review-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.badge {
  border-radius: 999px;
  padding: 0.25rem 0.25rem;
  font-size: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: #101010;
}

.player-wrapper {
  border-radius: 0;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: black;
  overflow: hidden;
  position: relative;
  flex: 1;
}

.player-wrapper video {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  object-fit: contain;
  background: black;
}

.annotation-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.annotation-layer.hidden {
  display: none;
}

.annotation-layer--editing {
  pointer-events: auto;
  cursor: crosshair;
}

.comment-composer,
.share-comment-composer {
  position: relative;
}

.annotation-toolbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5rem;
  background: rgba(16, 16, 16, 0.95);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  transform-origin: bottom center;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.annotation-toolbar.hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.annotation-toolbar:not(.hidden) {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.annotation-toolbar__colors {
  display: flex;
  gap: 0.35rem;
}

.annotation-color {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: var(--annotation-color, var(--accent));
  cursor: pointer;
  padding: 0;
}

.annotation-color.is-active {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.annotation-toolbar__slider {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.annotation-toolbar__slider input {
  accent-color: var(--accent);
}

.annotation-toolbar__actions {
  display: flex;
  gap: 0.35rem;
}

.player-placeholder {
  color: var(--muted);
  padding: 2rem;
  text-align: center;
  z-index: 1;
}

.player-controls-bar {
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(5, 5, 7, 0.95);
  border-radius: 18px 18px 0 0;
  padding: 0.75rem 1rem 1rem;
  position: sticky;
  bottom: 0;
  z-index: 25;
}

.app-main--share .player-controls-bar {
  margin-top: 1rem;
}

.comment-timeline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.comment-timeline__marker {
  position: absolute;
  top: 100%;
  transform: translate(-50%, 0px);
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

.scrub-wrapper {
  position: relative;
  width: 100%;
}

.comment-timeline__markers {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.comment-timeline__avatar {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-size: 0.55rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 15, 18, 0.8);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

.comment-timeline__avatar--timeline {
  width: 16px;
  height: 16px;
  font-size: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(26, 29, 39, 0.4);
  color: #1a1d27;
}

.comment-timeline-tooltip {
  position: absolute;
  top: -3.2rem;
  left: 0;
  transform: translateX(-50%);
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  background: rgba(9, 11, 16, 0.95);
  color: #f6f6f9;
  font-size: 0.7rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  max-width: 220px;
  text-align: left;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 30;
}

.comment-timeline-tooltip::after {
  content: '';
  position: absolute;
  bottom: -0.4rem;
  left: 50%;
  transform: translateX(-50%);
  border: 0.35rem solid transparent;
  border-top-color: rgba(9, 11, 16, 0.95);
}

.comment-timeline-tooltip.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.comment-timeline__marker::after {
  display: none;
}

.custom-controls {
  padding: 0.1rem 0.7rem 0.1rem;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.custom-controls__top input[type='range'] {
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  background: transparent;
  height: 16px;
}

.custom-controls__top input[type='range']::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(to right,
      var(--accent) 0,
      var(--accent) var(--scrub-progress, 0%),
      rgba(255, 255, 255, 0.12) var(--scrub-progress, 0%),
      rgba(255, 255, 255, 0.12) 100%);
  border: none;
}

.custom-controls__top input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background: transparent;
  border: none;
  margin-top: 0;
}

.custom-controls__top input[type='range']::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.custom-controls__top input[type='range']::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.custom-controls__top input[type='range']::-moz-range-thumb {
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background: transparent;
  border: none;
}

.custom-controls__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 20px;
}

.controls-left,
.controls-center,
.controls-right {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.controls-center {
  flex: 1;
  justify-content: center;
}

.controls-right {
  justify-content: flex-end;
}

.controls-center .control-divider,
.controls-center #player-duration,
.controls-center #share-duration,
.controls-center #player-time-display {
  display: none;
}

.controls-center #share-time-display {
  display: inline-flex;
}

.control-icon {
  color: #dcddeb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem;
  border: none;
  background: transparent;
  opacity: 0.85;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.control-icon:hover {
  opacity: 1;
  color: #fff;
}

.control-icon.control-toggle[aria-pressed='true'],
.control-icon.is-active {
  color: var(--accent);
  opacity: 1;
}

.control-time {
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
  color: #f7f7ff;
  font-family: 'Akkurat';
  padding-top: 2px;
}

.control-divider {
  color: rgba(255, 255, 255, 0.45);
}

.control-volume {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding-right: 130px;
  margin-right: -110px;
  overflow: visible;
}

.control-volume input[type='range'] {
  width: 110px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.control-volume:hover input[type='range'],
.control-volume:focus-within input[type='range'] {
  opacity: 1;
  pointer-events: auto;
}

.control-select {
  background-color: transparent;
  border-radius: 999px;
  color: #f6f6f9;
  padding: 0.2rem 0.72rem;
  font-size: 0.8rem;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3l6 4 6-4' stroke='%23f5f6fb' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 12px;
  appearance: none;
}

.control-select--inline {
  background: transparent;
  border-radius: 999px;
  color: #d0d2e4;
  padding: 0.2rem 0.9rem;
  font-size: 0.75rem;
  appearance: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.control-select--inline option {
  color: #111;
}

#share-resolution {
  padding-left: 1.95rem;
  padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cg fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10' cy='10' r='3.2'/%3E%3Cpath d='M10 3.6v2.2M10 14.2v2.2M3.6 10h2.2M14.2 10h2.2M5.1 5.1l1.55 1.55M13.35 13.35l1.55 1.55M5.1 14.9l1.55-1.55M13.35 6.65l1.55-1.55'/%3E%3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3l6 4 6-4' stroke='%23f5f6fb' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: left 0.5rem center, right 0.65rem center;
  background-size: 16px, 9px 6px;
}

.control-icon--sound {
  border: none;
  background: transparent;
  pointer-events: auto;
}

.control-icon--sound svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.player-version-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: flex-end;
}

.version-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.version-stack__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.version-list.version-list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.version-list.version-list--inline .version-chip {
  border-radius: 6px;
  padding: 0.2rem 0.6rem;
}

.version-stack__actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.version-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.workspace__version-inline .version-list.version-list--dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 44px;
  flex-direction: column;
  max-height: 240px;
  overflow-y: auto;
  background: var(--card);
  border-radius: 8px;
  padding: 0.5rem;
  gap: 0.5rem;
  z-index: 10;
  min-width: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.workspace__version-inline .version-list.version-list--dropdown.is-open {
  display: flex;
}

.unstack-version-list {
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  gap: 0.75rem;
}

.unstack-version-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.unstack-version-option span {
  display: block;
}

.unstack-version-option small {
  color: var(--muted);
}

.unstack-version-option input[type='checkbox'] {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.unstack-version-option:hover {
  border-color: var(--accent);
  background: rgba(242, 201, 143, 0.1);
}

.unstack-version-option.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.unstack-version-option .badge {
  margin-left: auto;
}

.version-chip {
  border-radius: 5px;
  padding: 0.5rem 0.5rem;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.version-chip.active {
  border-color: var(--accent);
  background: rgba(242, 201, 143, 0.3);
}

.comments-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #303030;
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
}

.comments__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.2rem;
  padding: 0.1rem 0 0;
  font-size: 0.68rem;
}

.comments__header-actions {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.comments__header .eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  margin: 0;
}

.share-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--stroke);
  padding: 1rem;
}

.share-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.share-link {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.75rem;
}

.share-link span {
  display: block;
  font-size: 0.85rem;
  word-break: break-all;
}

.share-link__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.share-link__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
  align-items: center;
}

.share-link__security {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.share-link__security.is-protected {
  color: var(--accent);
}

.share-link-password-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.share-link-password-form.hidden {
  display: none;
}

.share-link-password-form input {
  flex: 1;
  min-width: 160px;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-x: hidden;
}

.comments-panel__stream {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.25rem;
  max-height: 100%;
}


.comments-panel__composer {
  margin-top: auto;
  position: sticky;
  bottom: 0;
  z-index: 5;
}

.comment {
  padding: 1rem 1.25rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(141, 141, 141, 0.04);
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.75rem;
  line-height: 1.4;
  position: relative;
  overflow: visible;
}

.comment+.comment {
  margin-top: 0.5rem;
}

.comment--active,
.comment.is-active {
  border-color: rgba(115, 102, 255, 0.9);
  box-shadow: 0 0 0 2px rgba(115, 102, 255, 0.35);
}

.comment--reply {
  margin-left: 0;
  margin-top: 0.35rem;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
  padding: 0;
}

.comment--reply .comment__header {
  padding-top: 0.3rem;
}

.comment--reply .comment__meta-info {
  gap: 0.4rem;
}

.comment--reply .comment__body,
.comment--reply .comment__footer {
  margin-left: calc(28px + 0.4rem);
}

.comment+.comment--reply {
  margin-top: 0.15rem;
}

.comment--reply+.comment--reply {
  margin-top: 0.3rem;
}

.comment--reply::before {
  content: '';
  position: absolute;
  left: 18px;
  top: var(--reply-connector-top, 0px);
  height: var(--reply-connector-height, 0px);
  width: 1px;
  background: rgb(255, 255, 255);
  z-index: -1;
}

.comment--reply .comment__status-dot {
  display: none;
}

.comment--read .comment__status-dot {
  display: none;
}

.comment--reply .comment__avatar {
  width: 36px;
  height: 36px;
  font-size: 0.65rem;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.18));
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.comment--reply .comment__footer-meta .comment-read {
  opacity: 0.6;
}

.comment-thread {
  margin-left: 0rem;
  padding-left: 0rem;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  margin-top: 0.75rem;
}

.comment-thread .comment {
  padding: 0;
  margin-left: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.comment-thread::before {
  content: none;
}

.comment-reply-form {
  margin-top: 0.4rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--accent-strong);
  border-radius: 12px;
  background: rgba(10, 10, 16, 0.95);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.comment-reply-form::before {
  content: none;
}

.comment-reply-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 0.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.2;
}

.comment-reply-input {
  width: 100%;
  padding-top: 2px;
  padding-bottom: 2px;
  line-height: 1.2;
  min-height: 20px;
  background: transparent;
  border: none;
  color: #fff;
  resize: none;
  font: inherit;
  line-height: 1.4;
  border-bottom-width: 0px;
  margin-bottom: 0;
}

.comment-reply-input:focus {
  outline: none;
}

.comment-reply-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0.2rem;
  flex-wrap: wrap;
}

.comment-reply-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comment-send--inline {
  min-height: auto;
  padding: 0.35rem 0.75rem;
}

.comment__header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}

.comment__meta-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.comment__header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.comment-filter {
  margin-left: 15.25rem;
  position: relative;
}

.comment-filter--dropdown {
  position: relative;
  display: inline-flex;
}

.comment-filter-trigger {
  align-items: center;
  gap: 0.25rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #f6f6f9;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 2rem;
  height: 2rem;
  min-width: 0;
  min-height: 0;
}

.comment-filter-trigger:hover,
.comment-filter-trigger:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.comment-filter-trigger__icon {
  display: inline-flex;
  width: 0.95rem;
  height: 0.95rem;
}

.comment-filter-trigger__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.comment-filter-trigger__label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.comment-filter-list {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.4rem 0.5rem;
  background: var(--card);
  border-radius: 8px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
  min-width: 140px;
  z-index: 20;
}

.comment-filter-list.is-open {
  display: flex;
}

.comment-filter-option {
  background: transparent;
  border: none;
  color: #f6f6f9;
  text-align: left;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comment-filter-option:hover,
.comment-filter-option:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.comment-filter-option.is-active {
  color: var(--accent);
}

.comment__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(242, 201, 143, 0.5);
  margin-right: 0.4rem;
}

.comment__avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.18));
  color: #f6f6f9;
  font-size: 0.65rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.comment__author span {
  text-transform: none;
}

.comment__author small {
  display: inline-flex;
  margin-left: 0.35rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.6rem;
}

.comment__author {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  line-height: 1.2;
}

.comment__header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.comment-time {
  border: none;
  border-radius: 2px;
  padding: 0.05rem 0.35rem;
  padding-top: .2rem;
  padding-left: .4rem;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 0.6rem;
  font-weight: 400;
  font-family: 'Akkurat';
}

.comment-time--inline {
  background: transparent;
  padding: 0;
  color: var(--accent);
}

.comment__body {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}

.comment__body,
.comment__footer {
  margin-left: calc(36px + 0.5rem);
}

.comment__body p {
  margin: 0;
  flex: 1 1 auto;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.comment__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.35rem;
  font-size: 0.65rem;
  color: var(--muted);
}

.comment__footer-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.comment__footer-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.comment.is-hovered .comment__footer-meta {
  opacity: 1;
  transform: translateY(0);
}

.comment-read {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comment-action {
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  cursor: pointer;
}

.comment-action[disabled],
.comment-action[aria-disabled='true'] {
  opacity: 0.6;
  cursor: not-allowed;
}

.comment-action--edit {
  color: var(--accent);
}

.comment__meta-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.comment-edit-form {
  width: 100%;
  margin-top: 0.25rem;
}

.comment-edit-input {
  min-height: 3.5rem;
}

.comment-edit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.comment-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0.5rem 0;
  gap: 0.5rem;
}

.comment-timestamp {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  color: var(--muted);
  font-family: 'Akkurat';
  padding-top: 1px;
}

.comment-tools input[type='checkbox'] {
  margin-right: 0.35rem;
  pointer-events: none;
}

.annotation-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.annotation-actions .hint {
  font-size: 0.6rem;
}

.toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15em;
  border-radius: 0.2em;
  background: linear-gradient(to right, #1a1a1a, #2c2c2c);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  font-size: .7rem;
  margin-left: 12px;
  margin-right: 12px;
}

.toggle-switch input {
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.toggle-switch__slider {
  position: relative;
  display: flex;
  align-items: center;
  width: 4em;
  height: 1.6em;
  border-radius: 0.1em;
  background-color: #222222;
  box-shadow: inset 0 0 0.1em rgba(0, 0, 0, 0.8);
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.toggle-switch__slider::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  transition: left 0.3s ease, transform 0.3s ease;
}

.toggle-switch__slider::after {
  content: '';
  position: absolute;
  left: 0.2em;
  width: 1.8em;
  height: 1.2em;
  border-radius: 0.1em;
  background: linear-gradient(to bottom, #ffffff, #d9d9d9);
  box-shadow: 0 0 0.2em rgba(255, 255, 255, 0.3);
  transition: left 0.3s ease;
}

.toggle-switch input:checked+.toggle-switch__slider::before {
  left: 50%;
  transform: scaleX(1.1);
}

.toggle-switch input:checked+.toggle-switch__slider::after {
  left: 2em;
}

.toggle-switch input:checked+.toggle-switch__slider {
  background-color: #1a1a1a;
}

.comment-timestamp-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-width: 0;
}

.comment-timestamp-indicator span {
  font-size: 0.65rem;
  white-space: nowrap;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Akkurat';
  padding-top: 1px;
}

.comment-form--disabled textarea,
.comment-form--disabled button,
.comment-form--disabled input,
.comment-form--disabled .toggle-switch {
  pointer-events: none;
}

.comment-form--disabled .share-user-menu,
.comment-form--disabled .share-user-trigger,
.comment-form--disabled .share-user-popover,
.comment-form--disabled .share-user-action {
  pointer-events: auto;
}

.comments-panel__composer {
  position: sticky;
  z-index: 5;
  margin-top: auto;
}

.comment-composer {
  position: relative;
}

.comment-composer__inner {
  background: #080808;
  border-radius: 12px;
  padding: .5rem .5rem .5rem;
  border: 1px solid #1c1c1c;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.65);
}

.comment-composer__body {
  position: relative;
  flex: 1;
  min-height: 28px;
  color: #f5f5f5;
}

.comment-input {
  width: 100%;
  min-height: 28px;
  line-height: 1.4;
  max-height: 220px;
  background: transparent;
  border: none;
  color: #f5f5f5;
  font: inherit;
  font-size: .9rem;
  resize: none;
  outline: none;
  overflow-y: auto;
  padding: 0rem .4rem;
  box-sizing: border-box;
}

.comment-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.comment-composer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 7px;
}

.comment-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
}

.comment-controls--right {
  margin-left: auto;
}

#annotation-toggle svg {
  width: 10px;
  height: 10px;
  display: block;
}

#share-annotation-toggle svg {
  width: 10px;
  height: 10px;
  display: block;
}

#attachment-toggle svg {
  width: 10px;
  height: 10px;
  display: block;
}

.attachment-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.4rem;
  margin-top: 0.4rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.attachment-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: rgba(249, 249, 246, 0.9);
}

.attachment-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attachment-remove {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-size: 0.85rem;
}

.attachment-remove:hover,
.attachment-remove:focus {
  background: rgba(255, 255, 255, 0.12);
}

.comment-attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.comment-attachment {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.comment-attachment:hover,
.comment-attachment:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.comment-send {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: none;
  background: #f9f9f6;
  color: #101010;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.45);
  transition: transform 0.1s ease, box-shadow 0.12s ease;
}

.comment-send svg {
  width: 18px;
  height: 18px;
}

.comment-send:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.55);
}

.comment-send:active:not(:disabled) {
  transform: translateY(0.5px) scale(0.98);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.comment-send:disabled {
  opacity: 0.4;
  cursor: default;
  box-shadow: none;
}

.comment-footer__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.comment-form--threaded {
  margin-left: 3rem;
  margin-top: 0.75rem;
}

.comment-form--threaded .comment-composer__inner {
  border-color: rgba(115, 102, 255, 0.75);
  background: rgba(15, 15, 23, 0.95);
}

.comment-reply-indicator {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(242, 201, 143, 0.15);
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comment-reply-cancel {
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.7rem;
  line-height: 1;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.comment-annotation {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.15rem 0.75rem;
  background: transparent;
  color: inherit;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.comment-annotation.active {
  border-color: var(--accent);
  color: var(--accent);
}

.comment-annotation-preview {
  margin-top: 0.5rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  border: 1px dashed rgba(242, 201, 143, 0.35);
  background: rgba(242, 201, 143, 0.12);
  font-size: 0.7rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.comment-annotation-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.6rem;
}

.comment-annotation-status {
  font-size: 0.65rem;
  color: var(--muted);
}

.comment--active {
  border-color: var(--accent);
}

.comment-delete {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.2rem;
  line-height: 1;
}

.comment-delete:hover {
  color: var(--danger);
}

.comment-icon-button {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.comment-icon-button:hover {
  color: var(--accent);
}

.comment-complete-container {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  transition: transform 0.2s ease;
}

.comment-complete-container:hover {
  transform: scale(1.05);
}

.comment-complete-container.is-complete {
  transform: scale(1.05);
}

.comment-complete-container svg {
  overflow: visible;
  width: 16px;
  height: 16px;
}

.comment-complete-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease, stroke 0.2s ease;
  stroke-dasharray: 241 9999999;
  stroke-dashoffset: 0;
}

.comment-complete-container.is-complete .comment-complete-path {
  stroke: #1f7d4c;
  stroke-dasharray: 70.5096664428711 9999999;
  stroke-dashoffset: -262.2723388671875;
}

.comment-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.comment-icon--trash::before,
.comment-icon--trash::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: currentColor;
  border-radius: 2px;
}

.comment-icon--trash::before {
  top: 1px;
  width: 12px;
  height: 3px;
  border-radius: 2px;
}

.comment-icon--trash::after {
  bottom: 1px;
  width: 10px;
  height: 9px;
  border-radius: 1px 1px 3px 3px;
}

/* Share view */

.app-main--share {
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  min-height: 0;
  padding: 0rem 0;
}

.share-detail-view {
  flex: 1;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.share-detail-layout {
  grid-template-columns: minmax(0, 2fr) 460px;
  align-items: stretch;
  flex: 1;
  min-height: 0;
  height: 100%;
}

.share-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.share-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 3%;
  margin-top: 2%;
}

.share-password-gate {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 200;
}

.share-password-card {
  width: min(420px, 100%);
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
}

.share-password-card h2 {
  margin: 0.25rem 0 0.5rem;
}

.share-password-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.share-password-form input {
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
}

.share-password-form button {
  width: 100%;
}

.share-brand__logo {
  width: 23px;
  height: 23px;
  display: block;
  object-fit: contain;
}

.share-detail-meta {

  margin-right: 3%;
  margin-top: 1.5%;
}

.share-detail-meta h1 {
  margin: 0;
  font-size: 15px;
}

.share-user-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.share-user-trigger {
  width: 28px;
  height: 20.96px;
  border-radius: 2px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease;
  padding: 0;
  color: #101010;
}

.share-user-trigger:hover,
.share-user-trigger:focus-visible,
.share-user-trigger.is-active {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.share-user-avatar {
  width: 28px;
  height: 20.96px;
  border-radius: 2px;
  background: #f9f9f6;
  border: 1px solid rgba(246, 246, 249, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .65rem;
  text-transform: uppercase;
}

.share-user-popover {
  position: absolute;
  top: calc(100% + -10.35rem);
  left: 0;
  width: 220px;
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--stroke);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 40;
}

.share-user-popover__header span {
  font-size: 0.95rem;
}

.share-user-popover__eyebrow {
  margin-bottom: 0.35rem;
}

.share-user-actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.share-user-menu {
  position: relative;
}

.share-user-prompt {
  position: absolute;
  left: 8px;
  top: 19px;
  background: #505050;
  color: #f6f6f9;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.share-user-prompt::after {
  content: '';
  position: absolute;
  left: 16px;
  bottom: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #505050;
}

.share-user-prompt.is-visible {
  display: flex;
  justify-content: center;
}

.share-user-action {
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  cursor: pointer;
  padding: 0.55rem 0.75rem;
  text-align: left;
  transition: background 150ms ease, border-color 150ms ease;
}

.share-user-action:hover,
.share-user-action:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  outline: none;
}

.share-user-action--logout {
  color: var(--danger);
  border-color: rgba(255, 138, 138, 0.35);
  background: rgba(255, 138, 138, 0.08);
}

.share-user-action--logout:hover,
.share-user-action--logout:focus-visible {
  background: rgba(255, 138, 138, 0.2);
  border-color: var(--danger);
}

.share-comment-composer .comment-input {
  padding-right: 0;
}

.share-description-inline {
  color: var(--muted);
  margin: 0;
}

.share-description,
.share-description-inline {
  color: var(--muted);
  line-height: 1.5;
}

.share-description {
  max-width: 720px;
}

/* Hide video descriptions across main and share views */
#active-description,
.share-info__description,
.share-description,
.share-description-inline {
  display: none !important;
}

.share-workspace .workspace__header {
  margin-bottom: 0.5rem;
}

.share-comments-panel {
  height: 100%;
  max-height: 100%;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 1rem;
}

.badge--ghost {
  background: transparent;
  color: inherit;
  border-color: rgba(255, 255, 255, 0.2);
}

.share-panel-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  background: rgba(246, 246, 249, 0.06);
  border-radius: 999px;
  padding: 0.12rem;
}

.share-panel-toggle__btn {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.55rem;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.share-panel-toggle__btn.is-active {
  background: rgba(8, 8, 10, 0.9);
  color: #f6f6f9;
}

.share-panel-view {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.share-panel-view[data-share-panel='comments'] {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.share-panel-view[data-share-panel='comments'] .comments-panel__stream {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}

.share-panel-view[data-share-panel='comments'] .comments-panel__composer {
  padding-top: 1rem;
  margin-top: 1rem;
  position: sticky;
  bottom: 0;
  margin-top: auto;
}

.share-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  background: rgba(18, 18, 22, 0.8);
}

.share-info__item>p {
  margin: 0 0 0.35rem;
}

.share-info__item span {
  font-size: 0.95rem;
}

.share-info__description {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.share-info__description .share-description {
  margin: 0;
}

.share-info__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.share-info__links .share-links {
  width: 100%;
}



.invite-links,
.modal-invite-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.invite-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.invite-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px dashed var(--stroke);
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  gap: 0.75rem;
}

.invite-row__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.invite-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.invite-form.disabled {
  opacity: 0.5;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 900;
}

.modal-backdrop.hidden {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6vh;
  z-index: 901;
}

.modal.hidden {
  display: none;
}

.modal__content {
  width: min(480px, 90vw);
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--stroke);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.modal__invite .input-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.modal__invite input,
.modal__invite select {
  flex: 1;
}

.modal__invite button {
  align-self: flex-start;
}

.modal__members {
  max-height: 320px;
  overflow-y: auto;
}

.modal-open {
  overflow: hidden;
}

.modal__content--wide {
  width: min(720px, 95vw);
}

.search-modal__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  min-height: 0;
}

.search-modal__input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(12, 12, 18, 0.85);
  color: inherit;
  font: inherit;
}

.search-results {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.search-result {
  border: none;
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  border-radius: 12px;
  padding: 0.6rem 0.85rem;
  text-align: left;
  cursor: pointer;
}

.search-result span {
  display: block;
  font-size: 0.95rem;
}

.search-result small {
  color: var(--muted);
}

.notification-list,
.upload-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.notification-item,
.upload-item {
  border-radius: 12px;
  border: 1px solid var(--stroke);
  padding: 0.75rem 1rem;
  background: rgba(10, 10, 14, 0.85);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.notification-item span,
.upload-item span {
  font-size: 0.9rem;
}

.notification-item small,
.upload-item small {
  color: var(--muted);
}

.video-list.video-list--compact .media-group__grid--assets .video-card,
.video-list.video-list--compact .media-group__grid--assets .pending {
  flex: 0 0 180px;
  width: 180px;
  height: 160px;
}

.video-list.video-list--compact .media-group__grid {
  gap: 0.5rem;
}

.share-auth-modal {
  align-items: center;
  padding-top: 0;
}

.share-auth-card {
  width: min(420px, 90vw);
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--stroke);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.share-auth-card__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.share-auth-tabs {
  justify-content: center;
  margin-bottom: 1.25rem;
}

.share-auth-tab {
  min-width: 110px;
}

.share-auth-tab.is-active .radio-label {
  color: var(--accent);
}

.share-auth-pane.hidden {
  display: none;
}

.share-auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.share-auth-form label {
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.share-auth-form input {
  color: inherit;
  font: inherit;
}

.share-auth-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.share-auth-submit {
  margin-top: 0.35rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #1c1406;
  font-weight: 600;
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: background 120ms ease;
}

.share-auth-submit:hover {
  background: var(--accent-strong);
}

.share-auth-submit.auth-button {
  background: transparent;
  border-radius: 0;
  padding: 0;
  color: inherit;
}

.form-error {
  color: var(--danger);
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
}

.form-error.hidden {
  display: none;
}

.hint.inline {
  display: inline;
  font-size: 0.75rem;
  color: var(--muted);
}

.invite-links__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* before Responsive */




/* Responsive */
@media (max-width: 600px) {
  .status-pill {
    width: 100%;
    justify-content: center;
  }
}


@media (max-width: 900px) {
  .dashboard {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    gap: 0.75rem;
  }

  .comment-filter {
    margin-left: 10.5rem;
  }

  .app-main--share .player-controls-bar {
    margin-top: 0rem;
  }

  .player-controls-bar {
    margin-top: 0rem;
    border-top: 0px;
    border-radius: 18px 18px 0 0;
    padding: 0rem 0rem 0rem;
    position: sticky;
    bottom: 0;
    z-index: 25;
  }

  .custom-controls__bottom {
    gap: 0.35rem;
    padding-top: 12px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .top-bar__controls {
    width: 100%;
    justify-content: space-between;
  }

  .top-menu {
    right: 0.5rem;
    width: calc(100% - 1rem);
  }

  .card,
  .auth-card {
    padding: .25rem;
  }

  .comments__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    
  }

  .share-shell {
    width: calc(100% - 1.5rem);
    padding: 1.5rem 0 2rem;
  }

  .share-layout {
    grid-template-columns: 1fr;
    gap: 0rem;
  }

  .share-topbar {
    flex-direction: column;
  }

  .share-detail-layout {
    grid-template-columns: 1fr;
    gap: 0rem;
  }

  .share-detail-view {
    padding: 0 0rem 0rem;
  }

  .share-detail-header {
    margin-bottom: 0rem;
    gap: 0rem;
    flex-wrap: nowrap;
  }

  .share-detail-meta h1 {
    font-size: 10px;
  }

  .share-workspace,
  .share-comments-panel {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .share-panel-view[data-share-panel='comments'] {
    gap: 1rem;
  }

  .share-panel-view[data-share-panel='comments'] .comments-panel__composer {
    position: sticky;
    bottom: 0;
    padding: 0.5rem 0;
    margin: 0;
  }
  #share-version-toggle-btn, #share-download-btn,
  button[data-download-option] {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    min-width: 0;
  }
}
