/* Özel video kontrolleri — hero hariç Vimeo videoları (Play/Pause + Fullscreen) */
.cvc-host {
    position: relative;
}

.cvc-btn {
    position: absolute;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.cvc-btn:hover {
    background: rgba(0, 0, 0, 0.82);
    color: #fff;
}

/* Ortadaki Play/Pause */
.cvc-play {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 22px;
}

/* Köşedeki Fullscreen */
.cvc-fullscreen {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: 16px;
}

/* Oynarken ortadaki buton sönükleşir, hover'da geri gelir */
.cvc-host.cvc-playing .cvc-play {
    opacity: 0;
}
.cvc-host.cvc-playing:hover .cvc-play {
    opacity: 1;
}

@media (max-width: 576px) {
    .cvc-play { width: 52px; height: 52px; font-size: 18px; }
    .cvc-fullscreen { width: 36px; height: 36px; font-size: 14px; right: 8px; bottom: 8px; }
}

/* background=1 parametreli veya hero/slider videolarındaki play butonunu gizle */
.cvc-host:has(iframe[src*="background=1"]) .cvc-play,
.hero-video-wrapper .cvc-play,
.lfs-hero-video .cvc-play,
.clife-hero-video .cvc-play,
.hero-slide-video .cvc-play,
.page-hero-video .cvc-play {
    display: none !important;
}

