:root {
  --bili-blue: #00aeec;
  --bili-blue-dark: #008ac5;
  --bili-pink: #fb7299;
  --ink: #18191c;
  --muted: #61666d;
  --subtle: #9499a0;
  --line: #e3e5e7;
  --paper: #ffffff;
  --bg: #f6f7f8;
  --soft-blue: #e8f7ff;
  --soft-pink: #fff0f5;
  --radius: 8px;
  --shadow: 0 8px 24px rgba(24, 25, 28, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.app-top {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(24, 25, 28, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.top-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

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

.brand-tv {
  width: 34px;
  height: 24px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--bili-blue), var(--bili-pink));
  font-size: 14px;
  font-weight: 1000;
  box-shadow: 0 3px 0 rgba(24, 25, 28, 0.18);
}

.brand-tv::before,
.brand-tv::after {
  content: "";
  position: absolute;
  top: -6px;
  width: 9px;
  border-top: 2px solid var(--ink);
}

.brand-tv::before {
  left: 7px;
  transform: rotate(25deg);
}

.brand-tv::after {
  right: 7px;
  transform: rotate(-25deg);
}

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--subtle);
  font-size: 12px;
  line-height: 1;
}

.top-action,
.primary-button,
.ghost-button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  color: #fff;
  background: var(--bili-blue);
  font-size: 13px;
  font-weight: 900;
}

.primary-button {
  min-height: 42px;
  border-radius: var(--radius);
  background: var(--ink);
}

.primary-button.full {
  width: 100%;
}

.ghost-button {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.page-tabs {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.page-tabs::-webkit-scrollbar {
  display: none;
}

.page-tabs a {
  position: relative;
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.page-tabs a[aria-current="page"] {
  color: var(--ink);
}

.page-tabs a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--bili-pink);
  transform: translateX(-50%);
}

.home-hero {
  padding: 12px 0 10px;
}

.hero-strip {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  border: 1px solid rgba(227, 229, 231, 0.82);
  border-radius: 10px;
  padding: 14px 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, var(--soft-blue), #fff, var(--soft-pink));
  box-shadow: 0 1px 2px rgba(24, 25, 28, 0.05);
}

.hero-copy {
  min-width: 0;
}

.signal {
  margin: 0;
  color: var(--bili-blue-dark);
  font-size: 13px;
  font-weight: 1000;
}

.page-title h1 {
  margin: 6px 0 0;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

.subtitle {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 760;
}

.bottom-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 0 14px;
}

.bottom-stats article {
  min-height: 58px;
  display: grid;
  align-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.72);
}

.bottom-stats span,
.video-meta,
.creator,
.form-state,
.graduate-item span,
.empty-state span {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 850;
}

.bottom-stats strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  line-height: 1;
}

.feed-shell {
  padding: 8px 0 28px;
}

.feed-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.feed-head h1,
.feed-head h2,
.form-panel h2,
.pending-panel h2 {
  margin: 4px 0 0;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
}

.feed-head p,
.page-title p,
.graduate-item p,
.empty-state p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.eyebrow {
  color: var(--bili-blue-dark);
  font-size: 12px;
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
}

.channel-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 12px;
  scrollbar-width: none;
}

.channel-row::-webkit-scrollbar {
  display: none;
}

.channel {
  flex: 0 0 auto;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.channel.is-active {
  border-color: rgba(0, 174, 236, 0.28);
  color: var(--bili-blue-dark);
  background: #e8f7ff;
}

.random-lock {
  margin: 0 0 12px;
  scroll-margin-top: 104px;
}

.random-lock[hidden] {
  display: none;
}

.lock-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid rgba(0, 174, 236, 0.26);
  border-radius: var(--radius);
  padding: 10px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(24, 25, 28, 0.07);
}

.lock-cover {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--bili-blue), var(--bili-pink));
}

.lock-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lock-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

.lock-body {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 2px 4px 2px 0;
}

.lock-kicker {
  color: var(--bili-blue-dark);
  font-size: 12px;
  font-weight: 1000;
}

.lock-body h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.26;
  letter-spacing: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.lock-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.lock-meta,
.lock-tags,
.lock-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.lock-meta {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 850;
}

.lock-meta b {
  color: var(--bili-blue-dark);
}

.lock-tags span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  color: var(--muted);
  background: #f1f2f3;
  font-size: 12px;
  font-weight: 850;
}

.lock-actions {
  margin-top: 2px;
}

