:root {
    color-scheme: light;
    --blue-900: #073d79;
    --blue-800: #00539f;
    --blue-600: #0879cc;
    --blue-100: #e6f3ff;
    --yellow: #ffe600;
    --orange: #ff9816;
    --orange-100: #fff3df;
    --ink: #142033;
    --text: #273449;
    --muted: #667286;
    --line: #dbe5ef;
    --surface: #ffffff;
    --surface-alt: #f4f7fb;
    --shadow: 0 14px 30px rgba(11, 49, 89, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--surface-alt);
    color: var(--text);
    font-family: Arial, "Helvetica Neue", sans-serif;
    line-height: 1.4;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

button[disabled] {
    cursor: default;
}

img {
    max-width: 100%;
}

.app-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 220px minmax(240px, 680px) auto auto;
    gap: 18px;
    align-items: center;
    min-height: 72px;
    padding: 10px clamp(18px, 3vw, 34px);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    text-decoration: none;
}

.brand__mark {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border: 2px solid rgba(255, 230, 0, .9);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(0, 83, 159, .18);
}

.brand__name {
    color: var(--blue-900);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.searchbar {
    display: grid;
    grid-template-columns: 1fr 52px;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(20, 32, 51, .04);
}

.searchbar:focus-within {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(8, 121, 204, .12);
}

.searchbar label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.searchbar input {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    border: 0;
    padding: 0 18px;
    background: transparent;
    color: var(--ink);
    outline: 0;
}

.searchbar button {
    border: 0;
    border-left: 1px solid var(--line);
    background: var(--blue-100);
    color: var(--blue-900);
    font-size: 24px;
    font-weight: 800;
}

.submit-link {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--blue-800);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 83, 159, .22);
    white-space: nowrap;
}

.admin-entry-link {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(0, 83, 159, .22);
    border-radius: 999px;
    background: var(--surface);
    color: var(--blue-900);
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 214px minmax(0, 1fr);
    gap: 22px;
    width: min(1560px, 100%);
    margin: 0 auto;
    padding: 18px clamp(14px, 2.5vw, 32px) 28px;
}

.category-rail {
    position: sticky;
    top: 92px;
    align-self: start;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 8px 20px rgba(20, 32, 51, .05);
}

.rail-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: center;
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    font-weight: 800;
    text-align: left;
}

.rail-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--surface-alt);
    color: var(--blue-800);
    font-size: 12px;
    font-weight: 900;
}

.rail-item:hover,
.rail-item:focus-visible,
.rail-item.is-active {
    background: var(--blue-100);
    color: var(--blue-900);
}

.rail-item.is-active .rail-icon {
    background: var(--blue-800);
    color: var(--yellow);
}

.catalog-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

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

.kicker {
    margin: 0 0 4px;
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 0;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 0;
    color: var(--ink);
    font-size: clamp(20px, 2.3vw, 28px);
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.18;
    letter-spacing: 0;
}

.catalog-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    color: var(--muted);
    font-size: 13px;
}

.catalog-status span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
}

.catalog-status strong {
    margin-right: 5px;
    color: var(--orange);
    font-size: 17px;
}

.chip-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.category-rail,
.chip-row {
    scrollbar-width: none;
}

.category-rail::-webkit-scrollbar,
.chip-row::-webkit-scrollbar {
    display: none;
}

.chip {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted);
    font-weight: 800;
}

.chip:hover,
.chip:focus-visible,
.chip.is-active {
    border-color: rgba(0, 83, 159, .24);
    background: var(--blue-800);
    color: #fff;
}

.featured-strip {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, .85fr);
    gap: 16px;
    margin-bottom: 22px;
}

.video-card {
    min-width: 0;
}

.video-card--feature {
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(280px, .8fr);
    gap: 16px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 230, 0, .9), rgba(255, 152, 22, .95) 50%, rgba(0, 119, 207, .92));
    color: inherit;
    text-decoration: none;
}

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

.thumb--logo img {
    object-fit: cover;
    transform: scale(1.04);
}

.thumb--feature {
    border-radius: 8px;
}

.thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(5, 22, 42, .28));
    pointer-events: none;
}

.play-button {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 83, 159, .94);
    color: var(--yellow);
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

