.studio-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #05070b;
  color: var(--text);
}
.studio-bar {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 22px;
  border-bottom: 1px solid var(--line);
  flex: none;
}
.studio-bar-search {
  width: min(560px, 100%);
  justify-self: center;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 24px;
  padding: 10px 16px;
  font: inherit;
}
.studio-bar-search::placeholder { color: var(--muted); }
.studio-bar-search:disabled { opacity: .45; cursor: default; }
.studio-bar-tools { display: flex; align-items: center; gap: 14px; }
.studio-bar .nav-plain {
  background: none;
  border: 0;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  padding: 0;
}
.studio-bar .nav-plain:hover { color: #fff; }
.studio-main { flex: 1; min-height: 0; display: flex; flex-direction: column; }
.studio-gate {
  width: min(520px, calc(100% - 48px));
  margin: 48px auto;
}
.studio-help { margin-top: 22px; color: var(--muted); }
.studio-help summary { cursor: pointer; color: var(--text); }
.studio-help ol { padding-left: 18px; line-height: 1.7; }
.studio-help code { color: #9fd2ea; }

#studio-app:not([hidden]) {
  display: grid;
  grid-template-columns: 220px 1fr;
  flex: 1;
  min-height: 0;
}
.studio-nav {
  border-right: 1px solid var(--line);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.studio-nav button {
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--muted);
  font: inherit;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
}
.studio-nav button:hover { color: #fff; background: rgba(255,255,255,.04); }
.studio-nav button.on { color: #fff; background: rgba(39,121,167,.18); }
.studio-nav .studio-nav-back {
  margin-bottom: 10px;
  color: var(--text);
}
.studio-nav-video {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 10px 16px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.studio-nav-video img,
.studio-nav-video .studio-cover-ph {
  width: 72px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  background: #000;
  border-radius: 4px;
  flex: none;
}
.studio-nav-video .studio-cover-ph { height: 40px; }
.studio-nav-video strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}
.studio-nav-video .meta { font-size: 12px; }
.studio-panel[hidden] { display: none !important; }
.studio-body {
  overflow: auto;
  padding: 28px 32px 80px;
}
.studio-page-title { margin: 0 0 18px; font-size: 28px; font-weight: 400; }

.studio-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  align-items: center;
  justify-content: space-between;
}
.studio-subtabs { display: flex; gap: 18px; }
.studio-subtabs button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 2px 10px;
  border-bottom: 2px solid transparent;
  font: inherit;
  cursor: pointer;
}
.studio-subtabs button.on { color: #fff; border-bottom-color: #fff; }
.studio-filter {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 14px 0 8px;
}
.studio-filter input {
  flex: 1;
  max-width: 360px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
}

.studio-table-wrap { overflow: auto; }
.studio-table { width: 100%; border-collapse: collapse; }
.studio-table th {
  text-align: left;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}
.studio-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  font-size: 14px;
}
.studio-table tbody tr { cursor: pointer; }
.studio-table tbody tr:hover { background: rgba(255,255,255,.04); }
.stats-pills { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0 16px; }
.stats-toolbar {
  position: sticky;
  top: -8px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 12px;
  margin: 0 0 8px;
  background: #05070b;
}
.stats-toolbar .stats-pills { margin: 0; }
.stats-pill {
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 4px 12px;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}
.stats-pill:hover, .stats-pill.on { color: #fff; border-color: rgba(159, 210, 234, .45); }
.stats-kpis { margin: 0 0 4px; }
.stats-mix-wrap { margin: 0 0 12px; }
.stats-mix {
  display: flex;
  height: 10px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  margin: 8px 0 6px;
}
.stats-mix i { height: 100%; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}
.stats-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px 14px;
}
.stats-panel > .meta { margin: 0 0 8px; }
.stats-funnel-row,
.stats-hbar {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(72px, auto);
  gap: 8px;
  align-items: center;
  margin: 7px 0;
  font-size: 12px;
  color: var(--muted);
}
.stats-hbar .k,
.stats-funnel-row .k {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.stats-funnel-row .bar,
.stats-hbar .bar {
  height: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 99px;
  overflow: hidden;
}
.stats-funnel-row .bar i,
.stats-hbar .bar i {
  display: block;
  height: 100%;
  background: rgba(159, 210, 234, .75);
}
.stats-funnel-row .n,
.stats-hbar .n { text-align: right; color: var(--text); }
.stats-funnel-row em,
.stats-hbar em {
  font-style: normal;
  color: var(--muted);
  font-weight: 400;
}
.stats-meter {
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  margin-top: 8px;
  overflow: hidden;
}
.stats-meter i {
  display: block;
  height: 100%;
  background: rgba(159, 210, 234, .7);
}
.stats-mini {
  width: 56px;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}
.stats-mini i {
  display: block;
  height: 100%;
  background: rgba(159, 210, 234, .85);
}
.stats-cell-metric {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.stats-chart-wrap { margin: 4px 0 18px; color: var(--muted); position: relative; }
.stats-grid .stats-chart-wrap { margin: 0; }
.stats-chart { width: 100%; height: 200px; display: block; }
.stats-chart-tip {
  position: absolute;
  z-index: 4;
  min-width: 132px;
  pointer-events: none;
  background: rgba(5, 7, 11, .94);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--text);
}
.stats-chart-tip strong { display: block; margin-bottom: 6px; }
.stats-chart-tip .row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin: 3px 0;
}
.stats-chart-tip i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  margin-right: 6px;
  vertical-align: 0;
}
.stats-spark {
  width: 96px;
  height: 28px;
  display: block;
  margin-top: 8px;
}
.studio-table thead th[data-stats-sort] {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.studio-table thead th[data-stats-sort]:hover,
.studio-table thead th.sort-on { color: var(--text); }
.stats-legend { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--muted); margin-top: 8px; }
.stats-legend i { display: inline-block; width: 10px; height: 10px; margin-right: 6px; vertical-align: -1px; }
.retain-svg { width: 100%; height: 220px; display: block; }
.watch-prog {
  width: 88px;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
}
.watch-prog i {
  display: block;
  height: 100%;
  background: rgba(159, 210, 234, .85);
}
.watch-prog.done i { background: #2ba640; }
.stats-table tbody tr.on { background: rgba(39,121,167,.12); }
.stats-detail-row td { padding: 8px 12px 18px; cursor: default; }
.stats-detail-row:hover { background: transparent; }
.retain-block { margin: 8px 0 14px; }
.retain-head { display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap; margin-bottom: 6px; }
.retain-bars {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  height: 40px;
  width: 100%;
  max-width: 720px;
}
.retain-bars i {
  flex: 1;
  min-width: 1px;
  background: rgba(159, 210, 234, .7);
  display: block;
}
.studio-video-cell { display: flex; gap: 14px; align-items: center; }
.studio-thumb {
  position: relative;
  width: 128px;
  flex: none;
}
.studio-thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #000;
  display: block;
  border-radius: 4px;
}
.studio-thumb .studio-cover-ph {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border-radius: 4px;
  background: #111;
}
.studio-thumb .studio-dur {
  position: absolute;
  right: 6px;
  bottom: 6px;
  background: rgba(0,0,0,.78);
  color: #fff;
  font-size: 11px;
  padding: 1px 5px;
  border-radius: 3px;
}
.studio-video-cell strong { display: block; font-weight: 500; margin-bottom: 4px; }
.studio-video-text { min-width: 0; min-height: 52px; }
.studio-vis {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.studio-vis-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  flex: none;
}
.studio-vis-public .studio-vis-dot { background: #2ba640; }
.studio-vis-unlisted .studio-vis-dot { background: #8a8a8a; }
.studio-vis-hidden .studio-vis-dot { background: #c5221f; }
.studio-row-actions {
  display: none;
  gap: 4px;
  margin-top: 6px;
}
.studio-table tbody tr:hover .studio-row-actions { display: flex; }
.studio-table tbody tr:hover .studio-video-text > .meta { display: none; }
.studio-icon-btn {
  background: transparent;
  border: 0;
  color: var(--muted);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.studio-icon-btn:hover { background: rgba(255,255,255,.1); color: #fff; }

.studio-detail-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
  position: sticky;
  top: -28px;
  background: #05070b;
  padding: 12px 0;
  z-index: 2;
}
.studio-detail-bar .studio-page-title {
  margin: 0;
  font-size: 22px;
  flex: 1;
}
.studio-detail-bar .studio-msg { min-height: 1.2em; }
.studio-count {
  align-self: flex-end;
  font-size: 12px;
  color: var(--muted);
}
.studio-block {
  margin: 28px 0 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.studio-block h2 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 500;
}
.studio-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 14px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}
.studio-filter-chip button {
  background: none;
  border: 0;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  padding: 0 2px;
}
.studio-playlist-new {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin: 8px 0 12px;
}
.studio-playlist-new input {
  flex: 1;
  min-width: 240px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}
.studio-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .7fr);
  gap: 28px;
  align-items: start;
}
.studio-detail label, .studio-side label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}
.studio-detail input, .studio-detail textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}
.studio-detail textarea { min-height: 160px; resize: vertical; }
.studio-check {
  flex-direction: row !important;
  align-items: center;
  gap: 8px !important;
  color: var(--text) !important;
  font-size: 14px !important;
}
.studio-check input { width: auto; }
.studio-side {
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
}
.studio-preview {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #000;
}
.studio-preview img[hidden],
.studio-cover-pick img[hidden] { display: none !important; }
.studio-cover-ph {
  display: block;
  background: #111;
}
.studio-preview img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(42vh, 360px);
  object-fit: contain;
  background: #000;
  display: block;
  margin: 0 auto;
}
.studio-preview-body { padding: 12px 14px 14px; }
.studio-preview-body strong { display: block; margin-bottom: 6px; font-weight: 400; }
.studio-link {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  word-break: break-all;
}
.studio-link button {
  flex: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 4px 8px;
  cursor: pointer;
}
.studio-cover-pick {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
}
.studio-cover-pick img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(52vh, 520px);
  object-fit: contain;
  background: #000;
  display: block;
  margin: 0 auto 10px;
  border-radius: 8px;
}
.studio-cover-pick span { color: var(--muted); font-size: 13px; }

