/* ── Video Module ────────────────────────────────────────────────────────── */

.r33-video-upload {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #111;
    border: 1px dashed #2a2a2a;
    border-radius: 6px;
    flex-wrap: wrap;
}

.r33-video-upload input[type="file"] {
    color: #999;
    font-size: 13px;
    flex: 1;
}

#r33-upload-video-btn {
    background: #c9a84c;
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 9px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

#r33-upload-video-btn:hover {
    background: #e0bc5a;
}

#r33-upload-video-btn:disabled {
    background: #444;
    color: #666;
    cursor: not-allowed;
}

#r33-video-status {
    width: 100%;
    font-size: 13px;
    color: #c9a84c;
    margin-top: 4px;
}

.r33-video-processing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    text-align: center;
}

.r33-processing-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #2a2a2a;
    border-top-color: #c9a84c;
    border-radius: 50%;
    animation: r33spin 0.8s linear infinite;
}

.r33-video-container {
    position: relative;
    display: inline-block;
    max-width: 400px;
    width: 100%;
}

.r33-video-player {
    width: 100%;
    max-width: 400px;
    max-height: 300px;
    object-fit: contain;
    border-radius: 6px;
    background: #000;
    display: block;
    margin-bottom: 12px;
}

.r33-video-watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
    font-weight: 300;
    text-transform: lowercase;
    pointer-events: none;
    user-select: none;
    backdrop-filter: blur(2px);
    opacity: 0.25;
    transition: opacity 0.3s ease;
}

.r33-video-container:hover .r33-video-watermark {
    opacity: 0.4;
}

.r33-video-thumb {
    display: none;
}

.r33-video-actions {
    margin-top: 12px;
}

#r33-delete-video-btn {
    background: #1e1e1e;
    color: #cc4444;
    border: 1px solid #cc4444;
    border-radius: 3px;
    padding: 7px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
}

#r33-delete-video-btn:hover {
    background: #cc4444;
    color: #fff;
}