.duration {
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 2;
    padding: 4px 7px;
    border-radius: 6px;
    background: rgba(11, 20, 34, .9);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.video-body {
    min-width: 0;
}

.video-card--feature .video-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 6px;
}

.video-card--feature p {
    margin: 10px 0 12px;
    color: var(--muted);
}

.feature-description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.source {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 24px;
    margin-bottom: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--blue-100);
    color: var(--blue-900);
    font-size: 12px;
    font-weight: 900;
}

.source--vk {
    background: var(--blue-100);
    color: var(--blue-900);
}

.category-pill {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--orange-100);
    color: #8a4d00;
    font-size: 12px;
    font-weight: 900;
}

.video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    color: var(--muted);
    font-size: 13px;
}

.submit-panel {
    scroll-margin-top: 110px;
    display: grid;
    align-content: start;
    gap: 12px;
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(0, 83, 159, .18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 230, 0, .18), transparent 46%),
        var(--surface);
    box-shadow: 0 8px 22px rgba(20, 32, 51, .06);
}

.submit-panel--inline {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(220px, .55fr) minmax(320px, 1fr);
    gap: 16px;
    align-items: start;
    border-color: rgba(255, 152, 22, .34);
    background:
        linear-gradient(135deg, rgba(255, 230, 0, .22), rgba(255, 255, 255, .86) 44%),
        var(--surface);
}

.submit-panel h2 {
    font-size: 23px;
}

.mini-submit {
    display: grid;
    gap: 8px;
}

.mini-submit label {
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
}

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

.submit-category {
    display: grid;
    gap: 5px;
}

.submit-category label {
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
}

.submit-row input {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 11px;
    outline: 0;
}

.submit-category select {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    font-weight: 800;
    padding: 0 34px 0 10px;
    outline: 0;
}

.submit-row input:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(8, 121, 204, .12);
}

.submit-category select:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(8, 121, 204, .12);
}

.submit-row button,
.moderation-button,
.report-button {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    background: var(--orange);
    color: #17314f;
    font-weight: 900;
}

.submit-row button {
    padding: 0 12px;
}

.moderation-button,
.report-button {
    width: 100%;
}

.moderation-button[disabled],
.report-button[disabled] {
    opacity: .72;
}

.submit-preview[hidden] {
    display: none;
}

.submit-preview {
    display: grid;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
}

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

.preview-grid img {
    width: 76px;
    height: 52px;
    border-radius: 6px;
    object-fit: cover;
}

.preview-grid p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.id-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 0;
}

.id-list div {
    min-width: 0;
    padding: 7px;
    border-radius: 6px;
    background: var(--surface-alt);
}

.id-list dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
}

.id-list dd {
    margin: 1px 0 0;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
}

.submit-note {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.section-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.section-bar h2 {
    font-size: 24px;
}

.ghost-button {
    min-height: 36px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--blue-900);
    font-weight: 900;
    padding: 0 13px;
}

.catalog-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: end;
    margin-bottom: 14px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
}

.catalog-controls label {
    display: grid;
    gap: 5px;
    min-width: 180px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.catalog-controls select {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    font-weight: 800;
    padding: 0 34px 0 10px;
    outline: 0;
}

.catalog-controls select:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(8, 121, 204, .12);
}

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

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.pagination--top {
    margin: 0 0 18px;
}

.pagination button,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--blue-900);
    font-weight: 900;
}

.pagination .page-ellipsis {
    min-width: 26px;
    border-color: transparent;
    background: transparent;
    color: var(--muted);
}

.pagination button[disabled] {
    opacity: .45;
    cursor: default;
}

.pagination button.is-active {
    border-color: var(--blue-800);
    background: var(--blue-800);
    color: #fff;
}

.pagination .page-summary {
    min-width: auto;
    padding: 0 10px;
    color: var(--muted);
    font-size: 13px;
}

.video-tile {
    display: grid;
    align-content: start;
    gap: 10px;
    min-width: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 8px 22px rgba(20, 32, 51, .06);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.video-tile:hover {
    border-color: rgba(0, 83, 159, .26);
    box-shadow: 0 14px 30px rgba(11, 49, 89, .12);
    transform: translateY(-2px);
}

.video-tile .thumb {
    border-radius: 6px;
}

.video-info {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
}

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

.channel-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--orange-100);
}

