.cvm-73-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cvm-73-container {
    position: relative;
    width: 70%; 
    height: 70%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.cvm-73-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cvm-73-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cvm-73-controls {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: opacity 0.3s ease;
}

.cvm-73-video-playing .cvm-73-play-btn {
    opacity: 0;
    pointer-events: none;
}

.cvm-73-wrapper:hover .cvm-73-controls {
    opacity: 1;
}

.cvm-73-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cvm-73-play-btn:hover {
    transform: scale(1.1);
}

.cvm-73-play-btn i, .cvm-73-play-btn svg {
    margin-left: 4px;
}

.cvm-73-mute-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26, 54, 93, 0.7);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.cvm-73-mute-btn:hover {
    background: rgba(220, 176, 59, 0.9);
}

.cvm-73-mute-btn.cvm-73-hidden, .cvm-73-icon-muted.cvm-73-hidden {
    display: none;
}

.cvm-73-icon-volume, .cvm-73-icon-muted {
    width: 20px;
    height: 20px;
}

.cvm-73-arch-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    box-sizing: border-box;
}

.cvm-73-arch {
    position: relative;
    width: 100%;
    height: 100%;
}

.cvm-73-arch svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.cvm-73-arch path.arch-progress {
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.1s linear;
}

.cvm-73-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    pointer-events: none;
}

.cvm-73-labels-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    box-sizing: border-box;
}

.cvm-73-label {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.3s ease, color 0.3s ease;
    transform-origin: center;
}

.cvm-73-label.timing-highlight {
    color: var(--hl-color, #dcb03b) !important;
}

@media (max-width: 767px) {
    .cvm-73-wrapper { max-width: 300px; }
    .cvm-73-play-btn { width: 45px; height: 45px; font-size: 18px; }
}
