.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

.video-button.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


.video-button.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.video-button svg {
    width: 30px;
    height: 30px;
    fill: white;
}