.fmfvc-card {
    --fmfvc-ink: #080808;
    --fmfvc-paper: #f2f0ea;
    --fmfvc-acid: #d8ff2f;
    --fmfvc-aspect: 16 / 9;
    --fmfvc-rotation: -1.1deg;

    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
}

.fmfvc-card__button {
    width: 100%;
    display: block;
    padding: 10px;
    border: 1px solid rgba(242, 240, 234, .7);
    border-radius: 20px;
    background: rgba(242, 240, 234, .035);
    color: var(--fmfvc-paper);
    cursor: pointer;
    text-align: left;
    overflow: hidden;
    transform: rotate(var(--fmfvc-rotation));
    transition:
        transform .55s cubic-bezier(.16, 1, .3, 1),
        border-color .35s ease,
        background .35s ease;
}

.fmfvc-card__button:hover {
    transform: rotate(0deg) translateY(-6px);
    border-color: var(--fmfvc-acid);
    background: rgba(216, 255, 47, .08);
}

.fmfvc-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: var(--fmfvc-aspect);
    border-radius: 14px;
    background: #050505;
}

.fmfvc-card__poster,
.fmfvc-card__preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.fmfvc-card__poster {
    z-index: 1;
    object-fit: cover;
    opacity: 1;
    transform: scale(1.01);
    transition: opacity .65s ease, transform .8s cubic-bezier(.16, 1, .3, 1);
}

.fmfvc-card__preview {
    z-index: 2;
    border: 0;
    object-fit: cover;
    pointer-events: none;
    transform: scale(1.025);
    opacity: 0;
    transition: opacity .45s ease, filter .35s ease, transform .7s cubic-bezier(.16, 1, .3, 1);
}

.fmfvc-card__media.is-preview-ready .fmfvc-card__preview {
    opacity: .92;
}

.fmfvc-card__media.is-preview-ready .fmfvc-card__poster {
    opacity: .16;
}

.fmfvc-card__button:hover .fmfvc-card__media.is-preview-ready .fmfvc-card__poster {
    opacity: 0;
    transform: scale(1.06);
}

.fmfvc-card__button:hover .fmfvc-card__media.is-preview-ready .fmfvc-card__preview {
    filter: contrast(1.08) brightness(.9);
    transform: scale(1.055);
}

.fmfvc-card__shade {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 50%, transparent 0 40%, rgba(0, 0, 0, .2) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .32));
}

.fmfvc-card__cursor {
    --x: 50%;
    --y: 50%;

    position: absolute;
    left: var(--x);
    top: var(--y);
    z-index: 5;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(.92);
    transition:
        left .18s ease-out,
        top .18s ease-out,
        transform .38s cubic-bezier(.16, 1, .3, 1),
        opacity .25s ease;
}

.fmfvc-card__button:hover .fmfvc-card__cursor {
    transform: translate(-50%, -50%) scale(1);
}

.fmfvc-card__cursor-svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 22px 46px rgba(0, 0, 0, .2));
}

.fmfvc-card__cursor-bg {
    fill: rgba(242, 240, 234, .62);
    stroke: rgba(255, 255, 255, .64);
    stroke-width: 1;
    backdrop-filter: blur(14px);
}

.fmfvc-card__cursor-text {
    transform-box: view-box;
    transform-origin: 60px 60px;
    animation: fmfvcCursorTextSpin 8s linear infinite;
}

.fmfvc-card__cursor-text text {
    fill: var(--fmfvc-ink);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: lowercase;
}

.fmfvc-card__cursor-text textPath {
    dominant-baseline: middle;
}

.fmfvc-card__cursor-play {
    fill: var(--fmfvc-ink);
}

.fmfvc-card__duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 6;
    padding: 5px 8px;
    border-radius: 7px;
    background: rgba(8, 8, 8, .72);
    color: var(--fmfvc-paper);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.fmfvc-card__info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 2px 2px;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.fmfvc-card__copy,
.fmfvc-card__copy strong,
.fmfvc-card__copy small,
.fmfvc-card__info i {
    display: block;
}

.fmfvc-card__copy strong {
    color: var(--fmfvc-paper);
    font-size: 16px;
    line-height: 1.1;
    font-weight: 800;
}

.fmfvc-card__copy small {
    margin-top: 5px;
    color: rgba(242, 240, 234, .58);
    font-size: 11px;
    line-height: 1.2;
    text-transform: uppercase;
}

.fmfvc-card__info i {
    color: var(--fmfvc-acid);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
}

.fmfvc-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 5vw;
    background: rgba(0, 0, 0, .9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.fmfvc-modal.is-open {
    display: flex;
}

.fmfvc-modal__player {
    width: min(1180px, 100%);
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid rgba(242, 240, 234, .18);
}

.fmfvc-modal__player iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.fmfvc-modal__close {
    position: fixed;
    top: 22px;
    right: 28px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(242, 240, 234, .32);
    background: rgba(242, 240, 234, .08);
    color: var(--fmfvc-paper);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

@keyframes fmfvcCursorTextSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 767px) {
    .fmfvc-card__button {
        transform: none;
        border-radius: 16px;
    }

    .fmfvc-card__media {
        border-radius: 11px;
    }

    .fmfvc-card__cursor {
        left: 50% !important;
        top: 50% !important;
        width: 90px;
        height: 90px;
        transform: translate(-50%, -50%) scale(1);
    }

    .fmfvc-card__cursor-text text {
        font-size: 11.4px;
    }

    .fmfvc-card__info {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .fmfvc-modal {
        padding: 18px;
    }

    .fmfvc-modal__close {
        right: 16px;
        top: 14px;
    }
}
