:root {
    --mvg-dark: #0f172a;
    --mvg-muted: #64748b;
    --mvg-primary: #0d6efd;
    --mvg-border: #e5e7eb;
    --mvg-soft: #f8fafc;
}

.mvg-hero {
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.36), transparent 34%),
        radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.25), transparent 34%),
        linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    padding: 100px 0 85px;
}

.mvg-hero-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.mvg-pill {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #dbeafe;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}

.mvg-hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
    font-weight: 950;
    margin-bottom: 18px;
}

.mvg-hero p {
    color: #cbd5e1;
    font-size: 19px;
    max-width: 720px;
    margin: 0 auto;
}

.mvg-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 620px;
    margin: 34px auto 0;
}

.mvg-hero-stats div {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 18px 14px;
    backdrop-filter: blur(8px);
}

.mvg-hero-stats strong {
    display: block;
    font-size: 30px;
    font-weight: 950;
}

.mvg-hero-stats span {
    display: block;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 700;
}

.mvg-section {
    padding: 80px 0;
    background: #f8fafc;
}

.mvg-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 32px;
}

.mvg-toolbar h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 950;
    color: var(--mvg-dark);
    margin-bottom: 4px;
}

.mvg-toolbar p {
    color: var(--mvg-muted);
    margin-bottom: 0;
}

.mvg-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.mvg-filter button {
    border: 1px solid var(--mvg-border);
    background: #ffffff;
    color: #334155;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
    transition: 0.2s ease;
}

.mvg-filter button:hover,
.mvg-filter button.active {
    background: var(--mvg-primary);
    color: #ffffff;
    border-color: var(--mvg-primary);
}

.mvg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.mvg-card.is-hidden {
    display: none;
}

.mvg-card-button {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    text-align: left;
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
    transition: 0.22s ease;
}

.mvg-card-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.14);
}

.mvg-thumb {
    height: 225px;
    position: relative;
    background: linear-gradient(135deg, #e0f2fe, #eef2ff);
    overflow: hidden;
}

.mvg-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.mvg-card-button:hover .mvg-thumb img {
    transform: scale(1.06);
}

.mvg-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent 58%);
}

.mvg-placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--mvg-primary);
    font-size: 68px;
}

.mvg-play {
    width: 66px;
    height: 66px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--mvg-primary);
    font-size: 34px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.3);
}

.mvg-duration,
.mvg-type {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 900;
}

.mvg-duration {
    right: 14px;
    bottom: 14px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.78);
}

.mvg-type {
    left: 14px;
    top: 14px;
    color: #ffffff;
}

.mvg-type.is-youtube {
    background: #dc2626;
}

.mvg-type.is-hosted {
    background: #0d6efd;
}

.mvg-card-body {
    padding: 22px;
}

.mvg-card-body h3 {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 900;
    color: var(--mvg-dark);
    margin-bottom: 9px;
}

.mvg-card-body p {
    color: var(--mvg-muted);
    margin-bottom: 0;
}

.mvg-empty {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 28px;
    padding: 70px 20px;
    text-align: center;
    color: var(--mvg-muted);
}

.mvg-empty i {
    font-size: 76px;
    color: #cbd5e1;
    margin-bottom: 18px;
}

.mvg-empty h3 {
    color: var(--mvg-dark);
    font-weight: 900;
}

.mvg-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    padding: 24px;
}

.mvg-lightbox.is-open {
    display: grid;
    place-items: center;
}

.mvg-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.88);
    backdrop-filter: blur(8px);
}

.mvg-lightbox-dialog {
    position: relative;
    z-index: 2;
    width: min(1120px, 96vw);
    background: #0f172a;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 25px 90px rgba(0, 0, 0, 0.45);
}

.mvg-close {
    width: 44px;
    height: 44px;
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 5;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.mvg-player {
    background: #000000;
    aspect-ratio: 16 / 9;
}

.mvg-player iframe,
.mvg-player video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000000;
}

.mvg-lightbox-caption {
    padding: 20px 24px 24px;
    color: #ffffff;
}

.mvg-lightbox-caption h3 {
    font-weight: 900;
    margin-bottom: 6px;
}

.mvg-lightbox-caption p {
    color: #cbd5e1;
    margin-bottom: 0;
}

body.mvg-lock {
    overflow: hidden;
}

@media (max-width: 991px) {
    .mvg-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .mvg-filter {
        justify-content: flex-start;
    }

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

@media (max-width: 575px) {
    .mvg-hero {
        padding: 76px 0 64px;
    }

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

    .mvg-section {
        padding: 58px 0;
    }

    .mvg-grid {
        grid-template-columns: 1fr;
    }

    .mvg-thumb {
        height: 215px;
    }

    .mvg-lightbox {
        padding: 12px;
    }

    .mvg-lightbox-dialog {
        border-radius: 18px;
    }
}
