:root {
  color-scheme: dark;
  --bg: #101115;
  --panel: #181a20;
  --panel-2: #20232b;
  --muted: #9ba3b3;
  --text: #f5f7fb;
  --line: rgba(255, 255, 255, 0.1);
  --brand: #36d399;
  --brand-2: #58a6ff;
  --danger: #ff6b6b;
  --radius: 8px;
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(54, 211, 153, 0.16), transparent 34rem),
    linear-gradient(135deg, #101115 0%, #16181f 52%, #101115 100%);
  color: var(--text);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  padding: 24px;
}

.topbar {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto 24px;
  max-width: 1180px;
}

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

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 8px;
  color: #07130f;
  display: grid;
  flex: 0 0 auto;
  font-weight: 800;
  height: 38px;
  place-items: center;
  width: 38px;
}

.brand-title {
  font-size: 16px;
  font-weight: 750;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.pill {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 12px;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
}

.dot {
  background: var(--brand);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.button {
  align-items: center;
  background: var(--brand);
  border: 0;
  border-radius: 8px;
  color: #06110d;
  display: inline-flex;
  font-weight: 750;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  text-decoration: none;
  transition:
    transform 160ms ease,
    filter 160ms ease;
}

.button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.button.danger {
  background: var(--danger);
  color: #fff;
}

.page {
  margin: 0 auto;
  max-width: 1180px;
}

.hero {
  background: rgba(24, 26, 32, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  overflow: hidden;
  padding: 22px;
}

.hero.compact {
  grid-template-columns: 1fr;
}

.channel {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  min-width: 0;
}

.avatar {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  flex: 0 0 auto;
  height: 64px;
  object-fit: cover;
  width: 64px;
}

.avatar.fallback {
  align-items: center;
  color: var(--brand);
  display: grid;
  font-weight: 850;
  place-items: center;
}

.eyebrow {
  color: var(--brand);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.title {
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.08;
  margin-bottom: 12px;
  word-break: break-word;
}

.description {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 760px;
  word-break: break-word;
}

.description a {
  color: var(--brand-2);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  padding: 8px 10px;
}

.video-card {
  background: #050609;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
}

.video-box {
  aspect-ratio: 16 / 9;
  background: #050609;
  display: grid;
  overflow: hidden;
  place-items: center;
  position: relative;
}

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

.video-box video {
  background: #000;
}

.video-empty {
  color: var(--muted);
  padding: 24px;
  text-align: center;
}

.video-info {
  padding: 14px;
}

.video-info h2 {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 8px;
  word-break: break-word;
}

.section {
  margin-top: 24px;
}

.section-header {
  align-items: flex-end;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: 20px;
  margin-bottom: 4px;
}

.pc-section-title {
  display: none;
}

.mobile-section-title {
  display: inline;
}

.section-header p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.item {
  background: rgba(24, 26, 32, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  display: block;
  min-width: 0;
  overflow: hidden;
  text-align: left;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.item:hover {
  background: rgba(32, 35, 43, 0.94);
  border-color: rgba(54, 211, 153, 0.42);
  transform: translateY(-2px);
}

.thumb {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(54, 211, 153, 0.18), rgba(88, 166, 255, 0.12)),
    var(--panel-2);
  display: grid;
  overflow: hidden;
  place-items: center;
  position: relative;
}

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

.play-badge,
.folder-badge {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  bottom: 10px;
  color: #fff;
  display: flex;
  font-size: 12px;
  font-weight: 750;
  min-height: 28px;
  padding: 5px 9px;
  position: absolute;
  right: 10px;
}

.folder-badge {
  left: 10px;
  right: auto;
}

.item-body {
  padding: 12px;
}

.item-title {
  display: -webkit-box;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  min-height: 40px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.item-title-row {
  min-width: 0;
}

.item-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 8px;
  margin-top: 10px;
}

.load-more {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.state-card,
.password-card {
  background: rgba(24, 26, 32, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 10vh auto 0;
  max-width: 520px;
  padding: 30px;
  text-align: center;
}

.state-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brand);
  display: grid;
  font-size: 28px;
  font-weight: 850;
  height: 72px;
  margin: 0 auto 18px;
  place-items: center;
  width: 72px;
}

.state-card h1,
.password-card h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.state-card p,
.password-card p {
  color: var(--muted);
  line-height: 1.6;
}

.password-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  min-height: 48px;
  outline: none;
  padding: 0 14px;
}

.input:focus {
  border-color: var(--brand);
}

.error-text {
  color: var(--danger);
  font-size: 13px;
  margin-top: 8px;
}

.skeleton {
  animation: pulse 1.3s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.loading-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
}

.loading-grid .skeleton {
  aspect-ratio: 16 / 13;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

.debug {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin-top: 18px;
  overflow: auto;
  padding: 12px;
  text-align: left;
}

.hidden {
  display: none !important;
}

@media (min-width: 941px) {
  body:has(.pc-default-shell) {
    background: #f1f4f8;
    color: #25262a;
  }

  .pc-default-shell {
    background: #f1f4f8;
    color: #25262a;
    font-family: "PingFang SC", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    padding: 0;
  }

  .pc-default-topbar {
    background: #f1f4f8;
    height: 60px;
    width: 100%;
  }

  .pc-default-shell .page {
    margin: 0;
    max-width: none;
    width: 100%;
  }

  .pc-default-page {
    background: #f1f4f8;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 60px);
    min-height: 0;
    width: 100%;
  }

  .pc-default-banner {
    background: #f1f4f8;
    flex: 0 0 90px;
    height: 90px;
    width: 100%;
  }

  .pc-default-panel {
    backdrop-filter: blur(5px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(43, 110, 210, 0.1);
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 20px;
    height: auto;
    margin: 30px auto;
    min-height: 0;
    overflow: hidden;
    padding: 20px 30px;
    width: 1200px;
  }

  .pc-default-heading {
    color: #25262a;
    flex: 0 0 39px;
    font-size: 28px;
    font-weight: 600;
    height: 39px;
    line-height: 39px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 1140px;
  }

  .pc-default-list {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    gap: 20px;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: none;
    width: 1140px;
  }

  .pc-default-list::-webkit-scrollbar {
    display: none;
  }

  .pc-default-row {
    align-items: flex-start;
    background: #fff;
    border: 0;
    color: #1e2226;
    display: flex;
    flex: 0 0 80px;
    gap: 20px;
    height: 80px;
    padding: 0;
    text-align: left;
    width: 1140px;
  }

  .pc-default-row:hover,
  .pc-default-row:focus-visible {
    background: #fff;
    box-shadow: none;
    outline: none;
  }

  .pc-default-thumb {
    align-items: center;
    background: #f0f7ff;
    border-radius: 8px;
    display: flex;
    flex: 0 0 142px;
    height: 80px;
    justify-content: center;
    overflow: hidden;
    width: 142px;
  }

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

  .pc-default-info {
    align-self: stretch;
    display: flex;
    flex: 0 0 978px;
    flex-direction: column;
    height: 80px;
    justify-content: space-between;
    min-width: 0;
    width: 978px;
  }

  .pc-default-title-row {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    height: 56px;
    justify-content: space-between;
    padding: 0 10px 0 0;
    width: 978px;
  }

  .pc-default-name {
    color: #1e2226;
    display: -webkit-box;
    flex: 0 0 810px;
    font-size: 20px;
    font-weight: 400;
    height: 56px;
    line-height: 28px;
    max-width: 810px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .pc-default-meta {
    align-items: center;
    color: #77787f;
    display: flex;
    flex: 0 0 22px;
    flex-wrap: nowrap;
    font-size: 16px;
    gap: 40px;
    height: 22px;
    line-height: 22px;
    width: 225px;
  }

  .pc-default-meta span:first-child {
    flex: 0 0 120px;
    width: 120px;
  }

  .pc-default-meta span + span {
    color: #2383ff;
    flex: 0 0 auto;
    position: relative;
  }

  .pc-default-meta span + span::before {
    background: #dbdbdb;
    content: "";
    height: 14px;
    left: -20px;
    position: absolute;
    top: 4px;
    width: 1px;
  }

  .pc-default-shell .folder-icon {
    display: block;
    height: 44px;
    position: relative;
    width: 56px;
  }

  .pc-default-shell .folder-icon::before,
  .pc-default-shell .folder-icon::after {
    border-radius: 6px;
    content: "";
    left: 0;
    position: absolute;
  }

  .pc-default-shell .folder-icon::before {
    background: linear-gradient(155deg, #ffe186 6%, #d0a219 97%);
    height: 18px;
    top: 2px;
    width: 38px;
  }

  .pc-default-shell .folder-icon::after {
    background: linear-gradient(180deg, #ffe491 0%, #f2b800 100%);
    bottom: 0;
    height: 32px;
    width: 56px;
  }

  .pc-default-video-icon {
    align-items: center;
    background: rgba(35, 131, 255, 0.14);
    border: 1px solid rgba(35, 131, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    width: 44px;
  }

  .pc-default-video-icon::before {
    border-bottom: 10px solid transparent;
    border-left: 15px solid #2383ff;
    border-top: 10px solid transparent;
    content: "";
    display: block;
    margin-left: 4px;
  }

  .pc-default-empty {
    align-items: center;
    color: #77787f;
    display: flex;
    flex: 1 1 auto;
    font-size: 16px;
    justify-content: center;
    min-height: 240px;
  }

  .pc-default-load-more {
    align-items: center;
    display: flex;
    flex: 0 0 56px;
    justify-content: center;
    width: 1140px;
  }

  .pc-default-load-more .button {
    background: #f0f7ff;
    border: 1px solid #e3edfd;
    border-radius: 61px;
    color: #2383ff;
    font-size: 14px;
    font-weight: 400;
    min-height: 36px;
    min-width: 140px;
  }

  .pc-default-load-more .button:disabled {
    cursor: default;
    opacity: 0.68;
    transform: none;
  }

  body:has(.pc-channel-shell) {
    background: #f1f4f8;
    color: #25262a;
  }

  .pc-channel-shell {
    background: #f1f4f8;
    color: #25262a;
    font-family: "PingFang SC", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
    padding: 0 0 64px;
  }

  .pc-channel-shell .topbar {
    align-items: center;
    background: #f1f4f8;
    height: 60px;
    justify-content: flex-end;
    margin: 0;
    max-width: none;
    padding: 0 32px;
    width: 100%;
  }

  .pc-channel-shell .brand {
    display: none;
  }

  .pc-channel-shell .topbar-actions {
    gap: 20px;
  }

  .contact-link {
    color: #3c3f45;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    text-transform: capitalize;
    white-space: nowrap;
  }

  .pc-channel-shell .button {
    border-radius: 61px;
    font-size: 14px;
    font-weight: 400;
    min-height: 36px;
    padding: 0 17px;
  }

  .pc-channel-shell .button.secondary {
    background: #1b81ee;
    border: 0;
    color: #fff;
  }

  .language-select {
    align-items: center;
    color: #3c3f45;
    display: inline-flex;
    font-size: 14px;
    gap: 6px;
    height: 20px;
    line-height: 20px;
  }

  .globe-icon {
    border: 1.8px solid #333;
    border-radius: 50%;
    display: inline-block;
    height: 20px;
    position: relative;
    width: 20px;
  }

  .globe-icon::before,
  .globe-icon::after {
    content: "";
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .globe-icon::before {
    border-left: 1.4px solid #333;
    border-right: 1.4px solid #333;
    border-radius: 50%;
    height: 14px;
    width: 7px;
  }

  .globe-icon::after {
    background: #333;
    height: 1.4px;
    width: 13px;
  }

  .chevron-icon {
    border-bottom: 1.6px solid #80848d;
    border-right: 1.6px solid #80848d;
    display: inline-block;
    height: 7px;
    transform: rotate(45deg) translateY(-2px);
    width: 7px;
  }

  .pc-channel-shell .page {
    margin: 0;
    max-width: none;
    width: 100%;
  }

  .folder-view {
    padding-bottom: 48px;
  }

  .channel-banner {
    background:
      linear-gradient(90deg, rgba(26, 24, 38, 0.98), rgba(37, 47, 77, 0.88)),
      radial-gradient(circle at 22% 24%, rgba(35, 131, 255, 0.42), transparent 30%),
      radial-gradient(circle at 72% 36%, rgba(27, 129, 238, 0.28), transparent 34%),
      #1a1826;
    height: 140px;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .channel-banner::before {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
      linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 22px);
    content: "";
    inset: 0;
    opacity: 0.42;
    position: absolute;
  }

  .pc-channel-shell .hero.channel-card {
    align-items: center;
    background: #fff;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 4px 4px rgba(186, 199, 227, 0.25);
    display: flex;
    gap: 0;
    grid-template-columns: none;
    height: 160px;
    margin: 30px auto 20px;
    max-width: 1200px;
    overflow: visible;
    padding: 30px;
    width: min(1200px, calc(100vw - 64px));
  }

  .pc-channel-shell .channel-card-main {
    min-width: 0;
    width: 100%;
  }

  .pc-channel-shell .channel {
    align-items: center;
    gap: 32px;
    width: 100%;
  }

  .pc-channel-shell .avatar {
    background: #ca2b2b;
    border: 0;
    border-radius: 50%;
    height: 100px;
    width: 100px;
  }

  .pc-channel-shell .avatar.fallback {
    color: #fff;
    font-size: 30px;
  }

  .pc-channel-shell .title {
    color: #25262a;
    font-size: 28px;
    font-weight: 600;
    line-height: 39px;
    margin-bottom: 15px;
    max-width: 100%;
  }

  .pc-channel-shell .description {
    color: #25262a;
    display: -webkit-box;
    font-size: 16px;
    line-height: 22px;
    margin: 0;
    max-width: none;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .pc-channel-shell .meta-row {
    display: none;
  }

  .pc-channel-shell .folder-feature-video {
    display: none;
  }

  .pc-channel-shell .section {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(43, 110, 210, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 879px;
    margin: 30px auto 0;
    max-width: 1200px;
    min-height: 879px;
    overflow-y: auto;
    padding: 20px 30px;
    scrollbar-width: none;
    width: min(1200px, calc(100vw - 64px));
  }

  .pc-channel-shell .section::-webkit-scrollbar {
    display: none;
  }

  .pc-channel-shell .section-header {
    display: block;
    flex: 0 0 39px;
    height: 39px;
    margin: 0;
    width: 100%;
  }

  .pc-channel-shell .section-header h2 {
    color: #25262a;
    font-size: 28px;
    font-weight: 600;
    line-height: 39px;
    margin: 0;
  }

  .pc-channel-shell .section-header p,
  .pc-channel-shell .section-header .pill {
    display: none;
  }

  .pc-channel-shell .pc-section-title {
    display: inline;
  }

  .pc-channel-shell .mobile-section-title {
    display: none;
  }

  .pc-channel-shell .grid {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 20px;
    min-height: 0;
  }

  .pc-channel-shell .item {
    align-items: flex-start;
    background: #fff;
    border: 0;
    border-radius: 0;
    color: #1e2226;
    display: flex;
    gap: 20px;
    height: 80px;
    min-height: 80px;
    overflow: visible;
    padding: 0;
    width: 100%;
  }

  .pc-channel-shell .item:hover {
    background: #fff;
    transform: none;
  }

  .pc-channel-shell .thumb {
    aspect-ratio: auto;
    background: #f0f7ff;
    border-radius: 8px;
    flex: 0 0 142px;
    height: 80px;
    width: 142px;
  }

  .pc-channel-shell .thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .pc-channel-shell .folder-icon {
    display: block;
    height: 44px;
    position: relative;
    width: 56px;
  }

  .pc-channel-shell .folder-icon::before,
  .pc-channel-shell .folder-icon::after {
    border-radius: 6px;
    content: "";
    left: 0;
    position: absolute;
  }

  .pc-channel-shell .folder-icon::before {
    background: linear-gradient(155deg, #ffe186 6%, #d0a219 97%);
    height: 18px;
    top: 2px;
    width: 38px;
  }

  .pc-channel-shell .folder-icon::after {
    background: linear-gradient(180deg, #ffe491 0%, #f2b800 100%);
    bottom: 0;
    height: 32px;
    width: 56px;
  }

  .pc-channel-shell .play-badge,
  .pc-channel-shell .folder-badge {
    display: none;
  }

  .pc-channel-shell .item-body {
    align-self: stretch;
    display: flex;
    flex: 0 1 978px;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 0;
    width: 978px;
  }

  .pc-channel-shell .item-title-row {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    min-height: 56px;
    padding-right: 10px;
    width: 978px;
  }

  .pc-channel-shell .item-title {
    color: #1e2226;
    flex: 0 1 810px;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    max-width: 810px;
    min-height: 0;
    -webkit-line-clamp: 2;
  }

  .pc-channel-shell .item-meta {
    align-items: center;
    color: #77787f;
    flex-wrap: nowrap;
    font-size: 16px;
    gap: 40px;
    line-height: 22px;
    margin: 0;
    min-height: 22px;
  }

  .pc-channel-shell .item-meta span:first-child {
    flex: 0 0 120px;
    width: 120px;
  }

  .pc-channel-shell .item-meta span + span {
    color: #2383ff;
    position: relative;
  }

  .pc-channel-shell .item-meta span + span::before {
    background: #dbdbdb;
    content: "";
    height: 14px;
    left: -20px;
    position: absolute;
    top: 4px;
    width: 1px;
  }

  .pc-channel-shell .load-more {
    margin-top: 28px;
  }

  .pc-channel-shell .load-more .button {
    background: #f0f7ff;
    border: 1px solid #e3edfd;
    color: #2383ff;
    min-width: 140px;
  }
}

@media (max-width: 940px) {
  .app-shell {
    padding: 16px;
  }

  .channel-banner {
    display: none;
  }

  .language-select,
  .contact-link {
    display: none;
  }

  .folder-feature-video {
    margin-top: 24px;
  }

  .topbar {
    align-items: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .grid,
  .loading-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .app-shell {
    padding: 14px;
  }

  .topbar-actions .pill {
    display: none;
  }

  .channel {
    gap: 12px;
  }

  .avatar {
    height: 52px;
    width: 52px;
  }

  .title {
    font-size: 28px;
  }

  .grid,
  .loading-grid {
    gap: 10px;
  }

  .item-body {
    padding: 10px;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .state-card,
  .password-card {
    margin-top: 7vh;
    padding: 24px 18px;
  }
}

/* The default landing template is a fixed PC design; keep it identical even in a narrow preview pane. */
body:has(.pc-default-shell) {
  background: #f1f4f8;
  color: #25262a;
}

.pc-default-shell {
  background: #f1f4f8;
  color: #25262a;
  font-family: "PingFang SC", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  padding: 0;
}

.pc-default-topbar {
  background: #f1f4f8;
  height: 60px;
  width: 100%;
}

.pc-default-shell .page {
  margin: 0;
  max-width: none;
  width: 100%;
}

.pc-default-page {
  background: #f1f4f8;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 60px);
  min-height: 0;
  width: 100%;
}

.pc-default-banner {
  align-items: center;
  background: #f1f4f8;
  display: flex;
  flex: 0 0 90px;
  height: 90px;
  justify-content: center;
  width: 100%;
}

.pc-default-panel {
  backdrop-filter: blur(5px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(43, 110, 210, 0.1);
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 20px;
  height: auto;
  margin: 30px auto;
  min-height: 0;
  overflow: hidden;
  padding: 20px 30px;
  width: 1200px;
}

.pc-default-heading {
  color: #25262a;
  flex: 0 0 39px;
  font-size: 28px;
  font-weight: 600;
  height: 39px;
  line-height: 39px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 1140px;
}

.pc-default-list {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: none;
  width: 1140px;
}

.pc-default-list::-webkit-scrollbar {
  display: none;
}

.pc-default-row {
  align-items: flex-start;
  background: #fff;
  border: 0;
  color: #1e2226;
  display: flex;
  flex: 0 0 80px;
  gap: 20px;
  height: 80px;
  padding: 0;
  text-align: left;
  width: 1140px;
}

.pc-default-row:hover,
.pc-default-row:focus-visible {
  background: #fff;
  box-shadow: none;
  outline: none;
}

.pc-default-thumb {
  align-items: center;
  background: #f0f7ff;
  border-radius: 8px;
  display: flex;
  flex: 0 0 142px;
  height: 80px;
  justify-content: center;
  overflow: hidden;
  width: 142px;
}

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

.pc-default-info {
  align-self: stretch;
  display: flex;
  flex: 0 0 978px;
  flex-direction: column;
  height: 80px;
  justify-content: space-between;
  min-width: 0;
  width: 978px;
}

.pc-default-title-row {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  height: 56px;
  justify-content: space-between;
  padding: 0 10px 0 0;
  width: 978px;
}

.pc-default-name {
  color: #1e2226;
  display: -webkit-box;
  flex: 0 0 810px;
  font-size: 20px;
  font-weight: 400;
  height: 56px;
  line-height: 28px;
  max-width: 810px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pc-default-meta {
  align-items: center;
  color: #77787f;
  display: flex;
  flex: 0 0 22px;
  flex-wrap: nowrap;
  font-size: 16px;
  gap: 40px;
  height: 22px;
  line-height: 22px;
  width: 225px;
}

.pc-default-meta span:first-child {
  flex: 0 0 120px;
  width: 120px;
}

.pc-default-meta span + span {
  color: #2383ff;
  flex: 0 0 auto;
  position: relative;
}

.pc-default-meta span + span::before {
  background: #dbdbdb;
  content: "";
  height: 14px;
  left: -20px;
  position: absolute;
  top: 4px;
  width: 1px;
}

.pc-default-shell .folder-icon {
  display: block;
  height: 44px;
  position: relative;
  width: 56px;
}

.pc-default-shell .folder-icon::before,
.pc-default-shell .folder-icon::after {
  border-radius: 6px;
  content: "";
  left: 0;
  position: absolute;
}

.pc-default-shell .folder-icon::before {
  background: linear-gradient(155deg, #ffe186 6%, #d0a219 97%);
  height: 18px;
  top: 2px;
  width: 38px;
}

.pc-default-shell .folder-icon::after {
  background: linear-gradient(180deg, #ffe491 0%, #f2b800 100%);
  bottom: 0;
  height: 32px;
  width: 56px;
}

.pc-default-video-icon {
  align-items: center;
  background: rgba(35, 131, 255, 0.14);
  border: 1px solid rgba(35, 131, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.pc-default-video-icon::before {
  border-bottom: 10px solid transparent;
  border-left: 15px solid #2383ff;
  border-top: 10px solid transparent;
  content: "";
  display: block;
  margin-left: 4px;
}

.pc-default-empty {
  align-items: center;
  color: #77787f;
  display: flex;
  flex: 1 1 auto;
  font-size: 16px;
  justify-content: center;
  min-height: 240px;
}

.pc-default-load-more {
  align-items: center;
  display: flex;
  flex: 0 0 56px;
  justify-content: center;
  width: 1140px;
}

.pc-default-load-more .button {
  background: #f0f7ff;
  border: 1px solid #e3edfd;
  border-radius: 61px;
  color: #2383ff;
  font-size: 14px;
  font-weight: 400;
  min-height: 36px;
  min-width: 140px;
}

.pc-default-load-more .button:disabled {
  cursor: default;
  opacity: 0.68;
  transform: none;
}

.recruitment-page {
  align-items: center;
  background: #f1f4f8;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 60px);
  padding: 30px 16px;
  width: 100%;
}

.recruitment-panel {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(43, 110, 210, 0.1);
  max-width: 640px;
  padding: 42px 48px;
  text-align: center;
  width: calc(100vw - 48px);
}

.recruitment-panel h1 {
  color: #25262a;
  font-size: 28px;
  font-weight: 600;
  line-height: 39px;
  margin: 0;
}

.recruitment-panel p {
  color: #77787f;
  font-size: 16px;
  line-height: 26px;
  margin: 16px auto 0;
  max-width: 500px;
}

.recruitment-mail {
  align-items: center;
  background: #2383ff;
  border-radius: 61px;
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  margin-top: 24px;
  min-height: 44px;
  padding: 0 24px;
  text-decoration: none;
}

.recruitment-mail:hover,
.recruitment-mail:focus-visible {
  background: #176fe0;
  outline: none;
}

body:has(.pc-loading-shell) {
  background: #f1f4f8;
  color: #25262a;
}

.pc-loading-shell {
  background: #f1f4f8;
  color: #25262a;
  font-family: "PingFang SC", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  padding: 0;
}

.pc-loading-shell .page {
  margin: 0;
  max-width: none;
  width: 100%;
}

.pc-loading-page {
  background: #f1f4f8;
  min-height: calc(100vh - 60px);
  padding-bottom: 30px;
  width: 100%;
}

.pc-loading-banner {
  background: #f1f4f8;
  height: 90px;
  width: 100%;
}

.pc-loading-layout {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 330px;
  margin: 30px auto 0;
  width: 1200px;
}

.pc-loading-main {
  min-width: 0;
}

.pc-loading-skeleton {
  animation: pc-loading-shimmer 1.25s ease-in-out infinite;
  background: linear-gradient(90deg, #e7edf5 0%, #f6f9fd 46%, #e7edf5 100%);
  background-size: 220% 100%;
}

.pc-loading-video {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  width: 100%;
}

.pc-loading-title-row {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: 12px;
  min-width: 0;
}

.pc-loading-title-stack {
  flex: 1 1 auto;
  min-width: 0;
}

.pc-loading-line {
  border-radius: 999px;
  height: 18px;
}

.pc-loading-line-title {
  height: 24px;
  max-width: 520px;
  width: 62%;
}

.pc-loading-line-meta {
  height: 16px;
  margin-top: 12px;
  max-width: 220px;
  width: 28%;
}

.pc-loading-sidebar {
  min-width: 0;
  width: 330px;
}

.pc-loading-tab {
  background: #2383ff;
  border-radius: 16px;
  height: 32px;
  margin-bottom: 10px;
  opacity: 0.86;
  width: 126px;
}

.pc-loading-side-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: calc(100vh - 60px - 90px - 30px - 32px - 10px - 30px);
  min-height: 0;
  overflow: hidden;
  padding-right: 2px;
}

.pc-loading-side-row {
  align-items: flex-start;
  background: #fff;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 102px minmax(0, 1fr);
  min-height: 72px;
  padding: 8px;
  width: 100%;
}

.pc-loading-side-thumb {
  border-radius: 6px;
  height: 56px;
  width: 102px;
}

.pc-loading-side-lines {
  min-width: 0;
  padding-top: 3px;
}

.pc-loading-side-line {
  border-radius: 999px;
  height: 16px;
  width: 92%;
}

.pc-loading-side-line.short {
  height: 13px;
  margin-top: 13px;
  width: 54%;
}

.pc-loading-list-page {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 60px);
  min-height: 0;
  padding-bottom: 0;
}

.pc-loading-list-page .pc-loading-banner {
  flex: 0 0 90px;
}

.pc-loading-list-panel {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(43, 110, 210, 0.1);
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 20px;
  margin: 30px auto;
  min-height: 0;
  overflow: hidden;
  padding: 20px 30px;
  width: 1200px;
}

.pc-loading-list-heading {
  border-radius: 999px;
  flex: 0 0 28px;
  height: 28px;
  width: 360px;
}

.pc-loading-list {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 20px;
  min-height: 0;
  overflow: hidden;
  width: 1140px;
}

.pc-loading-list-row {
  display: flex;
  flex: 0 0 80px;
  gap: 20px;
  height: 80px;
  width: 1140px;
}

.pc-loading-list-thumb {
  border-radius: 8px;
  flex: 0 0 142px;
  height: 80px;
  width: 142px;
}

.pc-loading-list-lines {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 4px 0;
}

.pc-loading-list-title {
  border-radius: 999px;
  height: 22px;
  width: min(620px, 72%);
}

.pc-loading-list-meta {
  border-radius: 999px;
  height: 16px;
  width: 210px;
}

@keyframes pc-loading-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

body:has(.pc-player-shell) {
  background: #f1f4f8;
  color: #25262a;
}

.pc-player-shell {
  background: #f1f4f8;
  color: #25262a;
  font-family: "PingFang SC", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  padding: 0;
}

.pc-player-shell .page {
  margin: 0;
  max-width: none;
  width: 100%;
}

.pc-player-page {
  background: #f1f4f8;
  min-height: calc(100vh - 60px);
  padding-bottom: 30px;
  width: 100%;
}

.pc-player-banner {
  align-items: center;
  background: #f1f4f8;
  display: flex;
  height: 90px;
  justify-content: center;
  width: 100%;
}

.pc-banner-ad-slot {
  align-items: center;
  background: transparent;
  display: flex;
  height: 90px;
  justify-content: center;
  overflow: hidden;
  width: 728px;
}

.pc-player-layout {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 330px;
  margin: 30px auto 0;
  width: 1200px;
}

.pc-player-main {
  min-width: 0;
}

.pc-player-heading {
  color: #25262a;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.pc-player-video-frame {
  align-items: center;
  background: #000;
  border-radius: 8px;
  display: flex;
  aspect-ratio: 16 / 9;
  height: auto;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.pc-player-video {
  background: #000;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.pc-player-empty {
  align-items: center;
  background: #000;
  border-radius: 8px;
  color: #b6becd;
  display: flex;
  font-size: 16px;
  aspect-ratio: 16 / 9;
  justify-content: center;
  width: 100%;
}

.pc-player-title-row {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: 12px;
  min-width: 0;
}

.pc-player-meta {
  align-items: center;
  color: #77787f;
  display: flex;
  flex-wrap: nowrap;
  font-size: 16px;
  gap: 40px;
  height: 22px;
  line-height: 22px;
  margin-top: 6px;
}

.pc-player-meta span + span {
  color: #2383ff;
  position: relative;
}

.pc-player-meta span + span::before {
  background: #dbdbdb;
  content: "";
  height: 14px;
  left: -20px;
  position: absolute;
  top: 4px;
  width: 1px;
}

.pc-player-sidebar {
  min-width: 0;
  width: 330px;
}

.pc-player-tabs {
  align-items: center;
  display: flex;
  height: 32px;
  margin-bottom: 10px;
}

.pc-player-tab {
  align-items: center;
  background: transparent;
  border-radius: 16px;
  color: #25262a;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  height: 32px;
  justify-content: center;
  max-width: 330px;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pc-player-tab.active {
  background: #2383ff;
  color: #fff;
  padding: 0 16px;
}

.pc-player-side-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: calc(100vh - 60px - 90px - 30px - 32px - 10px - 30px);
  min-height: 0;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: none;
}

.pc-player-side-list::-webkit-scrollbar {
  display: none;
}

.pc-player-side-item {
  align-items: flex-start;
  background: #fff;
  border: 0;
  border-radius: 8px;
  color: #1e2226;
  display: grid;
  gap: 12px;
  grid-template-columns: 102px minmax(0, 1fr);
  min-height: 72px;
  padding: 8px;
  text-align: left;
  width: 100%;
}

.pc-player-side-thumb {
  align-items: center;
  background: #f0f7ff;
  border-radius: 6px;
  display: flex;
  height: 56px;
  justify-content: center;
  overflow: hidden;
  width: 102px;
}

.pc-player-side-thumb img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.pc-player-side-info {
  min-width: 0;
}

.pc-player-side-title {
  color: #1e2226;
  display: -webkit-box;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  max-height: 36px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pc-player-side-meta {
  align-items: center;
  color: #77787f;
  display: flex;
  flex-wrap: nowrap;
  font-size: 12px;
  gap: 22px;
  line-height: 17px;
  margin-top: 6px;
}

.pc-player-side-meta span + span {
  color: #2383ff;
  position: relative;
}

.pc-player-side-meta span + span::before {
  background: #dbdbdb;
  content: "";
  height: 12px;
  left: -11px;
  position: absolute;
  top: 3px;
  width: 1px;
}

.pc-player-side-empty {
  align-items: center;
  background: #fff;
  border-radius: 8px;
  color: #77787f;
  display: flex;
  font-size: 14px;
  justify-content: center;
  min-height: 120px;
  padding: 18px;
}

.pc-player-side-load-more {
  align-items: center;
  display: flex;
  flex: 0 0 46px;
  justify-content: center;
  width: 100%;
}

.pc-player-side-load-more-button {
  align-items: center;
  background: #f0f7ff;
  border: 1px solid #e3edfd;
  border-radius: 61px;
  color: #2383ff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 400;
  justify-content: center;
  min-height: 36px;
  min-width: 140px;
  padding: 0 18px;
}

.pc-player-side-load-more-button:disabled {
  cursor: default;
  opacity: 0.68;
}

@media (max-width: 767px) {
  body:has(.pc-default-shell),
  body:has(.pc-player-shell),
  body:has(.pc-loading-shell) {
    background: #f1f4f8;
    color: #25262a;
    overflow-x: hidden;
  }

  .pc-default-shell,
  .pc-player-shell,
  .pc-loading-shell {
    min-height: 100dvh;
    overflow-x: hidden;
    padding: 0;
    width: 100%;
  }

  .pc-default-shell .page,
  .pc-player-shell .page,
  .pc-loading-shell .page {
    margin: 0;
    max-width: none;
    overflow-x: hidden;
    width: 100%;
  }

  .pc-default-topbar {
    height: 0;
  }

  .pc-banner-ad-slot {
    display: flex;
    height: 50px;
    width: 320px;
  }

  .pc-default-page {
    height: 100dvh;
  }

  .recruitment-page {
    align-items: flex-start;
    min-height: 100dvh;
    padding: 12px;
  }

  .recruitment-panel {
    border-radius: 12px;
    margin: 0 auto;
    padding: 28px 18px;
    width: calc(100vw - 24px);
  }

  .recruitment-panel h1 {
    font-size: 22px;
    line-height: 30px;
  }

  .recruitment-panel p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 12px;
  }

  .recruitment-mail {
    font-size: 13px;
    margin-top: 20px;
    min-height: 40px;
    padding: 0 18px;
    width: 100%;
  }

  .pc-loading-list-page {
    height: 100dvh;
    min-height: 0;
    padding-bottom: 0;
  }

  .pc-default-banner,
  .pc-player-banner,
  .pc-loading-banner {
    flex: 0 0 50px;
    height: 50px;
  }

  .pc-default-panel,
  .pc-loading-list-panel {
    border-radius: 12px;
    flex: 1 1 auto;
    gap: 12px;
    margin: 12px auto;
    min-height: 0;
    padding: 12px;
    width: calc(100vw - 24px);
  }

  .pc-default-heading,
  .pc-loading-list-heading {
    flex: 0 0 25px;
    height: 25px;
    width: 100%;
  }

  .pc-default-heading {
    font-size: 18px;
    line-height: 25px;
  }

  .pc-loading-list-heading {
    max-width: 58%;
  }

  .pc-default-list,
  .pc-loading-list {
    gap: 12px;
    width: 100%;
  }

  .pc-default-row,
  .pc-loading-list-row {
    flex: 0 0 64px;
    gap: 10px;
    height: 64px;
    width: 100%;
  }

  .pc-default-thumb,
  .pc-loading-list-thumb {
    border-radius: 6px;
    flex: 0 0 112px;
    height: 63px;
    width: 112px;
  }

  .pc-loading-list-lines {
    height: 63px;
    padding: 2px 0;
  }

  .pc-loading-list-title {
    height: 18px;
    width: 76%;
  }

  .pc-loading-list-meta {
    height: 14px;
    width: 42%;
  }

  .pc-default-shell .folder-icon {
    transform: scale(0.78);
  }

  .pc-default-video-icon {
    height: 36px;
    width: 36px;
  }

  .pc-default-video-icon::before {
    border-bottom-width: 8px;
    border-left-width: 12px;
    border-top-width: 8px;
  }

  .pc-default-info {
    flex: 1 1 auto;
    height: 63px;
    width: auto;
  }

  .pc-default-title-row {
    gap: 8px;
    height: 42px;
    padding-right: 0;
    width: 100%;
  }

  .pc-default-name {
    flex: 1 1 auto;
    font-size: 14px;
    height: 40px;
    line-height: 20px;
    max-width: none;
  }

  .pc-default-meta {
    flex: 0 0 17px;
    font-size: 12px;
    gap: 22px;
    height: 17px;
    line-height: 17px;
    width: 100%;
  }

  .pc-default-meta span:first-child {
    flex: 0 0 74px;
    width: 74px;
  }

  .pc-default-meta span + span::before {
    height: 11px;
    left: -11px;
    top: 3px;
  }

  .pc-default-empty {
    font-size: 14px;
    min-height: 180px;
  }

  .pc-default-load-more {
    display: none;
  }

  .pc-default-load-more .button {
    font-size: 13px;
    min-height: 34px;
    min-width: 128px;
  }

  .pc-player-page,
  .pc-loading-page {
    min-height: 100dvh;
    padding-bottom: 18px;
  }

  .pc-player-layout,
  .pc-loading-layout {
    display: block;
    margin: 0;
    padding: 12px;
    width: 100%;
  }

  .pc-player-main,
  .pc-loading-main {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
  }

  .pc-player-video-frame,
  .pc-player-empty,
  .pc-loading-video {
    border-radius: 12px 12px 0 0;
    width: 100%;
  }

  .pc-player-title-row,
  .pc-loading-title-row {
    background: #fff;
    margin-top: 0;
    padding: 10px 12px 12px;
  }

  .pc-player-heading {
    display: -webkit-box;
    font-size: 16px;
    line-height: 22px;
    max-height: 44px;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .pc-player-meta {
    font-size: 12px;
    gap: 22px;
    height: 17px;
    line-height: 17px;
    margin-top: 5px;
  }

  .pc-player-meta span + span::before {
    height: 11px;
    left: -11px;
    top: 3px;
  }

  .pc-player-sidebar,
  .pc-loading-sidebar {
    margin-top: 14px;
    width: 100%;
  }

  .pc-player-tabs {
    height: 30px;
    margin-bottom: 10px;
  }

  .pc-player-tab {
    font-size: 13px;
    height: 30px;
    max-width: 100%;
  }

  .pc-player-side-list,
  .pc-loading-side-list {
    gap: 10px;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .pc-player-side-item,
  .pc-loading-side-row {
    gap: 10px;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 79px;
    padding: 8px;
  }

  .pc-loading-side-row {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .pc-player-side-thumb,
  .pc-loading-side-thumb {
    border-radius: 6px;
    height: 63px;
    width: 112px;
  }

  .pc-player-side-title {
    font-size: 13px;
    line-height: 18px;
    max-height: 36px;
  }

  .pc-player-side-meta {
    font-size: 11px;
    gap: 18px;
    line-height: 16px;
    margin-top: 7px;
  }

  .pc-player-side-meta span + span::before {
    height: 10px;
    left: -9px;
    top: 3px;
  }

  .pc-player-side-load-more {
    display: none;
  }

  .pc-player-side-load-more-button {
    font-size: 13px;
    min-height: 34px;
    min-width: 128px;
  }

  .pc-loading-line-title {
    width: 76%;
  }

  .pc-loading-line-meta {
    width: 38%;
  }

  .pc-loading-tab {
    height: 30px;
    width: 112px;
  }
}
