.o-vplayer-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 320px;
    height: 240px;
    background: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 2147483647;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    min-height: 150px;
}

.o-vplayer-drag-handle {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: move;
    z-index: 2147483647;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.o-vplayer-container:hover .o-vplayer-drag-handle {
    opacity: 1;
}

.o-vplayer-close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 2147483647;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.o-vplayer-container:hover .o-vplayer-close {
    opacity: 1;
}

.o-vplayer-close:hover {
    background: rgba(255, 0, 0, 0.7);
}

.o-vplayer-content {
    flex-grow: 1;
    position: relative;
    background: #000;
}

.o-vplayer-content iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.o-vplayer-resize-handle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 15px;
    height: 15px;
    cursor: nwse-resize;
    background: linear-gradient(135deg, transparent 50%, #666 50%);
}

.o-vplayer-hidden {
    display: none !important;
}

.o-vplayer-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    border: 2px solid #333;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2147483647;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.o-vplayer-toggle:hover {
    background: #333;
    transform: scale(1.1);
}

.o-vplayer-embedded {
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    aspect-ratio: 16 / 9;
    background: #000;
}