.video-title {
    display: -webkit-box;
    min-height: 38px;
    margin: 0 0 4px;
    overflow: hidden;
    color: var(--ink);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-title-link {
    text-decoration: none;
}

.video-title-link:hover .video-title,
.video-title-link:focus-visible .video-title {
    color: var(--blue-800);
}

.video-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    margin-bottom: 6px;
}

.video-labels .source {
    margin-bottom: 0;
}

.review-channel {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    max-width: 100%;
    padding: 5px 9px;
    border-radius: 8px;
    background: var(--surface-alt);
    color: var(--blue-900);
    font-size: 13px;
    font-weight: 900;
}

.video-description {
    position: relative;
    display: -webkit-box;
    min-height: 52px;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.video-description.is-expanded {
    display: block;
    min-height: 0;
    overflow: visible;
    -webkit-line-clamp: unset;
}

.description-more {
    justify-self: start;
    width: max-content;
    min-height: 26px;
    margin: -3px 0 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--blue-800);
    font-size: 13px;
    font-weight: 900;
}

.video-subline {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 9px;
    color: var(--muted);
    font-size: 12px;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--muted);
    text-align: center;
}

.empty-state--error {
    border-color: rgba(230, 85, 37, 0.38);
    background: rgba(230, 85, 37, 0.06);
    color: #a3381d;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    justify-content: space-between;
    width: min(1560px, 100%);
    margin: 0 auto;
    padding: 8px clamp(14px, 2.5vw, 32px) 30px;
    color: var(--muted);
    font-size: 13px;
}

.detail-shell {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 20px clamp(14px, 2.5vw, 32px) 30px;
}

.detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.detail-breadcrumb a {
    color: var(--blue-800);
    text-decoration: none;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 18px;
    align-items: start;
}

.detail-primary,
.detail-side {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.detail-primary {
    min-width: 0;
    padding: 14px;
}

.detail-player {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 6px;
    background: var(--blue-100);
    color: inherit;
    text-decoration: none;
}

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

.play-button--large {
    left: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    font-size: 22px;
}

.detail-title-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    margin-top: 16px;
}

.detail-title-row h1 {
    margin-top: 8px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
}

.source-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--blue-800);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.detail-actions {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: end;
}

.icon-action {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 83, 159, .2);
    border-radius: 50%;
    background: var(--surface);
    color: var(--blue-900);
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(20, 32, 51, .08);
}

.source-link--edit {
    background: var(--orange);
    color: #17314f;
}

.full-description {
    margin-top: 16px;
    padding: 16px;
    border-radius: 8px;
    background: var(--surface-alt);
}

.full-description h2 {
    margin-bottom: 10px;
    font-size: 22px;
}

.full-description p {
    margin-bottom: 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.62;
}

.detail-side {
    display: grid;
    gap: 14px;
    padding: 16px;
}

.detail-logo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(0, 83, 159, .16);
}

.detail-side h2 {
    font-size: 22px;
}

.detail-side h2 a {
    color: inherit;
    text-decoration: none;
}

.detail-side h2 a:hover,
.detail-side h2 a:focus-visible {
    color: var(--blue-800);
}

.detail-meta {
    display: grid;
    gap: 8px;
    margin: 0;
}

.detail-meta div {
    display: grid;
    gap: 2px;
    padding: 9px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-alt);
}

.detail-meta dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.detail-meta dd {
    margin: 0;
    color: var(--ink);
    font-weight: 900;
}

.report-panel {
    grid-column: 1 / -1;
    display: grid;
    gap: 10px;
    padding-top: 4px;
}

.report-dialog {
    width: min(520px, calc(100vw - 28px));
    border: 0;
    border-radius: 8px;
    padding: 18px;
    background: var(--surface);
    box-shadow: 0 24px 60px rgba(10, 31, 58, .28);
}

.report-dialog::backdrop {
    background: rgba(20, 32, 51, .42);
}

.dialog-close {
    justify-self: end;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface-alt);
    color: var(--ink);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.report-panel h2 {
    font-size: 18px;
}

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

.report-panel label {
    color: var(--text);
    font-size: 12px;
    font-weight: 900;
}

.report-panel select,
.report-panel textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    font: inherit;
    outline: 0;
}

