.image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
}

.image-wrapper img {
    display: block;
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.play-video {
    width: 45px;
    height: 45px;
    background-color: white;
    position: absolute;
    top: 90%;
    left: 90%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.play-video:hover {
    background-color: #f0f0f0;
}

.play-video i {
    font-size: 24px;
    color: black;
}