.lock-actions a,
.lock-actions button {
  min-height: 32px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 950;
}

.lock-actions a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--bili-blue);
}

.lock-actions button {
  color: var(--bili-blue-dark);
  background: #e8f7ff;
}

.lock-actions button:last-child {
  color: var(--muted);
  background: #fff;
  border-color: var(--line);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}

.video-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 2px rgba(24, 25, 28, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.video-card:hover,
.video-card.is-highlighted {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.video-cover {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bili-blue), var(--bili-pink));
}

.video-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.48));
}

.video-badge,
.duration-badge {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  border-radius: 4px;
  padding: 0 6px;
  color: #fff;
  background: rgba(0, 0, 0, 0.64);
  font-size: 11px;
  font-weight: 850;
}

.video-badge {
  left: 6px;
  top: 6px;
  background: rgba(0, 174, 236, 0.92);
}

.duration-badge {
  right: 6px;
  bottom: 6px;
}

.video-body {
  padding: 8px 9px 10px;
}

.video-title {
  min-height: 39px;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 6px;
}

.video-meta span {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.video-meta b {
  flex: 0 0 auto;
  color: var(--bili-blue-dark);
  font-weight: 900;
}

.video-copy {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.creator {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 7px;
}

.progress {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  margin-top: 8px;
}

.progress strong {
  display: none;
}

.progress em {
  color: var(--subtle);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #f1f2f3;
}

.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--bili-blue), var(--bili-pink));
}

.rescue-link {
  min-height: 30px;
  display: grid;
  place-items: center;
  margin-top: 8px;
  border-radius: 6px;
  color: var(--bili-blue-dark);
  background: #e8f7ff;
  font-size: 12px;
  font-weight: 950;
}

.filter-room {
  padding: 0 0 34px;
}

.filter-room details,
.form-panel,
.pending-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(24, 25, 28, 0.04);
}

.filter-room summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
}

.filter-room summary b {
  color: var(--subtle);
  font-size: 12px;
}

.filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 14px;
}

.filter-grid h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.filter-grid ul,
.rule-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.filter-grid li,
.rule-list li,
.pending-item {
  border-radius: var(--radius);
  padding: 9px 10px;
  color: var(--muted);
  background: #f6f7f8;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 760;
}

.page-main {
  padding: 24px 0 42px;
}

.page-title {
  padding-bottom: 18px;
}

.page-title h1 {
  font-size: clamp(34px, 7vw, 64px);
}

.page-title p {
  margin-top: 10px;
}

.split-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 14px;
}

.form-panel {
  padding: 18px;
}

.soft-panel {
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.bv-form {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.bv-form label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.bv-form input,
.bv-form textarea,
.admin-toolbar input,
.admin-toolbar select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: #fff;
  outline: none;
}

.bv-form input:focus,
.bv-form textarea:focus,
.admin-toolbar input:focus,
.admin-toolbar select:focus {
  border-color: var(--bili-blue);
  box-shadow: 0 0 0 4px rgba(0, 174, 236, 0.14);
}

.field-hint {
  margin: -3px 0 2px;
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.45;
}

.profile-panel {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: #f7fbff;
}

.profile-panel strong,
.profile-panel small {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.profile-panel strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.profile-panel small {
  margin-top: 3px;
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.2;
}

.profile-refresh {
  min-height: 30px;
  padding: 0 10px;
  color: var(--bili-blue-dark);
  background: #fff;
  font-size: 12px;
}

.form-state {
  margin: 10px 0 0;
}

.pending-panel {
  margin-top: 14px;
  padding: 18px;
}

.pending-list,
.graduate-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.pending-item strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.pending-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.pending-card {
  display: grid;
  gap: 6px;
}

.pending-profile {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
}

.pending-profile strong,
.pending-profile span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pending-profile span {
  margin: 3px 0 0;
}

.pending-profile em {
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--bili-blue-dark);
  background: var(--soft-blue);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.identity-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--bili-blue), var(--bili-pink));
  font-size: 13px;
  font-weight: 1000;
  object-fit: cover;
}

.identity-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.admin-title p {
  max-width: 760px;
}

.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(24, 25, 28, 0.04);
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 170px auto;
  gap: 10px;
  align-items: end;
}

.admin-toolbar label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.admin-hint {
  margin: 10px 0 0;
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.55;
}

.admin-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.admin-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: #fff;
}

.admin-cover {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--bili-blue), var(--bili-pink));
}

.admin-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.admin-card-body {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
}

