.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    margin-bottom:30px;
}

video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px; /* Optional rounded corners */
}

/* Play Button Overlay */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.video-overlay img {
    width: 50px;
    height: 50px;
}

/* Mute Button */
.mute-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 930px) {
svg#play-btn {
    width: 50px;
    height: 50px;
}

}