.drm-video-container {
    position: relative;
    width: 100%;
    margin: 20px 0;
}

.drm-video-player {
    width: 100%;
    height: auto;
    background: #000;
}

.drm-video-error {
    display: none;
    color: #ff0000;
    background: #ffebee;
    border: 1px solid #ffcdd2;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
}

/* Блокировка выделения */
.drm-video-container {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Скрытие контролов при необходимости */
.drm-video-player::-webkit-media-controls-enclosure {
    display: none !important;
}