.admin-card-head,
.admin-facts,
.admin-actions,
.admin-identities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.admin-card-head b {
  color: var(--subtle);
  font-size: 12px;
}

.admin-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.admin-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.admin-identities > div {
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.admin-identities .identity-avatar {
  width: 28px;
  height: 28px;
  font-size: 12px;
}

.admin-facts span,
.status-pill {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  color: var(--muted);
  background: #f1f2f3;
  font-size: 12px;
  font-weight: 850;
}

.status-pill.pending {
  color: var(--bili-blue-dark);
  background: var(--soft-blue);
}

.status-pill.approved {
  color: #168249;
  background: #e7f7ee;
}

.status-pill.rejected {
  color: #b31d4b;
  background: var(--soft-pink);
}

.admin-actions button {
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.admin-actions button:nth-child(2) {
  color: #b31d4b;
  background: var(--soft-pink);
}

.admin-actions button:nth-child(3) {
  color: var(--bili-blue-dark);
  background: var(--soft-blue);
}

.graduate-item,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
}

.graduate-item h3,
.empty-state h3 {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.4;
}

.compact-only {
  margin-top: 12px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 30;
  max-width: min(420px, calc(100% - 28px));
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  border-radius: 999px;
  padding: 11px 14px;
  color: #fff;
  background: rgba(24, 25, 28, 0.94);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 900;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (min-width: 1180px) {
  .video-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .split-page {
    grid-template-columns: 1fr;
  }

  .lock-card {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 16px, 520px);
  }

  .app-top {
    position: sticky;
  }

  .top-row {
    min-height: 50px;
  }

  .brand small {
    display: none;
  }

  .top-action {
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
  }

  .page-tabs {
    gap: 22px;
  }

  .page-tabs a {
    min-height: 34px;
    font-size: 14px;
  }

  .home-hero {
    padding: 8px 0 8px;
  }

  .hero-strip {
    min-height: auto;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
  }

  .hero-strip h1 {
    font-size: 24px;
    line-height: 1.12;
  }

  .subtitle {
    max-width: none;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.45;
  }

  .bottom-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding-bottom: 12px;
  }

  .bottom-stats article {
    min-height: 46px;
    padding: 6px 7px;
  }

  .bottom-stats span {
    font-size: 10px;
  }

  .bottom-stats strong {
    margin-top: 4px;
    font-size: 14px;
  }

  .feed-shell {
    padding-top: 4px;
  }

  .feed-head {
    align-items: start;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
  }

  .feed-head h2 {
    font-size: 21px;
  }

  .feed-head h1 {
    font-size: 21px;
  }

  .feed-head p {
    font-size: 12px;
  }

  .lock-card {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
  }

  .lock-body {
    align-content: start;
    gap: 5px;
    padding: 0;
  }

  .lock-kicker {
    font-size: 11px;
  }

  .lock-body h3 {
    font-size: 14px;
    line-height: 1.35;
  }

  .lock-body p,
  .lock-tags,
  .lock-meta span:last-child {
    display: none;
  }

  .lock-meta {
    gap: 6px;
    font-size: 11px;
  }

  .lock-actions {
    gap: 5px;
  }

  .lock-actions a,
  .lock-actions button {
    min-height: 28px;
    padding: 0 8px;
    font-size: 11px;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .video-body {
    padding: 7px;
  }

  .video-title {
    min-height: 36px;
    font-size: 13px;
    line-height: 1.38;
  }

  .video-copy {
    display: none;
  }

  .creator {
    display: none;
  }

  .progress,
  .rescue-link {
    display: none;
  }

  .filter-grid,
  .pending-list,
  .graduate-list {
    grid-template-columns: 1fr;
  }

  .admin-toolbar,
  .admin-card {
    grid-template-columns: 1fr;
  }

  .admin-cover {
    max-width: none;
  }

  .admin-card h3 {
    font-size: 15px;
  }

  .admin-identities > div {
    min-width: 0;
    max-width: 100%;
  }

  .profile-panel {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 9px;
  }

  .profile-refresh {
    min-height: 28px;
    padding: 0 8px;
  }

  .page-main {
    padding-top: 18px;
  }

  .page-title h1 {
    font-size: 34px;
  }

  .page-title p {
    font-size: 13px;
  }

  .form-panel,
  .pending-panel {
    padding: 14px;
  }
}

@media (max-width: 360px) {
  .video-title {
    font-size: 12px;
  }
}