.report-panel select {
    min-height: 40px;
    padding: 0 32px 0 10px;
    font-weight: 800;
}

.report-panel textarea {
    min-height: 82px;
    padding: 9px 10px;
    resize: vertical;
}

.report-panel select:focus,
.report-panel textarea:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(8, 121, 204, .12);
}

.report-button {
    background: var(--blue-800);
    color: #fff;
}

.report-status {
    min-height: 20px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.import-review-shell {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 20px clamp(14px, 2.5vw, 32px) 30px;
}

.import-review-topline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.import-review-topline h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.04;
}

.review-status {
    max-width: 520px;
    min-height: 24px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    text-align: right;
}

.review-status[data-tone="ok"] {
    color: #14683a;
}

.review-status[data-tone="warning"] {
    color: #8a4d00;
}

.review-status[data-tone="error"] {
    color: #a5291f;
}

.import-review-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 18px;
    align-items: start;
}

.review-player-panel,
.review-form-panel {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.review-player-panel {
    display: grid;
    gap: 14px;
    padding: 14px;
}

.review-player-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: #071f3f;
}

.review-player-frame iframe,
.review-player-fallback,
.review-player-fallback img {
    width: 100%;
    height: 100%;
}

.review-player-frame iframe {
    display: block;
    border: 0;
}

.review-player-fallback {
    display: grid;
    place-items: center;
    background: var(--blue-100);
}

.review-player-fallback[hidden] {
    display: none;
}

.review-player-fallback img {
    object-fit: cover;
}

.review-player-head {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.source-link--compact {
    min-height: 34px;
    padding: 0 11px;
    font-size: 13px;
}

.review-ids {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
}

.review-ids div:last-child {
    grid-column: 1 / -1;
}

.review-ids div {
    min-width: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-alt);
}

.review-ids dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
}

.review-ids dd {
    margin: 3px 0 0;
}

.review-ids input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    outline: 0;
}

.review-form-panel {
    padding: 16px;
}

.review-form-head {
    display: grid;
    gap: 8px;
    margin-bottom: 0;
}

.review-form-head h2 {
    font-size: 22px;
}

.review-duplicate {
    margin: 0;
    padding: 9px 10px;
    border: 1px solid rgba(255, 152, 22, .35);
    border-radius: 8px;
    background: var(--orange-100);
    color: #8a4d00;
    font-size: 13px;
    font-weight: 800;
}

.review-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.review-field {
    display: grid;
    gap: 5px;
    min-width: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.review-field--full {
    grid-column: 1 / -1;
}

.review-field input,
.review-field select,
.review-field textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    font: inherit;
    outline: 0;
}

.review-field input,
.review-field select {
    min-height: 42px;
    padding: 0 10px;
}

.review-field textarea {
    min-height: 260px;
    padding: 10px;
    resize: vertical;
    line-height: 1.5;
}

.review-field input[readonly] {
    background: var(--surface-alt);
    color: var(--muted);
}

.review-field input:focus,
.review-field select:focus,
.review-field textarea:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(8, 121, 204, .12);
}

.review-submit {
    grid-column: 1 / -1;
}

.review-technical {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-alt);
}

.review-technical summary {
    min-height: 42px;
    padding: 11px 12px;
    color: var(--blue-900);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.review-technical .review-ids {
    padding: 0 10px 10px;
}

.admin-shell {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 20px clamp(14px, 2.5vw, 32px) 30px;
}

.admin-login-dialog {
    width: min(520px, calc(100vw - 28px));
    border: 0;
    border-radius: 8px;
    padding: 0;
    background: transparent;
}

.admin-login-dialog::backdrop {
    background: rgba(20, 32, 51, .48);
}

.admin-login,
.admin-workspace,
.admin-edit-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.admin-login {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(320px, .6fr);
    gap: 18px;
    padding: 18px;
}

.admin-login-dialog .admin-login {
    grid-template-columns: 1fr;
}

.admin-login h1,
.admin-topline h1 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
}

.admin-login-form,
.admin-user-form,
.admin-filter {
    display: grid;
    gap: 10px;
}

.admin-login-form label,
.admin-user-form label,
.admin-filter label {
    display: grid;
    gap: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.admin-login-form input,
.admin-user-form input,
.admin-user-form select,
.admin-filter input,
.admin-filter select,
.admin-channel-form input {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    font: inherit;
    padding: 0 10px;
    outline: 0;
}

.password-input-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    overflow: hidden;
}

