.mm-page {
    --mm-bg: #ffffff;
    --mm-bg-2: #ffffff;
    --mm-bg-3: #ffffff;
    --mm-panel: rgba(255, 255, 255, 0.04);
    --mm-panel-strong: rgba(255, 255, 255, 0.075);
    --mm-card-bg: rgba(255, 255, 255, 0.032);
    --mm-line: rgba(255, 255, 255, 0.12);
    --mm-line-soft: rgba(255, 255, 255, 0.08);
    --mm-text: #ffffff;
    --mm-muted: #aeb8c4;
    --mm-red: #d50000;
    --mm-red-soft: rgba(213, 0, 0, 0.28);
    --mm-card-border: rgba(255, 255, 255, 0.11);
    --mm-card-border-hover: rgba(255, 255, 255, 0.18);
    --mm-accent-strength: 40%;
    --mm-grid-line-a: rgba(255, 255, 255, 0.025);
    --mm-grid-line-b: rgba(255, 255, 255, 0.02);
    --mm-section-shadow: none;
    --mm-card-shadow: none;
    --mm-playlist-shadow: none;
    --mm-playlist-shadow-hover: none;
    --mm-icon-bg: rgba(213, 0, 0, 0.14);
    --mm-icon-color: #ff3030;
    --mm-badge-text: #ff7979;
    --mm-badge-bg: rgba(213, 0, 0, 0.16);
    --mm-badge-border: rgba(213, 0, 0, 0.22);
    min-height: 100vh;
    padding: 0 0 80px;
    background:
        radial-gradient(circle at 72% 16%, rgba(213, 0, 0, 0.16), transparent 28%),
        radial-gradient(circle at 8% 30%, rgba(0, 163, 255, 0.08), transparent 24%),
        linear-gradient(180deg, var(--mm-bg) 0%, var(--mm-bg-2) 48%, var(--mm-bg-3) 100%);
    color: var(--mm-text);
    overflow: hidden;
    position: relative;
}
 .mm-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.42;
    background:
        linear-gradient(var(--mm-grid-line-a) 1px, transparent 1px),
        linear-gradient(90deg, var(--mm-grid-line-b) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 86%);
}
 .mm-shell {
    width: min(calc(100% - 36px), 1720px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
 .mm-hero {
    --mm-text: #ffffff;
    --mm-muted: #c7d0dc;
    --mm-line: rgba(255, 255, 255, 0.14);
    min-height: 700px;
    display: block;
    width: 100%;
    background: #000;
    border-bottom: 1px solid var(--mm-line);
    box-shadow: none;
    position: relative;
    overflow: hidden;
}
 .mm-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
   .mm-hero-inner {
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 150px 0 54px;
}
 .mm-hero-copy {
    position: relative;
    z-index: 2;
}
 .mm-hero-copy {
    max-width: 720px;
}
 .mm-kicker {
    color: #ff2a2a;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
 .mm-title {
    font-size: clamp(4rem, 7.2vw, 8.6rem);
    line-height: 0.86;
    letter-spacing: 0;
    margin: 0 0 28px;
    font-weight: 950;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(0, 0, 0, 0.55);
}
 .mm-title span {
    display: block;
    color: var(--mm-red);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.72), 0 0 34px rgba(213, 0, 0, 0.32);
}
 .mm-hero-copy p {
    color: #e3e8ef;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 0 26px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(7, 16, 24, 0.62), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
 .mm-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
 .mm-btn {
    border: 1px solid var(--mm-line);
    border-radius: 9px;
    min-height: 58px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: var(--mm-text);
    text-decoration: none;
    font-weight: 900;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
 .mm-btn::after {
    content: "";
    position: absolute;
    inset: auto auto 50% 50%;
    width: 0;
    height: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    transform: translate(-50%, 50%);
    transition: width 0.35s ease, height 0.35s ease;
    z-index: -1;
}
 .mm-btn:hover::after {
    width: 220px;
    height: 220px;
}
 .mm-btn-primary {
    background: linear-gradient(180deg, #ed1414, var(--mm-red));
    box-shadow: 0 18px 38px rgba(213, 0, 0, 0.28);
    border-color: rgba(255, 78, 78, 0.42);
}
 .mm-btn-dark {
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(10px);
}
 .mm-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 14px;
    max-width: 720px;
}
 .mm-metric {
    display: flex;
    gap: 12px;
    align-items: center;
    min-height: 72px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(7, 16, 24, 0.62), rgba(255, 255, 255, 0.075));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
 .mm-metric:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(7, 16, 24, 0.72), rgba(213, 0, 0, 0.12));
}
 .mm-metric svg {
    color: var(--mm-red);
    flex: 0 0 auto;
}
 .mm-metric strong {
    display: block;
    font-size: 1.04rem;
    line-height: 1;
    color: var(--mm-text);
}
 .mm-metric span {
    color: var(--mm-muted);
    font-size: 0.82rem;
}
 html:not([data-theme="dark"]) .mm-page {
    --mm-bg: #f2f5f9;
    --mm-bg-2: #e8edf4;
    --mm-bg-3: #f9fbfd;
    --mm-panel: #ffffff;
    --mm-panel-strong: #ffffff;
    --mm-card-bg: #ffffff;
    --mm-line: rgba(15, 23, 42, 0.24);
    --mm-line-soft: rgba(15, 23, 42, 0.18);
    --mm-text: #07111f;
    --mm-muted: #1f2f46;
    --mm-card-border: rgba(15, 23, 42, 0.2);
    --mm-card-border-hover: rgba(213, 0, 0, 0.55);
    --mm-accent-strength: 20%;
    --mm-grid-line-a: rgba(15, 23, 42, 0.045);
    --mm-grid-line-b: rgba(15, 23, 42, 0.04);
    --mm-section-shadow: none;
    --mm-card-shadow: none;
    --mm-playlist-shadow: none;
    --mm-playlist-shadow-hover: none;
    --mm-icon-bg: rgba(213, 0, 0, 0.14);
    --mm-icon-color: #c80000;
    --mm-badge-text: #991b1b;
    --mm-badge-bg: rgba(213, 0, 0, 0.11);
    --mm-badge-border: rgba(213, 0, 0, 0.2);
}
 [data-theme="dark"] .mm-page {
    --mm-bg: #000000;
    --mm-bg-2: #080808;
    --mm-bg-3: #030303;
    --mm-panel: rgba(255, 255, 255, 0.065);
    --mm-panel-strong: rgba(255, 255, 255, 0.1);
    --mm-card-bg: rgba(255, 255, 255, 0.055);
    --mm-line: rgba(255, 255, 255, 0.18);
    --mm-line-soft: rgba(255, 255, 255, 0.13);
    --mm-text: #ffffff;
    --mm-muted: #e2e8f0;
    --mm-card-border: rgba(255, 255, 255, 0.18);
    --mm-card-border-hover: rgba(255, 255, 255, 0.3);
    --mm-accent-strength: 30%;
}
 .mm-categories,
.mm-section-card {
    border: 1px solid var(--mm-card-border);
    border-radius: 16px;
    background: var(--mm-panel);
    backdrop-filter: blur(14px);
    box-shadow: var(--mm-section-shadow);
}
 .mm-categories {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin: 22px auto 18px;
    padding: 16px;
}
 .mm-cat-card {
    border: 1px solid var(--mm-line-soft);
    background: var(--mm-card-bg);
    color: var(--mm-text);
    border-radius: 12px;
    min-height: 86px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    padding: 15px 17px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
 .mm-cat-card:hover,
.mm-cat-card.is-active {
    transform: translateY(-3px);
    border-color: rgba(213, 0, 0, 0.62);
    background: rgba(213, 0, 0, 0.15);
    box-shadow: none;
}
 .mm-cat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mm-icon-bg);
    color: var(--mm-icon-color);
}
 .mm-cat-card strong {
    display: block;
    font-size: 0.94rem;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: var(--mm-text);
}
 .mm-cat-card span:last-child {
    color: var(--mm-muted);
    font-size: 0.82rem;
}
 .mm-section-card {
    margin-top: 18px;
    padding: 22px;
}
 .mm-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}
 .mm-section-head h2 {
    color: var(--mm-text);
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    margin: 0;
    font-weight: 900;
}
 .mm-section-tools {
    display: flex;
    align-items: center;
    gap: 12px;
}
 .mm-section-link {
    color: var(--mm-text);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
}
 .mm-section-link span {
    color: var(--mm-red);
    margin-left: 8px;
}
 .mm-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--mm-line);
    background: var(--mm-panel-strong);
    color: var(--mm-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
 .mm-playlists {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 1fr);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}
 .mm-playlist-card {
    min-height: 210px;
    border: 1px solid var(--mm-card-border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--mm-card-bg);
    position: relative;
    scroll-snap-align: start;
    box-shadow: var(--mm-playlist-shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
}
 .mm-playlist-card::before {
    content: none;
}
 .mm-playlist-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--playlist-color), transparent);
    opacity: 0.55;
    pointer-events: none;
    z-index: 3;
}
 .mm-playlist-card:hover {
    transform: translateY(-5px);
    border-color: var(--mm-card-border-hover);
    box-shadow: var(--mm-playlist-shadow-hover);
}
 .mm-playlist-card img {
    width: 100%;
    height: 118px;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
 .mm-playlist-card:hover img {
    transform: scale(1.06);
    opacity: 1;
}
 .mm-playlist-body {
    padding: 14px 16px 16px;
    background: rgba(0, 0, 0, 0.08);
}
 html:not([data-theme="dark"]) .mm-playlist-body {
    background: #ffffff;
}
 [data-theme="dark"] .mm-playlist-body {
    background: rgba(0, 0, 0, 0.18);
}
 .mm-playlist-body h3 {
    margin: 0 0 7px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.98rem;
    font-weight: 950;
}
 .mm-playlist-body p {
    color: var(--mm-muted);
    margin: 0 0 13px;
    font-size: 0.88rem;
    font-weight: 600;
}
 .mm-playlist-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #f8fafc;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}
 .mm-round-arrow {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--mm-line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.25);
}
 .mm-video-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}
 .mm-video-card {
    border: 1px solid var(--mm-line-soft);
    border-radius: 13px;
    overflow: hidden;
    background: var(--mm-card-bg);
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
 .mm-video-card:hover {
    transform: translateY(-7px);
    border-color: var(--mm-card-border-hover);
    box-shadow: var(--mm-card-shadow);
}
 .mm-video-thumb {
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    background: #111;
}
 .mm-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.38s ease, opacity 0.38s ease;
}
 .mm-video-card:hover .mm-video-thumb img {
    transform: scale(1.06);
    opacity: 0.76;
}
 .mm-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}
 .mm-video-card:hover .mm-video-play {
    opacity: 1;
}
 .mm-video-play span {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mm-red);
    color: #ffffff;
    box-shadow: 0 0 34px rgba(213, 0, 0, 0.45);
}
 .mm-video-body {
    padding: 12px 14px 16px;
}
 .mm-video-card h3 {
    color: var(--mm-text);
    margin: 0 0 7px;
    font-size: 1rem;
    line-height: 1.28;
    font-weight: 850;
}
 .mm-video-meta {
    color: var(--mm-muted);
    font-size: 0.84rem;
    margin-bottom: 10px;
    font-weight: 650;
}
 .mm-video-badge {
    display: inline-flex;
    color: var(--mm-badge-text);
    background: var(--mm-badge-bg);
    border: 1px solid var(--mm-badge-border);
    border-radius: 6px;
    padding: 5px 9px;
    text-transform: uppercase;
    font-size: 0.76rem;
    font-weight: 950;
}
 .mm-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
 .mm-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
 .mm-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
}
.mm-modal.is-open {
    display: flex;
}

