.jcv {
    --jcv-pos-x: 50%;
    --jcv-pos-y: 50%;
    --jcv-ratio-w: 16;
    --jcv-ratio-h: 9;
    --jcv-radius: 16px;
    --jcv-fit: cover;
    --jcv-gold: #ffdc8e;
    --jcv-ink: #552f13;
    width: 100%;
    max-width: 100%;
}

.jcv__frame {
    position: relative;
    width: 100%;
    aspect-ratio: var(--jcv-ratio-w) / var(--jcv-ratio-h);
    overflow: hidden;
    border-radius: var(--jcv-radius);
    background: #0d0906;
    isolation: isolate;
}

.jcv__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: var(--jcv-fit);
    object-position: var(--jcv-pos-x) var(--jcv-pos-y);
    display: block;
    background: #0d0906;
}

.jcv__video::-webkit-media-controls,
.jcv__video::-webkit-media-controls-enclosure,
.jcv__video::-webkit-media-controls-panel,
.jcv__video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
    opacity: 0;
    pointer-events: none;
}

.jcv__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.jcv.is-playing .jcv__play,
.jcv.is-loading .jcv__play {
    display: none;
}

.jcv__load {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: none;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: rgba(13, 9, 6, 0.42);
    pointer-events: none;
}

.jcv.is-loading .jcv__load {
    display: flex;
}

.jcv__load-meter {
    position: relative;
    width: 120px;
    height: 120px;
}

.jcv__load-clock {
    width: 120px;
    height: 120px;
    display: block;
}

.jcv__clock-face {
    fill: none;
    stroke: rgba(255, 220, 142, 0.16);
    stroke-width: 1.25;
}

.jcv__arc-track,
.jcv__arc-fill {
    fill: none;
    stroke-linecap: round;
}

.jcv__arc-track {
    stroke: rgba(255, 220, 142, 0.28);
    stroke-width: 4.5;
}

.jcv__arc-fill {
    stroke: var(--jcv-gold);
    stroke-width: 4.5;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.12s linear;
}

.jcv__hand {
    stroke: rgba(255, 220, 142, 0.7);
    stroke-width: 1.15;
    stroke-linecap: round;
}

.jcv__hand-tip {
    fill: rgba(255, 220, 142, 0.78);
}

.jcv__hub {
    fill: var(--jcv-gold);
}

.jcv__load-pct {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    color: var(--jcv-gold);
    font: 700 13px/1 system-ui, sans-serif;
    letter-spacing: 0.02em;
    text-align: center;
}

.jcv__play-disc {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--jcv-gold);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
}

.jcv__play:hover .jcv__play-disc,
.jcv__play:focus-visible .jcv__play-disc {
    transform: scale(1.06);
}

.jcv__play-tri {
    width: 0;
    height: 0;
    margin-left: 6px;
    border-style: solid;
    border-width: 14px 0 14px 24px;
    border-color: transparent transparent transparent var(--jcv-ink);
}

.jcv--placeholder .jcv__frame {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 220, 142, 0.55);
    background: #1a120c;
}

.jcv__hint {
    color: #ffdc8e;
    font: 15px/1.4 system-ui, sans-serif;
    padding: 16px;
    text-align: center;
}

@media (max-width: 640px) {
    .jcv__play-disc {
        width: 68px;
        height: 68px;
    }

    .jcv__play-tri {
        border-width: 11px 0 11px 19px;
    }
}