.password-input-wrap input {
    border: 0;
    border-radius: 0;
}

.password-toggle {
    min-height: 42px;
    border: 0;
    border-left: 1px solid var(--line);
    background: var(--surface-alt);
    color: var(--blue-900);
    font-weight: 900;
}

.admin-login-catalog {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    text-decoration: none;
}

.admin-workspace {
    display: grid;
    gap: 14px;
    padding: 16px;
}

.admin-topline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.admin-topline--compact {
    margin-bottom: 12px;
}

.admin-userbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: end;
    color: var(--muted);
    font-weight: 900;
}

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

.admin-stats div {
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-alt);
}

.admin-stats strong {
    display: block;
    color: var(--blue-900);
    font-size: 24px;
    line-height: 1;
}

.admin-stats span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-tab,
.admin-filter button,
.admin-user-form button,
.admin-item__actions button,
.admin-user-row button,
.admin-table button {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--blue-900);
    font-weight: 900;
    padding: 0 12px;
}

.admin-tab.is-active,
.admin-filter button,
.admin-user-form button,
.admin-item__actions button,
.admin-table button {
    border-color: var(--blue-800);
    background: var(--blue-800);
    color: #fff;
}

.admin-user-form .password-toggle,
.admin-login-form .password-toggle {
    min-height: 42px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: var(--surface-alt);
    color: var(--blue-900);
    font-weight: 900;
    padding: 0;
}

.admin-panel {
    display: grid;
    gap: 10px;
}

.admin-panel-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: end;
    justify-content: end;
}

.admin-bulkbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: end;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-alt);
}

.admin-bulkbar > span {
    margin-right: auto;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.admin-bulkbar strong {
    color: var(--blue-900);
}

.admin-bulkbar button {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--blue-900);
    font-weight: 900;
    padding: 0 12px;
}

.admin-bulkbar button[data-admin-action="bulk-approve"] {
    border-color: var(--blue-800);
    background: var(--blue-800);
    color: #fff;
}

.admin-bulkbar button[disabled] {
    opacity: .45;
    cursor: not-allowed;
}

.admin-inline-control {
    display: grid;
    gap: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.admin-inline-control select {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    font: inherit;
    padding: 0 10px;
    outline: 0;
}

.admin-filter {
    grid-template-columns: minmax(220px, 1fr) minmax(150px, .7fr) minmax(170px, .7fr) minmax(150px, .65fr) auto;
    align-items: end;
}

.admin-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.admin-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-table td {
    color: var(--text);
    font-size: 14px;
}

.admin-table tr:last-child td {
    border-bottom: 0;
}

.admin-click-row {
    cursor: pointer;
}

.admin-click-row:hover,
.admin-click-row:focus {
    background: rgba(8, 121, 204, .06);
    outline: 0;
}

.admin-table td:first-child {
    width: 96px;
}

.admin-table .admin-select-cell {
    width: 60px;
    text-align: center;
}

.admin-check {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
}

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

.admin-check span {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0;
    border: 2px solid var(--line);
    border-radius: 5px;
    background: var(--surface);
}

.admin-check input:checked + span {
    border-color: var(--blue-800);
    background: var(--blue-800);
    box-shadow: inset 0 0 0 4px var(--surface);
}

.admin-check input:focus-visible + span {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.admin-check input:disabled + span {
    opacity: .35;
}

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

.admin-table span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.admin-channel-mini {
    display: grid;
    grid-template-columns: 34px minmax(130px, 1fr);
    gap: 8px;
    align-items: center;
    min-width: 180px;
}

.admin-channel-mini img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--orange-100);
}

.admin-channel-mini strong,
.admin-channel-mini a {
    color: var(--ink);
    text-decoration: none;
}

.admin-channel-mini a:hover,
.admin-channel-mini a:focus-visible {
    color: var(--blue-800);
}

.admin-channel-mini small {
    display: block;
    max-width: 220px;
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-table .admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    min-width: 220px;
}

.admin-row-action button {
    width: 100%;
}

.admin-inline-select {
    min-height: 38px;
    width: 100%;
    min-width: 130px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    font: inherit;
    font-weight: 800;
    padding: 0 8px;
}