.studio-list { display: grid; gap: 10px; }
.studio-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.studio-row img { width: 92px; height: auto; object-fit: contain; background: #000; }
.studio-row h3 { margin: 0 0 4px; font-size: 16px; font-weight: 400; }
.studio-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0 28px;
  padding: 18px;
  border: 1px solid var(--line);
}
.studio-form label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: var(--muted); }
.studio-form .span-2 { grid-column: 1 / -1; }
.studio-form input, .studio-form textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}
.studio-page select,
.studio-page .studio-form select,
.studio-page .studio-detail select,
.studio-page select.search {
  color-scheme: light;
  background: #f3f5f7;
  color: #111;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}
.studio-page select option {
  background-color: #fff;
  color: #111;
}
.studio-form textarea { min-height: 110px; resize: vertical; }
.studio-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.studio-msg { color: #9fd2ea; }
.profile-row { grid-template-columns: 1fr auto; cursor: pointer; }
.profile-row:hover { background: rgba(255,255,255,.03); }
.seg-pill {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  vertical-align: 1px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  color: var(--muted);
  font-weight: 400;
}
.seg-pill.seg-guest { border-color: rgba(180, 196, 210, .4); color: #c5d0da; }
.seg-pill.seg-free { border-color: rgba(159, 210, 234, .45); color: #9fd2ea; }
.seg-pill.seg-paid { border-color: rgba(232, 196, 120, .55); color: #e8c478; }
.profile-id {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 8px 0 18px;
}
.profile-id img, .profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
  flex: none;
}
.profile-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin: 8px 0 18px;
}
.profile-stat {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
.profile-stat .k { font-size: 12px; color: var(--muted); }
.profile-stat .v { font-size: 16px; margin-top: 6px; word-break: break-word; }
.profile-hours, .profile-week {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 72px;
  margin: 8px 0 16px;
}
.profile-hours i, .profile-week i {
  flex: 1;
  background: rgba(39, 121, 167, .55);
  min-height: 2px;
  border-radius: 2px 2px 0 0;
}
.profile-week i { background: rgba(167, 121, 39, .55); }
.studio-table-wrap { overflow-x: auto; margin: 8px 0 18px; }
.profile-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.profile-table th, .profile-table td {
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.profile-table th { color: var(--muted); font-weight: 400; white-space: nowrap; }
.profile-extras { display: grid; gap: 8px; margin-bottom: 12px; }
.profile-extra {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.profile-extra span { color: var(--muted); text-align: right; word-break: break-word; }
.studio-cmd {
  margin: 10px 0 8px;
  padding: 12px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-all;
  font: 12px/1.45 ui-monospace, Consolas, monospace;
  color: #d7e8f0;
  background: rgba(0, 0, 0, .28);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.studio-create-wrap { position: relative; }
.studio-create-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 140px;
  background: #111820;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  z-index: 20;
  display: grid;
}
.studio-create-menu[hidden] { display: none; }
.studio-create-menu button {
  background: none;
  border: 0;
  color: var(--text);
  text-align: left;
  padding: 8px 10px;
  border-radius: 8px;
  font: inherit;
  cursor: pointer;
}
.studio-create-menu button:hover { background: rgba(255,255,255,.08); }

.studio-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin: 6px 0 14px; }
.studio-chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.studio-chip.on, .studio-chip:hover { color: #fff; border-color: rgba(255,255,255,.35); }
.studio-sort {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}
.studio-vis-btn {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
}
.studio-vis-pop {
  position: fixed;
  z-index: 40;
  min-width: 140px;
  background: #111820;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  display: grid;
}
.studio-vis-pop button {
  background: none;
  border: 0;
  color: var(--text);
  text-align: left;
  padding: 8px 10px;
  border-radius: 8px;
  font: inherit;
  cursor: pointer;
}
.studio-vis-pop button:hover, .studio-vis-pop button.on { background: rgba(255,255,255,.08); }

.studio-field {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px 10px;
}
.studio-field input, .studio-field textarea {
  background: transparent;
  border: 0;
  padding: 6px 0 0;
  border-radius: 0;
}
.studio-block select, #franchise-new {
  width: 100%;
  margin-top: 8px;
}
#franchise-new { margin-top: 10px; }

.studio-vis-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 16px;
}
.studio-vis-card h2 { margin: 0 0 10px; font-size: 14px; font-weight: 500; }
.studio-vis-option {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
  margin-bottom: 10px !important;
  color: var(--text) !important;
  font-size: 14px !important;
}
.studio-vis-option input { grid-row: 1 / span 2; width: auto; }
.studio-vis-option small { grid-column: 2; color: var(--muted); font-size: 12px; }
.studio-advanced {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.studio-advanced summary { cursor: pointer; color: var(--muted); margin-bottom: 12px; }

@media (max-width: 1099px) {
  #studio-app:not([hidden]) { grid-template-columns: 1fr; }
  .studio-bar {
    grid-template-columns: 1fr auto;
    padding: 10px 16px;
  }
  .studio-bar-search { justify-self: stretch; width: 100%; grid-column: 1 / -1; order: 3; }
  .studio-nav { flex-direction: row; flex-wrap: wrap; border-right: 0; border-bottom: 1px solid var(--line); }
  .studio-nav-video { display: none; }
  .studio-detail-grid, .studio-form, .studio-row { grid-template-columns: 1fr; }
  .studio-row-actions { display: flex; }
  .studio-video-text > .meta { display: none; }
  .studio-body { padding: 20px 18px 80px; }
}

@media (hover: none) {
  .studio-table tbody tr .studio-row-actions { display: flex; }
}

@media (max-width: 719px) {
  .studio-bar {
    grid-template-columns: 1fr auto;
    padding: 8px max(12px, env(safe-area-inset-right, 0px)) 8px max(12px, env(safe-area-inset-left, 0px));
    gap: 8px;
  }
  .studio-bar strong { font-size: 14px; }
  .studio-gate { width: min(520px, calc(100% - 32px)); margin: 24px auto; }
  .studio-body {
    padding: 14px max(14px, env(safe-area-inset-right, 0px)) calc(72px + env(safe-area-inset-bottom, 0px)) max(14px, env(safe-area-inset-left, 0px));
  }
  .studio-page-title { font-size: 22px; }
  .studio-thumb { width: 88px; }
  .studio-table th, .studio-table td { padding: 10px 8px; }
  .studio-nav button { min-height: 44px; }
  .studio-detail textarea { min-height: 120px; }
  .studio-playlist-new input { min-width: 0; width: 100%; }
  .studio-icon-btn { width: 44px; height: 44px; }
}
