.video-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}