.admin-video-cell {
    display: inline-flex;
    width: 72px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    vertical-align: top;
}

.admin-video-icon {
    display: block;
    width: 72px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--blue-100);
}

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

.admin-video-duration {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.admin-item,
.admin-user-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.admin-item h3 {
    font-size: 18px;
}

.admin-item p {
    display: -webkit-box;
    margin: 5px 0 8px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.admin-item dl {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.admin-item dt,
.admin-item dd {
    display: inline;
    margin: 0;
}

.admin-item dt {
    font-weight: 900;
}

.admin-item__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: end;
}

.admin-mini-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    background: var(--orange-100);
    color: #8a4d00;
    font-weight: 900;
    text-decoration: none;
}

.admin-mini-link--primary {
    background: var(--blue-800);
    color: #fff;
}

.admin-channel-form {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 10px;
    align-items: end;
    margin-bottom: 14px;
}

.admin-channel-form label {
    display: grid;
    gap: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.admin-channel-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-alt);
}

.admin-channel-card img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
}

.admin-channel-card h2 {
    margin: 2px 0 8px;
    color: var(--ink);
    font-size: 24px;
}

.admin-channel-card dl {
    display: grid;
    gap: 6px;
    margin: 0 0 12px;
}

.admin-channel-card div div {
    min-width: 0;
}

.admin-channel-card dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.admin-channel-card dd {
    margin: 0;
    color: var(--text);
    overflow-wrap: anywhere;
}

.admin-channel-progress {
    display: grid;
    gap: 7px;
    margin-top: 14px;
}

.admin-progress-bar {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--blue-100);
}

.admin-progress-bar span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue-800), var(--orange));
    transition: width .2s ease;
}

.admin-user-form {
    grid-template-columns: minmax(150px, 1fr) minmax(180px, 1.2fr) minmax(130px, .7fr) minmax(160px, .8fr) auto;
    align-items: end;
    margin-bottom: 12px;
}

.admin-user-row {
    grid-template-columns: minmax(0, 1fr) auto;
}

.admin-user-row div {
    display: grid;
    gap: 3px;
}

.admin-user-row span {
    color: var(--muted);
    font-size: 13px;
}

.admin-edit-panel {
    padding: 16px;
}

.admin-edit-preview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
    gap: 14px;
    margin-bottom: 14px;
}

.admin-edit-player {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #0e1726;
}

.admin-edit-player iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
}

.admin-edit-player a {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    color: #fff;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.admin-edit-thumb {
    width: 100%;
    height: 100%;
    min-height: 180px;
    border: 1px solid var(--line);
    border-radius: 8px;
    object-fit: cover;
    background: var(--blue-100);
}

.admin-edit-form textarea {
    min-height: 320px;
}

.admin-report-context {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-alt);
    padding: 12px;
}

.admin-report-context dl {
    display: grid;
    gap: 8px;
    margin: 8px 0 0;
}

.admin-report-context div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 10px;
}

.admin-report-context dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.admin-report-context dd {
    margin: 0;
    min-width: 0;
    color: var(--ink);
}

.admin-edit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-edit-actions .moderation-button,
.admin-edit-actions .ghost-button,
.admin-edit-actions .danger-button {
    width: auto;
    padding: 0 14px;
}

.danger-button {
    min-height: 36px;
    border: 1px solid #d84f2a;
    border-radius: 999px;
    background: #fff3ed;
    color: #9f2f16;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.danger-button[disabled] {
    opacity: .72;
}

