/* =====================================================
   CUSTOM VIDEO PLAYER
   ===================================================== */

/* Özel oynat butonu: Sol üst köşe */
.custom-play-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(23, 195, 200, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(23, 195, 200, 0.4);
}

.custom-play-btn:hover {
    background: rgba(23, 195, 200, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(23, 195, 200, 0.6);
}

.custom-play-btn:active {
    transform: scale(0.95);
}

.custom-play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    /* Play icon'u ortala */
}

/* Buton gizli olduğunda */
.custom-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0);
}

/* Video oynarken pointer cursor */
.nb-video.playing {
    cursor: pointer;
}

/* Video wrapper içinde relative positioning */
.nb-video-wrapper {
    position: relative;
}

/* Mobilde buton boyutunu küçült */
@media (max-width: 768px) {
    .custom-play-btn {
        width: 50px;
        height: 50px;
        top: 15px;
        left: 15px;
    }

    .custom-play-btn svg {
        width: 24px;
        height: 24px;
    }
}