.mm-modal[open] {
    display: flex;
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    margin: 0;
    border: 0;
}

.mm-modal::backdrop {
    background: transparent;
}
 .mm-modal-card {
    position: relative;
    width: min(1080px, 100%);
    background: #050b10;
    border: 1px solid var(--mm-line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}
 .mm-modal-head {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
}
 .mm-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--mm-line);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    cursor: pointer;
}
 .mm-modal-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.mm-modal-video > div,
.mm-modal-video > iframe {
    width: 100% !important;
    height: 100% !important;
}
.mm-modal-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.mm-video-card[hidden] {
    display: none !important;
}

.mm-no-results {
    margin: 24px 0 4px;
    color: var(--mm-muted);
    text-align: center;
}

.mm-btn:disabled {
    cursor: not-allowed;
    opacity: .55;
}
 @media (max-width: 1280px) {
    .mm-hero {
        min-height: 650px;
    }
     .mm-categories {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
     .mm-video-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
 @media (max-width: 820px) {
    .mm-page {
        padding-top: 0;
    }
     .mm-shell {
        width: min(calc(100% - 24px), 1720px);
    }
     .mm-hero {
        min-height: 720px;
    }
     .mm-hero-inner {
        min-height: 720px;
        padding: 126px 0 42px;
    }
     .mm-title {
        font-size: clamp(3rem, 12.5vw, 5.1rem);
        line-height: 0.9;
        max-width: 100%;
    }
     .mm-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
     .mm-btn {
        min-height: 56px;
        padding: 0 16px;
        font-size: 0.92rem;
        white-space: nowrap;
    }
     .mm-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        max-width: 100%;
    }
     .mm-metric {
        min-height: 74px;
        padding: 11px 10px;
        gap: 8px;
    }
     .mm-metric svg {
        width: 24px;
        height: 24px;
    }
     .mm-metric strong {
        font-size: 0.95rem;
    }
     .mm-metric span {
        font-size: 0.72rem;
        line-height: 1.2;
    }
     .mm-categories {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        gap: 12px;
    }
     .mm-cat-card {
        min-width: 0;
        scroll-snap-align: none;
    }
     .mm-section-head {
        align-items: flex-start;
        flex-direction: column;
    }
     .mm-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
     .mm-playlists {
        grid-auto-flow: row;
        grid-auto-columns: initial;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
    }
}
 @media (max-width: 560px) {
    .mm-video-grid {
        grid-template-columns: 1fr;
    }
     .mm-hero {
        min-height: 690px;
    }
     .mm-hero-video {
        object-position: 58% center;
    }
     .mm-hero-inner {
        min-height: 690px;
        padding: 118px 0 34px;
    }
     .mm-kicker {
        font-size: 0.78rem;
        margin-bottom: 10px;
    }
     .mm-title {
        font-size: clamp(2.75rem, 13vw, 4rem);
        margin-bottom: 20px;
    }
     .mm-hero-copy p {
        font-size: 0.98rem;
        line-height: 1.55;
        padding: 15px 16px;
        margin-bottom: 18px;
    }
     .mm-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 18px;
    }
     .mm-btn {
        min-height: 52px;
        padding: 0 12px;
        gap: 8px;
        font-size: 0.82rem;
    }
     .mm-btn svg {
        width: 18px;
        height: 18px;
    }
     .mm-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }
     .mm-metric {
        min-height: 78px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 10px;
    }
     .mm-section-card {
        padding: 18px;
    }
     .mm-categories {
        gap: 10px;
        margin: 14px 0;
        padding: 12px;
        border-radius: 14px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
     .mm-cat-card {
        min-width: 0;
        min-height: 72px;
        gap: 10px;
        padding: 11px 12px;
        border-radius: 12px;
    }
     .mm-cat-card:first-child {
        grid-column: 1 / -1;
    }
     .mm-cat-card:hover,
    .mm-cat-card.is-active {
        transform: none;
    }
     .mm-cat-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
    }
     .mm-cat-icon svg {
        width: 19px;
        height: 19px;
    }
     .mm-cat-card strong {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }
     .mm-cat-card span:last-child {
        font-size: 0.72rem;
        line-height: 1.25;
    }
     .mm-section-card {
        margin-top: 14px;
        padding: 14px;
        border-radius: 14px;
    }
     .mm-section-head {
        gap: 10px;
        margin-bottom: 14px;
    }
     .mm-section-head h2 {
        font-size: 1.22rem;
        line-height: 1.15;
    }
     .mm-section-tools {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }
     .mm-section-link {
        font-size: 0.8rem;
    }
     .mm-arrow-btn {
        display: none;
    }
     .mm-playlists {
        grid-auto-flow: row;
        grid-auto-columns: initial;
        grid-template-columns: 1fr;
        gap: 12px;
        overflow: visible;
        padding-bottom: 0;
    }
     .mm-playlist-card {
        display: grid;
        grid-template-columns: 40% 1fr;
        min-height: 198px;
        border-radius: 13px;
    }
     .mm-playlist-card:hover {
        transform: none;
    }
     .mm-playlist-card img {
        height: 100%;
        min-height: 148px;
    }
     .mm-playlist-body {
        padding: 12px 13px 14px;
    }
     .mm-playlist-body h3 {
        font-size: 0.86rem;
        line-height: 1.2;
    }
     .mm-playlist-body p {
        font-size: 0.78rem;
        margin-bottom: 10px;
    }
     .mm-playlist-foot {
        font-size: 0.74rem;
    }
     .mm-round-arrow {
        width: 34px;
        height: 34px;
    }
     .mm-video-grid {
        gap: 14px;
    }
     .mm-video-card {
        display: grid;
        grid-template-columns: 42% 1fr;
        min-height: 132px;
        border-radius: 13px;
    }
     .mm-video-card:hover {
        transform: none;
    }
     .mm-video-thumb {
        height: 100%;
        aspect-ratio: auto;
    }
     .mm-video-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 12px;
    }
     .mm-video-card h3 {
        font-size: 0.9rem;
        line-height: 1.22;
        margin-bottom: 8px;
    }
     .mm-video-meta {
        font-size: 0.74rem;
        margin-bottom: 8px;
    }
     .mm-video-badge {
        align-self: flex-start;
        font-size: 0.68rem;
        padding: 4px 7px;
    }
}
 @media (max-width: 390px) {
    .mm-title {
        font-size: clamp(2.35rem, 12vw, 3.1rem);
    }
     .mm-actions,
    .mm-metrics {
        grid-template-columns: 1fr;
    }
     .mm-metric {
        min-height: 64px;
        flex-direction: row;
        align-items: center;
    }
     .mm-categories {
        grid-template-columns: 1fr;
    }
     .mm-cat-card {
        min-height: 64px;
    }
     .mm-section-tools {
        align-items: stretch;
    }
     .mm-section-link {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 10px 12px;
        border: 1px solid var(--mm-line-soft);
        border-radius: 10px;
        background: var(--mm-card-bg);
    }
     .mm-playlist-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }
     .mm-playlist-card img {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }
     .mm-video-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }
     .mm-video-thumb {
        aspect-ratio: 16 / 9;
    }
}
