.vturb-video-player {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vturb-video-player iframe,
.vturb-video-player video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    object-fit: cover;
}

.vturb-sound-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ff6b6b;
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 18px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.vturb-sound-box:hover {
    opacity: 0.9;
}

.vturb-progress-bar {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ddd;
    border-radius: 0 0 10px 10px;
    z-index: 1000;
}

.vturb-progress {
    height: 100%;
    width: 0%;
    border-radius: 0 0 10px 10px;
    transition: width 0.1s linear;
}

.vturb-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-align: center;
}

.vturb-cta:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .vturb-video-player {
        height: auto !important;
    }
    .vturb-sound-box {
        font-size: 14px;
        padding: 15px;
    }
}