@font-face {
    font-family: "Source Sans Pro";
    src: url("/source-sans-pro-v21-latin-regular.woff2") format("woff2"),
         url("/source-sans-pro-v21-latin-regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Source Sans Pro";
    src: url("/source-sans-pro-v21-latin-600.woff2") format("woff2"),
         url("/source-sans-pro-v21-latin-600.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Source Sans Pro";
    src: url("/source-sans-pro-v21-latin-700.woff2") format("woff2"),
         url("/source-sans-pro-v21-latin-700.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #06070a;
    --bg-soft: #0f1117;
    --panel: rgba(20, 23, 31, 0.88);
    --panel-strong: rgba(12, 14, 20, 0.94);
    --panel-light: rgba(255, 255, 255, 0.05);
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #f5f7fa;
    --muted: #b8c0cc;
    --accent: #e1182d;
    --accent-soft: #ff5666;
    --accent-glow: rgba(225, 24, 45, 0.28);
    --gold: #ffbb73;
    --success: #3ccf91;
    --warning: #ffb347;
    --danger: #ff6b6b;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --font-display: "Source Sans Pro", "Segoe UI", sans-serif;
    --font-body: "Source Sans Pro", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(255, 126, 64, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(225, 24, 45, 0.16), transparent 24%),
        linear-gradient(180deg, #07080c 0%, #08090f 46%, #050608 100%);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.55;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.ambient {
    pointer-events: none;
    position: fixed;
    inset: auto;
    z-index: 0;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.45;
}

.ambient-one {
    top: -8rem;
    left: -8rem;
    background: radial-gradient(circle, rgba(225, 24, 45, 0.36) 0%, rgba(225, 24, 45, 0) 70%);
}

.ambient-two {
    right: -7rem;
    bottom: 12rem;
    background: radial-gradient(circle, rgba(255, 187, 115, 0.2) 0%, rgba(255, 187, 115, 0) 70%);
}

.site-shell,
.admin-shell {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.hero,
.admin-header,
.admin-card,
.video-card,
.search-panel,
.empty-state,
.notice,
.login-panel .admin-card {
    backdrop-filter: blur(18px);
}

.hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem;
    padding: 1.7rem 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        linear-gradient(150deg, rgba(225, 24, 45, 0.12), transparent 42%);
    box-shadow: var(--shadow);
}

.hero::after,
.admin-header::after {
    content: "";
    position: absolute;
    inset: auto -10% -1px 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.hero-brand,
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.hero-logo {
    width: clamp(118px, 16vw, 185px);
    height: auto;
}

.hero-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #f0c2c2;
}

.hero-eyebrow::before,
.section-kicker::before {
    content: "";
    width: 2rem;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-content {
    max-width: none;
    margin-top: 1.2rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 1.6rem;
    margin-top: 1.6rem;
}

.hero-copy h1,
.search-panel h2,
.catalog-toolbar h2,
.video-body h3,
.empty-state h2,
.admin-card h2,
.admin-header h1,
.admin-video-item h3 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-copy h1,
.admin-header h1 {
    font-size: clamp(2.15rem, 4vw, 3.25rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.hero-copy h1 {
    white-space: nowrap;
}

.hero-text {
    max-width: 100%;
}

.admin-header h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.hero-text,
.muted-copy,
.search-help,
.admin-header p,
.video-body p,
.admin-video-item p {
    color: var(--muted);
}

.hero-stats,
.stats-panel {
    display: grid;
    gap: 1rem;
    margin-top: 1.6rem;
}

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

.stat-card {
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
}

.stat-card strong {
    display: block;
    margin-bottom: 0.2rem;
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1;
    color: white;
}

.search-panel,
.admin-card,
.empty-state,
.notice {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.search-panel {
    padding: 1.5rem;
}

.catalog-search {
    display: grid;
    gap: 0.85rem;
    margin-top: 0.65rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.search-heading {
    margin-bottom: 1.2rem;
}

.catalog-search .search-heading {
    margin-bottom: 0;
}

.catalog-search .search-help {
    margin: 0;
}

.search-heading h2,
.catalog-toolbar h2,
.admin-card h2,
.empty-state h2 {
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.catalog-toolbar h2,
.catalog-search .search-heading h2 {
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    color: #f5f7fa;
    opacity: 1;
}

.search-controls {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.search-field,
.field {
    display: grid;
    gap: 0.55rem;
}

.search-field {
    flex: 1;
    width: 100%;
    min-width: 0;
}

.search-field input,
.field input,
.field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(4, 6, 10, 0.65);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.search-field input,
.field input {
    min-height: 3.3rem;
    padding: 0 1.1rem;
}

.field textarea {
    min-height: 9rem;
    padding: 1rem 1.1rem;
    border-radius: 1.2rem;
    resize: vertical;
}

.search-field input:focus,
.field input:focus,
.field textarea:focus {
    border-color: rgba(225, 24, 45, 0.6);
    box-shadow: 0 0 0 4px rgba(225, 24, 45, 0.12);
}

.field span,
.checkbox-field span,
.url-preview span {
    font-size: 0.92rem;
    color: #f6d7d7;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0 1.1rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: white;
    box-shadow: 0 12px 28px var(--accent-glow);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    color: white;
}

.button-share {
    background: linear-gradient(135deg, #1d5e99, #2f86cc);
    border-color: rgba(103, 184, 255, 0.28);
    color: white;
    box-shadow: 0 12px 28px rgba(34, 112, 184, 0.24);
}

.button-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--text);
}

.button-danger {
    background: rgba(255, 107, 107, 0.12);
    border-color: rgba(255, 107, 107, 0.36);
    color: #ffd6d6;
}

.button-block {
    width: 100%;
}

.catalog {
    display: grid;
    gap: 1.4rem;
}

.site-footer {
    padding: 2rem 0 0.4rem;
    text-align: center;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-separator {
    color: var(--accent);
}

.catalog-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.result-counter {
    margin: 0;
    color: #f0c2c2;
}

.tag-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-filter,
.video-tag,
.status-badge,
.admin-pill,
.preview-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tag-filter {
    padding: 0.72rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.04);
    color: white;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.tag-filter.is-active,
.tag-filter:hover {
    border-color: rgba(225, 24, 45, 0.55);
    background: rgba(225, 24, 45, 0.15);
}

.tag-filter.is-active {
    color: #fff2f3;
    box-shadow: 0 12px 28px rgba(225, 24, 45, 0.18);
}

.filter-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(225, 24, 45, 0.18);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(225, 24, 45, 0.08), rgba(255, 255, 255, 0.03));
}

.filter-summary__copy {
    display: grid;
    gap: 0.65rem;
}

.filter-summary__copy .section-kicker {
    margin: 0;
}

.active-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.active-filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2.3rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(225, 24, 45, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff1f2;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.filter-summary__clear {
    flex: 0 0 auto;
}

.video-list,
.admin-video-list {
    display: grid;
    gap: 1.15rem;
}

.video-card,
.admin-video-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.video-card {
    display: grid;
    grid-template-columns: minmax(320px, 43%) minmax(0, 1fr);
    align-items: stretch;
    overflow: hidden;
}

.video-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: #020304;
    color: white;
}

.video-preview-image,
.video-preview-missing {
    width: 100%;
    max-width: 100%;
}

.video-preview-image {
    display: block;
    height: auto;
    max-height: 100%;
    margin: 0 auto;
    flex: 0 0 auto;
    object-fit: contain;
    object-position: center center;
    background: #020304;
}

.video-preview-missing {
    display: grid;
    aspect-ratio: 16 / 9;
    align-content: end;
    justify-items: start;
    gap: 0.9rem;
    padding: 1.4rem;
    background:
        radial-gradient(circle at 20% 15%, rgba(255, 188, 115, 0.4), transparent 26%),
        linear-gradient(155deg, rgba(42, 13, 17, 0.9), rgba(6, 8, 13, 0.98) 52%, rgba(10, 14, 23, 1));
}

.video-preview-missing strong {
    max-width: 14ch;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.preview-chip {
    position: absolute;
    left: 1.2rem;
}

.preview-chip {
    top: 1rem;
    padding: 0.45rem 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff3e6;
}

.video-body {
    display: grid;
    gap: 1rem;
    min-width: 0;
    align-content: start;
    padding: 1.35rem 1.45rem;
}

.video-body h3 {
    font-size: clamp(1.45rem, 2vw, 2rem);
    color: var(--accent);
    overflow-wrap: anywhere;
}

.video-title-link {
    transition: color 0.18s ease, opacity 0.18s ease;
}

.video-title-link:hover {
    opacity: 0.9;
}

.video-body p {
    color: var(--text);
    overflow-wrap: anywhere;
}

.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.video-tag,
.status-badge,
.admin-pill {
    padding: 0.5rem 0.8rem;
    font-size: 0.76rem;
}

.video-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f4c7c9;
}

.video-actions,
.admin-video-actions,
.meta-row,
.admin-card__heading,
.admin-header__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.empty-state {
    padding: 2rem;
    text-align: center;
}

.video-modal[hidden] {
    display: none;
}

.video-page__hero {
    margin-bottom: 1.35rem;
    padding-bottom: 1.35rem;
}

.video-detail-card {
    display: grid;
    gap: 1.3rem;
    padding: 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.video-detail-copy {
    display: grid;
    gap: 1rem;
}

.video-detail-copy h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.video-detail-copy p {
    margin: 0;
    color: var(--text);
    font-size: 1.08rem;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 4, 8, 0.8);
    backdrop-filter: blur(12px);
}

.video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1040px);
    padding: 1rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: var(--panel-strong);
    box-shadow: var(--shadow);
}

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

.modal-close {
    border: 0;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.video-frame {
    overflow: hidden;
    border-radius: 1.1rem;
    aspect-ratio: 16 / 9;
    background: black;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.toast {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 35;
    max-width: min(90vw, 360px);
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
    background: rgba(10, 13, 18, 0.92);
    color: white;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.admin-page .admin-shell {
    width: min(1240px, calc(100% - 2rem));
}

.admin-header {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 1.4rem 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.admin-header__logo {
    width: clamp(120px, 15vw, 168px);
    height: auto;
    flex: 0 0 auto;
}

.admin-header > div:first-child {
    display: grid;
    gap: 0.75rem;
}

.admin-header h1 {
    font-size: clamp(1.95rem, 3.2vw, 2.8rem);
    line-height: 1;
    text-transform: none;
}

.admin-header__actions {
    align-items: center;
    justify-content: flex-end;
}

.admin-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f0d5d7;
}

.admin-grid {
    align-items: start;
    margin-top: 0;
}

.admin-card {
    padding: 1.2rem;
}

.admin-catalog-toolbar {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.search-controls--admin {
    align-items: stretch;
}

.admin-card--catalog .empty-state {
    margin-top: 0.8rem;
}

.admin-card h2 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.admin-card--catalog {
    margin-top: 1.2rem;
}

.admin-sidebar {
    display: grid;
    gap: 1rem;
}

.admin-card__heading {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.2rem;
}

.stacked-form {
    display: grid;
    gap: 1rem;
}

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

.checkbox-field input {
    width: 1.1rem;
    height: 1.1rem;
}

.field-row {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(180px, 0.55fr);
    gap: 1rem;
    align-items: start;
}

.field-inline {
    align-content: start;
}

.url-preview {
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
}

.url-preview__image {
    width: min(100%, 260px);
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(4, 7, 11, 0.72);
}

.url-preview code {
    display: block;
    margin-top: 0.35rem;
    padding: 0.65rem 0.8rem;
    overflow-wrap: anywhere;
    border-radius: 0.8rem;
    background: rgba(4, 7, 11, 0.72);
    color: #ffe2e2;
}

.notice {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
}

.notice-success {
    border-color: rgba(60, 207, 145, 0.35);
    color: #dbfff0;
}

.notice-error {
    border-color: rgba(255, 107, 107, 0.35);
    color: #ffe0e0;
}

.notice-warning {
    border-color: rgba(255, 179, 71, 0.35);
    color: #fff0d6;
}

.stats-panel {
    margin-top: 0;
}

.login-panel {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 15rem);
}

.admin-card--login {
    display: grid;
    gap: 1rem;
}

.login-panel .admin-card {
    width: min(100%, 460px);
}

.login-logo {
    width: clamp(38px, 6vw, 50px);
    height: auto;
}

.admin-video-item {
    padding: 1.15rem;
}

.admin-video-item h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    color: var(--text);
}

.admin-video-item__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.admin-video-item__status {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
}

.status-badge.is-featured {
    background: rgba(225, 24, 45, 0.14);
    border: 1px solid rgba(225, 24, 45, 0.34);
    color: #ffd9de;
}

.status-badge.is-live {
    background: rgba(60, 207, 145, 0.12);
    border: 1px solid rgba(60, 207, 145, 0.35);
    color: #dfffee;
}

.status-badge.is-hidden {
    background: rgba(255, 179, 71, 0.12);
    border: 1px solid rgba(255, 179, 71, 0.3);
    color: #ffeacc;
}

.meta-row {
    margin: 0.9rem 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

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

[hidden] {
    display: none !important;
}

@media (max-width: 980px) {
    .hero-content,
    .admin-grid,
    .video-card {
        grid-template-columns: 1fr;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .video-preview {
        height: auto;
        min-height: 0;
    }

    .video-preview-image {
        height: auto;
        max-height: none;
    }

    .video-preview-missing {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .site-shell,
    .admin-shell {
        width: min(100% - 1rem, 100%);
        padding-top: 1rem;
    }

    .hero,
    .admin-header,
    .admin-card,
    .empty-state {
        padding: 1.2rem;
        border-radius: 1.3rem;
    }

    .hero-brand,
    .admin-header,
    .catalog-toolbar,
    .search-controls,
    .admin-video-item__top,
    .filter-summary {
        flex-direction: column;
        align-items: start;
    }

    .hero-copy h1,
    .admin-header h1 {
        font-size: clamp(1.95rem, 10vw, 2.7rem);
    }

    .hero-copy h1 {
        white-space: normal;
    }

    .admin-header h1 {
        font-size: clamp(1.85rem, 9vw, 2.35rem);
    }

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

    .video-actions,
    .admin-video-actions {
        flex-direction: column;
    }

    .video-actions .button,
    .admin-video-actions .button,
    .admin-video-actions form,
    .search-controls .button,
    .filter-summary .button {
        width: 100%;
    }

    .admin-video-actions form {
        display: grid;
    }
}