@media (max-width: 1250px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .category-rail {
        position: static;
        display: flex;
        overflow-x: auto;
        padding: 8px;
    }

    .rail-item {
        flex: 0 0 auto;
        grid-template-columns: 28px auto;
        padding-right: 12px;
    }

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

@media (max-width: 980px) {
    .app-header {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .submit-link {
        justify-self: stretch;
    }

    .admin-entry-link {
        justify-self: stretch;
    }

    .featured-strip,
    .video-card--feature {
        grid-template-columns: 1fr;
    }

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

    .pagination--top {
        display: none;
    }

    .submit-panel--inline {
        grid-template-columns: 1fr;
    }

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

    .import-review-layout {
        grid-template-columns: 1fr;
    }

    .admin-login {
        grid-template-columns: 1fr;
    }

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

    .admin-channel-form {
        grid-template-columns: 1fr;
    }

    .admin-edit-preview {
        grid-template-columns: 1fr;
    }

    .detail-side {
        grid-template-columns: auto 1fr;
        align-items: start;
    }

    .detail-meta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .app-header {
        position: static;
        min-height: auto;
        padding: 10px 12px 12px;
    }

    .brand__mark {
        width: 40px;
        height: 40px;
    }

    .brand__name {
        font-size: 23px;
    }

    .searchbar {
        border-radius: 8px;
    }

    .searchbar input {
        min-height: 44px;
        padding: 0 13px;
    }

    .submit-link {
        display: inline-flex;
        justify-self: stretch;
        min-height: 42px;
        border-radius: 8px;
    }

    .admin-entry-link {
        display: inline-flex;
        justify-self: stretch;
        min-height: 42px;
        border-radius: 8px;
    }

    .catalog-layout {
        gap: 12px;
        padding: 12px 12px 24px;
    }

    .category-rail {
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        padding: 0 0 2px;
    }

    .rail-item {
        min-height: 38px;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: var(--surface);
        padding: 0 12px 0 6px;
    }

    .rail-icon {
        width: 26px;
        height: 26px;
        border-radius: 50%;
    }

    .catalog-topline {
        align-items: start;
        margin-bottom: 10px;
    }

    .catalog-status {
        display: none;
    }

    h1 {
        font-size: 30px;
    }

    .chip-row {
        display: none;
    }

    .featured-strip {
        order: 4;
        margin-bottom: 18px;
    }

    .section-bar {
        order: 2;
        margin-top: 8px;
    }

    .video-grid {
        order: 3;
    }

    .video-card--feature {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .video-card--feature .video-body {
        padding: 0;
    }

    .video-card--feature h2 {
        font-size: 20px;
    }

    .submit-panel {
        padding: 13px;
        border-radius: 8px;
    }

    .submit-row,
    .id-list {
        grid-template-columns: 1fr;
    }

    .ghost-button {
        display: none;
    }

    .admin-userbar .ghost-button,
    .admin-edit-actions .ghost-button,
    .admin-login-catalog {
        display: inline-flex;
    }

    .catalog-controls {
        display: grid;
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .catalog-controls label {
        min-width: 0;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .submit-panel--inline {
        grid-column: auto;
    }

    .video-tile {
        gap: 9px;
        padding: 10px;
        border-radius: 8px;
        transform: none;
    }

    .video-info {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .channel-avatar {
        width: 38px;
        height: 38px;
    }

    .video-title {
        min-height: auto;
        font-size: 16px;
    }

    .video-description {
        min-height: 50px;
    }

    .detail-shell {
        padding: 12px 12px 24px;
    }

    .import-review-shell {
        padding: 12px 12px 24px;
    }

    .import-review-topline {
        display: grid;
        gap: 8px;
        margin-bottom: 12px;
    }

    .review-status {
        max-width: none;
        text-align: left;
    }

    .review-player-panel,
    .review-form-panel {
        border-radius: 8px;
    }

    .review-player-panel,
    .review-form-panel {
        padding: 13px;
    }

    .review-ids,
    .review-form,
    .admin-filter,
    .admin-user-form {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        padding: 12px 12px 24px;
    }

    .admin-workspace,
    .admin-login,
    .admin-edit-panel {
        padding: 13px;
    }

    .admin-topline,
    .admin-item,
    .admin-user-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .admin-userbar,
    .admin-item__actions {
        justify-content: start;
    }

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

    .admin-channel-card {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .admin-channel-card img {
        width: 72px;
        height: 72px;
    }

    .detail-primary,
    .detail-side {
        border-radius: 8px;
    }

    .detail-title-row {
        display: grid;
    }

    .source-link {
        width: 100%;
    }

    .full-description {
        padding: 13px;
    }

    .full-description p {
        font-size: 15px;
        line-height: 1.58;
    }

    .detail-side {
        grid-template-columns: 64px minmax(0, 1fr);
        padding: 13px;
    }

    .detail-logo {
        width: 64px;
        height: 64px;
    }

    .site-footer {
        display: grid;
        padding: 0 12px 28px;
    }
}
