.vlc-video-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    background: #000000;
    line-height: normal;
    border:2px solid #000000;
}

.vlc-video-container > video {
    display: block;
    max-width: 100%;
    height: auto;
    cursor: pointer;
}

.vlc-controls {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 7px 10px;
    box-sizing: border-box;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9) 36%);
    color: #ffffff;
}

.vlc-controls button {
    flex: 0 0 auto;
    width: 34px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 3px;
    background: transparent;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.vlc-controls button:hover,
.vlc-controls button:focus-visible {
    background: rgba(255, 255, 255, 0.2);
    outline: 2px solid #ffffff;
    outline-offset: 1px;
}

.vlc-time {
    flex: 0 0 auto;
    min-width: 78px;
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.vlc-progress,
.vlc-volume {
    accent-color: #fcba02;
    cursor: pointer;
}

.vlc-progress {
    flex: 1 1 auto;
    min-width: 40px;
}

.vlc-volume {
    flex: 0 0 82px;
    width: 82px;
}

.vlc-video-copyright {
    display: none;
    position: absolute;
    z-index: 5;
    top: 18px;
    right: 18px;
    max-width: calc(100% - 36px);
    padding: 5px 8px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.68);
    color: #ffffff;
    font-size: 14px;
    line-height: 1.35;
    text-align: right;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85);
    pointer-events: none;
    user-select: none;
}

.vlc-video-container:fullscreen,
.vlc-video-container:-webkit-full-screen {
    display: flex !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.vlc-video-container:fullscreen > video,
.vlc-video-container:-webkit-full-screen > video {
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
}

.vlc-video-container:fullscreen .vlc-video-copyright,
.vlc-video-container:-webkit-full-screen .vlc-video-copyright {
    display: block;
}

@media (max-width: 600px) {
    .vlc-controls {
        gap: 5px;
        min-height: 42px;
        padding: 5px 6px;
    }

    .vlc-controls button {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .vlc-time {
        min-width: 68px;
        font-size: 11px;
    }

    .vlc-volume,
    .vlc-mute {
        display: none;
    }

    .vlc-video-copyright {
        top: 10px;
        right: 10px;
        font-size: 12px;
    }
}
