.okv-player-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #111111;
    line-height: 0;
    border: 2px solid #d4af37;
    box-sizing: border-box;
}

.okv-splash-screen {
    position: absolute;
    inset: 0;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: pointer;
}

.okv-splash-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    background: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.okv-editor-hint {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 17, 0.4);
    color: #d4af37;
    font-size: 13px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.okv-player {
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    object-fit: contain;
    background: #000;
}

.okv-player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.okv-player-bigplay {
    pointer-events: auto;
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    max-width: 72px;
    max-height: 72px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    background: rgba(17, 17, 17, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
    position: relative;
    padding: 0;
    box-sizing: border-box;
    flex-shrink: 0;
}

.okv-player-bigplay:hover {
    transform: scale(1.06);
    background: rgba(17, 17, 17, 0.9);
}

.okv-bigplay-logo {
    width: 49px !important;
    height: 49px !important;
    max-width: 49px !important;
    max-height: 49px !important;
    object-fit: contain;
    border-radius: 50%;
}

.okv-bigplay-triangle {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
}

.okv-player-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(0deg, rgba(0,0,0,0.85), rgba(0,0,0,0));
    opacity: 1;
    transition: opacity 0.25s ease;
}

.okv-player-wrapper:not(:hover) .okv-player-controls:not(.okv-controls-visible) {
    opacity: 0.85;
}

.okv-player-controls button {
    background: rgba(17, 17, 17, 0.7);
    border: 1.5px solid #d4af37;
    color: #d4af37;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    padding: 0;
    flex-shrink: 0;
    box-sizing: border-box;
}

.okv-player-controls button:hover {
    background: rgba(212, 175, 55, 0.15);
    color: #f0d787;
}

.okv-time {
    color: #ddd;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

.okv-progress-track {
    position: relative;
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    cursor: pointer;
}

.okv-progress-buffered {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 3px;
}

.okv-progress-played {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #d4af37;
    border-radius: 3px;
}

.okv-progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 12px;
    height: 12px;
    background: #d4af37;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
}
