.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.video-cover {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}

.video-cover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-button::before {
    content: '';
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
    display: inline-block;
    margin-left: 5px;
}

.video-player {
    width: 100%;
    border-radius: 10px;
    display: none;
}
